diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-01-14 20:07:53 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-21 23:13:45 +0100 |
commit | 5ee483ae62663361833d70263cd4d626ba280452 (patch) | |
tree | 4eb7c545e4a8a38986a86a40105e411d97e972da /libavcodec/h264.h | |
parent | b006b2f4f54a79e813be737f03fea9145fb5e548 (diff) | |
download | ffmpeg-5ee483ae62663361833d70263cd4d626ba280452.tar.gz |
h264: fix ff_generate_sliding_window_mmcos() prototype.
It's been returning an error value since
bad446e251405dc250c3cbee199072e083a1e4b9
Also check for the errors it returns.
(cherry picked from commit ea382767ad2191acbe97e90624059723e15f0e4b)
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 c3052bb9ed..65d1fd8c15 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -671,7 +671,7 @@ int ff_h264_execute_ref_pic_marking(H264Context *h, MMCO *mmco, int mmco_count); int ff_h264_decode_ref_pic_marking(H264Context *h, GetBitContext *gb, int first_slice); -void ff_generate_sliding_window_mmcos(H264Context *h, int first_slice); +int ff_generate_sliding_window_mmcos(H264Context *h, int first_slice); /** * Check if the top & left blocks are available if needed & change the |