[MPlayer-cvslog] r27549 - trunk/libmpcodecs/vd_ffmpeg.c
gpoirier
subversion at mplayerhq.hu
Mon Sep 8 22:01:11 CEST 2008
Author: gpoirier
Date: Mon Sep 8 22:01:10 2008
New Revision: 27549
Log:
fix compilation with lavc version > r15270
Modified:
trunk/libmpcodecs/vd_ffmpeg.c
Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c (original)
+++ trunk/libmpcodecs/vd_ffmpeg.c Mon Sep 8 22:01:10 2008
@@ -283,7 +283,7 @@ static int init(sh_video_t *sh){
avctx->width = sh->disp_w;
avctx->height= sh->disp_h;
avctx->workaround_bugs= lavc_param_workaround_bugs;
- avctx->error_resilience= lavc_param_error_resilience;
+ avctx->error_recognition= lavc_param_error_resilience;
if(lavc_param_gray) avctx->flags|= CODEC_FLAG_GRAY;
#ifdef CODEC_FLAG2_FAST
avctx->flags2|= lavc_param_fast;
More information about the MPlayer-cvslog
mailing list