[MPlayer-cvslog] r22240 - trunk/libmpcodecs/vd_ffmpeg.c
michael
subversion at mplayerhq.hu
Sat Feb 17 04:02:38 CET 2007
Author: michael
Date: Sat Feb 17 04:02:38 2007
New Revision: 22240
Modified:
trunk/libmpcodecs/vd_ffmpeg.c
Log:
mplayer canot handle DR1 with CODEC_ID_INTERPLAY_VIDEO (later needs too many buffers it seems)
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c (original)
+++ trunk/libmpcodecs/vd_ffmpeg.c Sat Feb 17 04:02:38 2007
@@ -249,7 +249,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)
+ if(lavc_codec->capabilities&CODEC_CAP_DR1 && !do_vis_debug && lavc_codec->id != CODEC_ID_H264 && lavc_codec->id != CODEC_ID_INTERPLAY_VIDEO)
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;
More information about the MPlayer-cvslog
mailing list