diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:59:51 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2010-01-08 19:59:51 +0000 |
commit | a7ac9c2f62497451d3f88ae5561e94e22d014d3c (patch) | |
tree | bcfa3e0b53aea49e6fc6c0ea735b26cc1ee04a98 /libavcodec/mpeg4video.h | |
parent | b2f4b0433695e3c9a420ddd8d89d9ffa53f01a5a (diff) | |
download | ffmpeg-a7ac9c2f62497451d3f88ae5561e94e22d014d3c.tar.gz |
Move 3 direct MV related functions that i left out from h263.c to mpeg4video.c.
Originally committed as revision 21104 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpeg4video.h')
-rw-r--r-- | libavcodec/mpeg4video.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libavcodec/mpeg4video.h b/libavcodec/mpeg4video.h index c53200f010..a335fa338a 100644 --- a/libavcodec/mpeg4video.h +++ b/libavcodec/mpeg4video.h @@ -104,6 +104,13 @@ void ff_clean_mpeg4_qscales(MpegEncContext *s); int ff_mpeg4_decode_partitions(MpegEncContext *s); int ff_mpeg4_get_video_packet_prefix_length(MpegEncContext *s); int mpeg4_decode_video_packet_header(MpegEncContext *s); +void ff_mpeg4_init_direct_mv(MpegEncContext *s); + +/** + * + * @return the mb_type + */ +int ff_mpeg4_set_direct_mv(MpegEncContext *s, int mx, int my); extern uint8_t ff_mpeg4_static_rl_table_store[3][2][2*MAX_RUN + MAX_LEVEL + 3]; |