You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
avcodec/mpegvideo: Fix -flags +gray with xvid_vlc_trac7411.h263
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@@ -3276,11 +3276,13 @@ void mpv_decode_mb_internal(MpegEncContext *s, int16_t block[12][64],
|
|||||||
skip_idct:
|
skip_idct:
|
||||||
if(!readable){
|
if(!readable){
|
||||||
s->hdsp.put_pixels_tab[0][0](s->dest[0], dest_y , linesize,16);
|
s->hdsp.put_pixels_tab[0][0](s->dest[0], dest_y , linesize,16);
|
||||||
|
if (!CONFIG_GRAY || !(s->flags & CODEC_FLAG_GRAY)) {
|
||||||
s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
|
s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[1], dest_cb, uvlinesize,16 >> s->chroma_y_shift);
|
||||||
s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[2], dest_cr, uvlinesize,16 >> s->chroma_y_shift);
|
s->hdsp.put_pixels_tab[s->chroma_x_shift][0](s->dest[2], dest_cr, uvlinesize,16 >> s->chroma_y_shift);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
void ff_mpv_decode_mb(MpegEncContext *s, int16_t block[12][64])
|
void ff_mpv_decode_mb(MpegEncContext *s, int16_t block[12][64])
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user