diff options
author | Anton Khirnov <anton@khirnov.net> | 2013-02-03 14:26:34 +0100 |
---|---|---|
committer | Anton Khirnov <anton@khirnov.net> | 2013-02-15 16:10:19 +0100 |
commit | 1d0feb5d1ac04d187b335f0e8d411c9f40b3a885 (patch) | |
tree | 2f79cfd6851b679b4d1d479355db3777a36b239c /libavcodec/intrax8.c | |
parent | 54974c62982ae827becdbdb9b620b7ba75d079a0 (diff) | |
download | ffmpeg-1d0feb5d1ac04d187b335f0e8d411c9f40b3a885.tar.gz |
mpegvideo: split ff_draw_horiz_band().
Split out dependency on MpegEncContext.
Diffstat (limited to 'libavcodec/intrax8.c')
-rw-r--r-- | libavcodec/intrax8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/intrax8.c b/libavcodec/intrax8.c index d2457f8ba4..a57e1f9bb7 100644 --- a/libavcodec/intrax8.c +++ b/libavcodec/intrax8.c @@ -779,7 +779,7 @@ int ff_intrax8_decode_picture(IntraX8Context * const w, int dquant, int quant_of s->dest[0]+= 8; } if(s->mb_y&1){ - ff_draw_horiz_band(s, (s->mb_y-1)*8, 16); + ff_mpeg_draw_horiz_band(s, (s->mb_y-1)*8, 16); } } |