Mercurial > mplayer.hg
changeset 31494:c92b055ebec7
Allow the FFmpeg VP8 decoder to work by disabling dr for it (thus we do not
need edge emulation).
author | reimar |
---|---|
date | Sat, 26 Jun 2010 18:06:20 +0000 |
parents | 0a7222a42a70 |
children | 32b1ffba017f |
files | libmpcodecs/vd_ffmpeg.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libmpcodecs/vd_ffmpeg.c Fri Jun 25 16:56:40 2010 +0000 +++ b/libmpcodecs/vd_ffmpeg.c Sat Jun 26 18:06:20 2010 +0000 @@ -274,7 +274,7 @@ if(vd_use_slices && (lavc_codec->capabilities&CODEC_CAP_DRAW_HORIZ_BAND) && !do_vis_debug) ctx->do_slices=1; - if(lavc_codec->capabilities&CODEC_CAP_DR1 && !do_vis_debug && lavc_codec->id != CODEC_ID_H264 && lavc_codec->id != CODEC_ID_INTERPLAY_VIDEO && lavc_codec->id != CODEC_ID_ROQ) + if(lavc_codec->capabilities&CODEC_CAP_DR1 && !do_vis_debug && lavc_codec->id != CODEC_ID_H264 && lavc_codec->id != CODEC_ID_INTERPLAY_VIDEO && lavc_codec->id != CODEC_ID_ROQ && lavc_codec->id != CODEC_ID_VP8) ctx->do_dr1=1; ctx->b_age= ctx->ip_age[0]= ctx->ip_age[1]= 256*256*256*64; ctx->ip_count= ctx->b_count= 0;