Browse Source

Fix slice height for y position calculation for vp3_draw_horiz_band

when the video uses 4:2:2 instead of 4:2:0 coding.

Originally committed as revision 25052 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Reimar Döffinger 14 years ago
parent
commit
3d487db153
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/vp3.c

+ 1
- 1
libavcodec/vp3.c View File

@@ -1509,7 +1509,7 @@ static void render_slice(Vp3DecodeContext *s, int slice)
* dispatch (slice - 1);
*/

vp3_draw_horiz_band(s, FFMIN(64*slice + 64-16, s->height-16));
vp3_draw_horiz_band(s, FFMIN((32 << s->chroma_y_shift) * (slice + 1) -16, s->height-16));
}

/*


Loading…
Cancel
Save