Mercurial > libavcodec.hg
diff mpeg4video.h @ 10824:82d006235248 libavcodec
Move 3 direct MV related functions that i left out from h263.c to mpeg4video.c.
| author | michael |
|---|---|
| date | Fri, 08 Jan 2010 19:59:51 +0000 |
| parents | d1fe22d92a65 |
| children | 34739b965809 |
line wrap: on
line diff
--- a/mpeg4video.h Fri Jan 08 19:53:42 2010 +0000 +++ b/mpeg4video.h Fri Jan 08 19:59:51 2010 +0000 @@ -104,6 +104,13 @@ 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];
