[FFmpeg-cvslog] r16131 - in trunk: libavcodec/avcodec.h libavcodec/utils.c libavformat/allformats.c

stefano subversion
Sun Dec 14 21:04:00 CET 2008


Author: stefano
Date: Sun Dec 14 21:04:00 2008
New Revision: 16131

Log:
Make register_avcodec() call avcodec_init().

This avoids the possibility to use a registered codec without to first
initialize libavcodec, which resulted in an unexpected behaviour.


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

Modified: trunk/libavcodec/avcodec.h
==============================================================================
--- trunk/libavcodec/avcodec.h	(original)
+++ trunk/libavcodec/avcodec.h	Sun Dec 14 21:04:00 2008
@@ -31,7 +31,7 @@
 
 #define LIBAVCODEC_VERSION_MAJOR 52
 #define LIBAVCODEC_VERSION_MINOR  6
-#define LIBAVCODEC_VERSION_MICRO  1
+#define LIBAVCODEC_VERSION_MICRO  2
 
 #define LIBAVCODEC_VERSION_INT  AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
                                                LIBAVCODEC_VERSION_MINOR, \

Modified: trunk/libavcodec/utils.c
==============================================================================
--- trunk/libavcodec/utils.c	(original)
+++ trunk/libavcodec/utils.c	Sun Dec 14 21:04:00 2008
@@ -90,6 +90,7 @@ AVCodec *av_codec_next(AVCodec *c){
 void register_avcodec(AVCodec *codec)
 {
     AVCodec **p;
+    avcodec_init();
     p = &first_avcodec;
     while (*p != NULL) p = &(*p)->next;
     *p = codec;

Modified: trunk/libavformat/allformats.c
==============================================================================
--- trunk/libavformat/allformats.c	(original)
+++ trunk/libavformat/allformats.c	Sun Dec 14 21:04:00 2008
@@ -50,7 +50,6 @@ void av_register_all(void)
         return;
     initialized = 1;
 
-    avcodec_init();
     avcodec_register_all();
 
     /* (de)muxers */




More information about the ffmpeg-cvslog mailing list