commit | 1a1c52baf9525b59a54a6f509e5a8253c8c0bfe3 | [log] [tgz] |
---|---|---|
author | Johnny Lee <johnny@vidyo.com> | Fri Feb 08 14:25:40 2019 -0500 |
committer | Commit Bot <commit-bot@chromium.org> | Sat Feb 09 16:47:09 2019 +0000 |
tree | ead0c709aa501ea063e29ffc4a1a1254e8bc3e4a | |
parent | e556768453ee805a3e2a3a5c27e53be216df5f9a [diff] [blame] |
H.264 temporal layers w/frame marking (PART 2/3) Bug: None Change-Id: Id1381d895377d39c3969635e1a59591214aabb71 Reviewed-on: https://webrtc-review.googlesource.com/c/86140 Commit-Queue: Sergey Silkin <ssilkin@webrtc.org> Reviewed-by: Stefan Holmer <stefan@webrtc.org> Reviewed-by: Sergey Silkin <ssilkin@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26624}
diff --git a/modules/video_coding/include/video_codec_interface.h b/modules/video_coding/include/video_codec_interface.h index 052963c..0a6c12d 100644 --- a/modules/video_coding/include/video_codec_interface.h +++ b/modules/video_coding/include/video_codec_interface.h
@@ -83,6 +83,9 @@ // Hack alert - the code assumes that thisstruct is memset when constructed. struct CodecSpecificInfoH264 { H264PacketizationMode packetization_mode; + uint8_t temporal_idx; + bool base_layer_sync; + bool idr_frame; }; static_assert(std::is_pod<CodecSpecificInfoH264>::value, "");