diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2011-09-23 05:42:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2011-09-23 06:01:45 +0200 |
commit | 4ba396834d2bf36be9b9f235de91af54da2c46ba (patch) | |
tree | e6f77b8608dd77e8f85429ad350a66d0aecb2ec4 /libavcodec/h264.h | |
parent | 57d5d5f62d26067338d5cb716f4aca8d8e9aa5fd (diff) | |
download | ffmpeg-4ba396834d2bf36be9b9f235de91af54da2c46ba.tar.gz |
h264: pass buffer & size to ff_h264_decode_extradata()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 47d6d7fa32..4eb73298c1 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -672,7 +672,7 @@ int ff_h264_check_intra_pred_mode(H264Context *h, int mode); void ff_h264_hl_decode_mb(H264Context *h); int ff_h264_frame_start(H264Context *h); -int ff_h264_decode_extradata(H264Context *h); +int ff_h264_decode_extradata(H264Context *h, const uint8_t *buf, int size); av_cold int ff_h264_decode_init(AVCodecContext *avctx); av_cold int ff_h264_decode_end(AVCodecContext *avctx); av_cold void ff_h264_decode_init_vlc(void); |