diff options
author | Timothy Gu <timothygu99@gmail.com> | 2016-08-03 15:41:59 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2016-08-03 15:41:59 -0700 |
commit | bca30ed2b67f095fd31e07319a622ac30ad22978 (patch) | |
tree | ec957ba4fb48112765835398f34b96d23b815a1a /libavcodec/h264dec.h | |
parent | 4be8ab70a628078a5c89e06157bc9f5cb071dda3 (diff) | |
parent | b13fc1e344011949929975a3451f78f226aa1de3 (diff) | |
download | ffmpeg-bca30ed2b67f095fd31e07319a622ac30ad22978.tar.gz |
Merge commit 'b13fc1e344011949929975a3451f78f226aa1de3'
* commit 'b13fc1e344011949929975a3451f78f226aa1de3':
h264: do not pass H264Context to h264_slice_header_parse()
Conflicts:
libavcodec/h264dec.h
Did not merge the h264_slice_header_parse() part. We use a few other
members of H264Context for error checking in that function.
Merged-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'libavcodec/h264dec.h')
-rw-r--r-- | libavcodec/h264dec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libavcodec/h264dec.h b/libavcodec/h264dec.h index 7634261d41..9483efbc43 100644 --- a/libavcodec/h264dec.h +++ b/libavcodec/h264dec.h @@ -574,7 +574,7 @@ int ff_h264_get_slice_type(const H264SliceContext *sl); */ int ff_h264_alloc_tables(H264Context *h); -int ff_h264_decode_ref_pic_list_reordering(const H264Context *h, H264SliceContext *sl); +int ff_h264_decode_ref_pic_list_reordering(H264SliceContext *sl, void *logctx); int ff_h264_build_ref_list(H264Context *h, H264SliceContext *sl); void ff_h264_remove_all_refs(H264Context *h); @@ -583,8 +583,8 @@ void ff_h264_remove_all_refs(H264Context *h); */ int ff_h264_execute_ref_pic_marking(H264Context *h); -int ff_h264_decode_ref_pic_marking(const H264Context *h, H264SliceContext *sl, - GetBitContext *gb); +int ff_h264_decode_ref_pic_marking(H264SliceContext *sl, GetBitContext *gb, + const H2645NAL *nal, void *logctx); void ff_h264_hl_decode_mb(const H264Context *h, H264SliceContext *sl); int ff_h264_decode_init(AVCodecContext *avctx); |