[MPlayer-cvslog] r35114 - trunk/libmpcodecs/vd_ffmpeg.c
cehoyos
subversion at mplayerhq.hu
Thu Aug 23 20:20:47 CEST 2012
Author: cehoyos
Date: Thu Aug 23 20:20:47 2012
New Revision: 35114
Log:
Direct rendering with FFmpeg lagarith decoder works fine.
Modified:
trunk/libmpcodecs/vd_ffmpeg.c
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c Wed Aug 22 20:29:37 2012 (r35113)
+++ trunk/libmpcodecs/vd_ffmpeg.c Thu Aug 23 20:20:47 2012 (r35114)
@@ -245,7 +245,7 @@ static int init(sh_video_t *sh){
if(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_INTERPLAY_VIDEO && lavc_codec->id != CODEC_ID_VP8 && lavc_codec->id != CODEC_ID_LAGARITH)
+ if(lavc_codec->capabilities&CODEC_CAP_DR1 && !do_vis_debug && lavc_codec->id != CODEC_ID_INTERPLAY_VIDEO && lavc_codec->id != CODEC_ID_VP8)
ctx->do_dr1=1;
ctx->nonref_dr = lavc_codec->id == CODEC_ID_H264;
ctx->ip_count= ctx->b_count= 0;
More information about the MPlayer-cvslog
mailing list