diff options
author | Clément Bœsch <u@pkh.me> | 2016-07-27 17:28:00 +0200 |
---|---|---|
committer | Clément Bœsch <u@pkh.me> | 2016-07-27 17:31:18 +0200 |
commit | 87d1f820591b87bec452f33f451dee4db142ee9a (patch) | |
tree | 80a2aae11b6c7e7455218d8f402bd8ac5bf4b0f2 /libavcodec/h264.h | |
parent | f8ce1e828299695997b832cb8d2d6b0d8f1f53ee (diff) | |
parent | f966498e433fead2f5e6b5b66fad2ac062146d22 (diff) | |
download | ffmpeg-87d1f820591b87bec452f33f451dee4db142ee9a.tar.gz |
Merge commit 'f966498e433fead2f5e6b5b66fad2ac062146d22'
* commit 'f966498e433fead2f5e6b5b66fad2ac062146d22':
h264: decode the poc values from the slice header into the per-slice context
Merged-by: Clément Bœsch <u@pkh.me>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index e106f00ae0..ceec2c3075 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -460,6 +460,11 @@ typedef struct H264SliceContext { MMCO mmco[MAX_MMCO_COUNT]; int nb_mmco; int explicit_ref_marking; + + int frame_num; + int poc_lsb; + int delta_poc_bottom; + int delta_poc[2]; } H264SliceContext; /** |