diff options
author | Gwenole Beauchesne <gbeauchesne@splitted-desktop.com> | 2009-02-24 16:12:47 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2009-02-24 16:12:47 +0000 |
commit | ee3e36315e25d74da1079b4bafe3fd36fc9f3406 (patch) | |
tree | 05baf04219f4e8292536c5ba434ede4da9992c9c /libavcodec/mpegvideo.h | |
parent | cd3356ff73bb9ed2ee0190a1d240adcb6d5e9864 (diff) | |
download | ffmpeg-ee3e36315e25d74da1079b4bafe3fd36fc9f3406.tar.gz |
Add ff_h263_find_resync_marker() to find the bit position of the next resync_marker, if any.
patch by Gwenole Beauchesne gbeauchesne splitted-desktopcom
based on suggested implementation by me
Originally committed as revision 17560 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 32ad5f4c6c..453285e317 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -836,6 +836,7 @@ void ff_clean_h263_qscales(MpegEncContext *s); int ff_mpeg4_decode_partitions(MpegEncContext *s); int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s); int ff_h263_resync(MpegEncContext *s); +const uint8_t *ff_h263_find_resync_marker(const uint8_t *p, const uint8_t *end); int ff_h263_get_gob_height(MpegEncContext *s); void ff_mpeg4_init_direct_mv(MpegEncContext *s); int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my); |