diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2003-07-20 14:48:05 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2003-07-20 14:48:05 +0000 |
commit | 3bb07d616556f6489ce3aab1a5ec6b6dfbbd6217 (patch) | |
tree | b487bd51f35a9339d12dac3d167f835c3538ee3a /libavcodec/huffyuv.c | |
parent | 42928ccbc24b2a9f4f6777d36e63fc1981783448 (diff) | |
download | ffmpeg-3bb07d616556f6489ce3aab1a5ec6b6dfbbd6217.tar.gz |
default for slices is display order again
optional support for field slices & slices in coded order
and single component slices for svq1 (unfinished)
Originally committed as revision 2066 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/huffyuv.c')
-rw-r--r-- | libavcodec/huffyuv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/huffyuv.c b/libavcodec/huffyuv.c index 4c8229a3c3..7970cd34c5 100644 --- a/libavcodec/huffyuv.c +++ b/libavcodec/huffyuv.c @@ -693,7 +693,7 @@ static void draw_slice(HYuvContext *s, int y){ offset[3] = 0; emms_c(); - s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, s->width, h); + s->avctx->draw_horiz_band(s->avctx, &s->picture, offset, y, 3, h); s->last_slice_end= y + h; } |