diff options
author | Yusuke Nakamura <muken.the.vfrmaniac@gmail.com> | 2013-09-24 18:30:50 +0900 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-10-15 20:02:55 +0200 |
commit | 4baba6c813b7a1f27370e20fb1a87b05fcb39208 (patch) | |
tree | 3b935fa8d12754098394af24fd3029f07e698726 /libavcodec/h264.h | |
parent | b81dbd6cb7522bea96d78a52f8a4c25a47b820c9 (diff) | |
download | ffmpeg-4baba6c813b7a1f27370e20fb1a87b05fcb39208.tar.gz |
h264_parser: Fix POC parsing for the case where MMCO_RESET is present.
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 3ef8420ef6..2fead60244 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -950,5 +950,7 @@ static av_always_inline int get_dct8x8_allowed(H264Context *h) void ff_h264_draw_horiz_band(H264Context *h, int y, int height); int ff_init_poc(H264Context *h, int pic_field_poc[2], int *pic_poc); +int ff_pred_weight_table(H264Context *h); +int ff_set_ref_count(H264Context *h); #endif /* AVCODEC_H264_H */ |