diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-03-05 20:03:15 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-03-05 20:03:15 +0000 |
commit | 640950c700ce17fb6e3a135c5717f35c9c8d48ea (patch) | |
tree | b9a8fd9e7ef43e8749860f63b8d83dffda1831f4 /libavcodec/mpegvideo.h | |
parent | 1d98dca328c437625b2d33cd2cf46af2671421b3 (diff) | |
download | ffmpeg-640950c700ce17fb6e3a135c5717f35c9c8d48ea.tar.gz |
mpeg2 field pictures + sliced mode (doesnt work with mplayer though, dunno why)
Originally committed as revision 1626 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/mpegvideo.h')
-rw-r--r-- | libavcodec/mpegvideo.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/mpegvideo.h b/libavcodec/mpegvideo.h index 04a576d0c0..899956a5b5 100644 --- a/libavcodec/mpegvideo.h +++ b/libavcodec/mpegvideo.h @@ -593,7 +593,7 @@ void ff_copy_bits(PutBitContext *pb, uint8_t *src, int length); void ff_clean_intra_table_entries(MpegEncContext *s); void ff_init_scantable(MpegEncContext *s, ScanTable *st, const uint8_t *src_scantable); void ff_error_resilience(MpegEncContext *s); -void ff_draw_horiz_band(MpegEncContext *s); +void ff_draw_horiz_band(MpegEncContext *s, int y, int h); void ff_emulated_edge_mc(MpegEncContext *s, uint8_t *src, int linesize, int block_w, int block_h, int src_x, int src_y, int w, int h); char ff_get_pict_type_char(int pict_type); |