]> git.sesse.net Git - vlc/commitdiff
ffmpeg.c : fix my previous commit( I've forgotten one #if ... #endif )
authorLaurent Aimar <fenrir@videolan.org>
Mon, 15 Jul 2002 22:45:12 +0000 (22:45 +0000)
committerLaurent Aimar <fenrir@videolan.org>
Mon, 15 Jul 2002 22:45:12 +0000 (22:45 +0000)
(Thx sam)

plugins/ffmpeg/ffmpeg.c

index 8be16f33866640e8df4acff9af38540eb1711e6d..75e8fcef324cadce9d21186b96ccd2beec0937c8 100644 (file)
@@ -2,7 +2,7 @@
  * ffmpeg.c: video decoder using ffmpeg library
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: ffmpeg.c,v 1.14 2002/07/15 19:33:02 fenrir Exp $
+ * $Id: ffmpeg.c,v 1.15 2002/07/15 22:45:12 fenrir Exp $
  *
  * Authors: Laurent Aimar <fenrir@via.ecp.fr>
  *
@@ -625,10 +625,11 @@ static void ffmpeg_ConvertPicture( picture_t *p_pic,
     /* we need to convert to I420 */
     switch( p_vdec->p_context->pix_fmt )
     {
+#if LIBAVCODEC_BUILD >= 4615
         case( PIX_FMT_YUV410P ):
             ffmpeg_ConvertPictureI410toI420( p_pic, p_avpicture, p_vdec );
             break;
-            
+#endif            
         default:
             p_vdec->p_fifo->b_error =1;
             break;