[MPlayer-cvslog] r28594 - trunk/libmpcodecs/vd_ffmpeg.c

reimar subversion at mplayerhq.hu
Sun Feb 15 16:24:33 CET 2009


Author: reimar
Date: Sun Feb 15 16:24:32 2009
New Revision: 28594

Log:
Remove apparently unneeded CODEC_FLAG_EMU_EDGE for XvMC

Modified:
   trunk/libmpcodecs/vd_ffmpeg.c

Modified: trunk/libmpcodecs/vd_ffmpeg.c
==============================================================================
--- trunk/libmpcodecs/vd_ffmpeg.c	Sun Feb 15 15:48:30 2009	(r28593)
+++ trunk/libmpcodecs/vd_ffmpeg.c	Sun Feb 15 16:24:32 2009	(r28594)
@@ -247,7 +247,6 @@ static int init(sh_video_t *sh){
         mp_msg(MSGT_DECVIDEO, MSGL_INFO, MSGTR_MPCODECS_XVMCAcceleratedCodec);
         assert(ctx->do_dr1);//these are must to!
         assert(ctx->do_slices); //it is (vo_)ffmpeg bug if this fails
-        avctx->flags|= CODEC_FLAG_EMU_EDGE;//do i need that??!!
         avctx->get_format= get_format;//for now only this decoder will use it
         avctx->get_buffer= get_buffer;
         avctx->release_buffer= release_buffer;
@@ -898,7 +897,6 @@ static enum PixelFormat get_format(struc
         mp_msg(MSGT_DECVIDEO, MSGL_INFO, MSGTR_MPCODECS_XVMCAcceleratedMPEG2);
         assert(ctx->do_dr1);//these are must to!
         assert(ctx->do_slices); //it is (vo_)ffmpeg bug if this fails
-        avctx->flags|= CODEC_FLAG_EMU_EDGE;//do i need that??!!
         avctx->slice_flags=SLICE_FLAG_CODED_ORDER|SLICE_FLAG_ALLOW_FIELD;
     }
     for(i=0;fmt[i]!=-1;i++){



More information about the MPlayer-cvslog mailing list