[FFmpeg-cvslog] r25272 - in trunk/libavcodec: avcodec.h utils.c

aurel subversion
Thu Sep 30 21:51:22 CEST 2010


Author: aurel
Date: Thu Sep 30 21:51:22 2010
New Revision: 25272

Log:
add FF_API_VIDEO_OLD define to disable the deprecated decode_video API

Modified:
   trunk/libavcodec/avcodec.h
   trunk/libavcodec/utils.c

Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h	Thu Sep 30 20:12:27 2010	(r25271)
+++ trunk/libavcodec/avcodec.h	Thu Sep 30 21:51:22 2010	(r25272)
@@ -60,6 +60,9 @@
 #ifndef FF_API_AUDIO_OLD
 #define FF_API_AUDIO_OLD        (LIBAVCODEC_VERSION_MAJOR < 53)
 #endif
+#ifndef FF_API_VIDEO_OLD
+#define FF_API_VIDEO_OLD        (LIBAVCODEC_VERSION_MAJOR < 53)
+#endif
 
 #define AV_NOPTS_VALUE          INT64_C(0x8000000000000000)
 #define AV_TIME_BASE            1000000
@@ -3524,7 +3527,7 @@ int avcodec_decode_audio3(AVCodecContext
                          int *frame_size_ptr,
                          AVPacket *avpkt);
 
-#if LIBAVCODEC_VERSION_MAJOR < 53
+#if FF_API_VIDEO_OLD
 /**
  * Decode a video frame from buf into picture.
  * Wrapper function which calls avcodec_decode_video2.

Modified: trunk/libavcodec/utils.c
==============================================================================
--- trunk/libavcodec/utils.c	Thu Sep 30 20:12:27 2010	(r25271)
+++ trunk/libavcodec/utils.c	Thu Sep 30 21:51:22 2010	(r25272)
@@ -591,7 +591,7 @@ int avcodec_encode_subtitle(AVCodecConte
     return ret;
 }
 
-#if LIBAVCODEC_VERSION_MAJOR < 53
+#if FF_API_VIDEO_OLD
 int attribute_align_arg avcodec_decode_video(AVCodecContext *avctx, AVFrame *picture,
                          int *got_picture_ptr,
                          const uint8_t *buf, int buf_size)



More information about the ffmpeg-cvslog mailing list