[FFmpeg-cvslog] r25276 - in trunk/libavcodec: avcodec.h opt.c opt.h

aurel subversion
Thu Sep 30 22:34:35 CEST 2010


Author: aurel
Date: Thu Sep 30 22:34:35 2010
New Revision: 25276

Log:
add FF_API_SET_STRING_OLD define to disable the deprecated av_set_string API

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

Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h	Thu Sep 30 22:31:42 2010	(r25275)
+++ trunk/libavcodec/avcodec.h	Thu Sep 30 22:34:35 2010	(r25276)
@@ -69,6 +69,9 @@
 #ifndef FF_API_USE_LPC
 #define FF_API_USE_LPC          (LIBAVCODEC_VERSION_MAJOR < 53)
 #endif
+#ifndef FF_API_SET_STRING_OLD
+#define FF_API_SET_STRING_OLD   (LIBAVCODEC_VERSION_MAJOR < 53)
+#endif
 
 #define AV_NOPTS_VALUE          INT64_C(0x8000000000000000)
 #define AV_TIME_BASE            1000000

Modified: trunk/libavcodec/opt.c
==============================================================================
--- trunk/libavcodec/opt.c	Thu Sep 30 22:31:42 2010	(r25275)
+++ trunk/libavcodec/opt.c	Thu Sep 30 22:34:35 2010	(r25276)
@@ -65,7 +65,7 @@ FF_SYMVER(void, av_opt_set_defaults2, (v
 }
 #endif
 
-#if LIBAVCODEC_VERSION_MAJOR < 53
+#if FF_API_SET_STRING_OLD
 const AVOption *av_set_string2(void *obj, const char *name, const char *val, int alloc){
     const AVOption *o;
     if (av_set_string3(obj, name, val, alloc, &o) < 0)

Modified: trunk/libavcodec/opt.h
==============================================================================
--- trunk/libavcodec/opt.h	Thu Sep 30 22:31:42 2010	(r25275)
+++ trunk/libavcodec/opt.h	Thu Sep 30 22:34:35 2010	(r25276)
@@ -31,7 +31,7 @@
 #include "avcodec.h"
 #include "libavutil/opt.h"
 
-#if LIBAVCODEC_VERSION_MAJOR < 53
+#if FF_API_SET_STRING_OLD
 /**
  * @see av_set_string2()
  */



More information about the ffmpeg-cvslog mailing list