diff options
author | Anuj Mittal <am.devel@gmail.com> | 2012-10-09 18:22:26 +0530 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-10-09 16:48:43 +0200 |
commit | ce19aec15b4291dc48e791d89a1f940babc22cdc (patch) | |
tree | 64934508269c66716e93646136a7cc75d9ca2477 /libavcodec/h263.h | |
parent | ef9fe5bedd1993700818a0ba1c195cd6f6668afe (diff) | |
download | ffmpeg-ce19aec15b4291dc48e791d89a1f940babc22cdc.tar.gz |
Check resync marker only when enabled.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavcodec/h263.h')
-rw-r--r-- | libavcodec/h263.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h263.h b/libavcodec/h263.h index 91dd548108..a8d266d1f6 100644 --- a/libavcodec/h263.h +++ b/libavcodec/h263.h @@ -110,7 +110,7 @@ int av_const h263_get_picture_format(int width, int height); void ff_clean_h263_qscales(MpegEncContext *s); int ff_h263_resync(MpegEncContext *s); -const uint8_t *ff_h263_find_resync_marker(const uint8_t *p, const uint8_t *end); +const uint8_t *ff_h263_find_resync_marker(MpegEncContext *s, const uint8_t *p, const uint8_t *end); int ff_h263_get_gob_height(MpegEncContext *s); void ff_h263_encode_motion(MpegEncContext * s, int val, int f_code); |