Improve understanding ofavcodec_find_decoder()
authorCarl Eugen Hoyos <cehoyos@ag.or.at>
Wed, 13 Jun 2007 08:28:00 +0000 (08:28 +0000)
committerBenoit Fouet <benoit.fouet@free.fr>
Wed, 13 Jun 2007 08:28:00 +0000 (08:28 +0000)
patch by Carl Eugen Hoyos: ! cehoyos ag or at !

Originally committed as revision 9301 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/apiexample.c
libavcodec/avcodec.h

index 435f409916835bcd5d41f4cfbfe53bcb36dba88e..793cfaa04072804d7d36072e19a6d10e08befbea 100644 (file)
@@ -433,8 +433,7 @@ int main(int argc, char **argv)
     /* must be called before using avcodec lib */
     avcodec_init();
 
-    /* register all the codecs (you can also register only the codec
-       you wish to have smaller code */
+    /* register all the codecs */
     avcodec_register_all();
 
     if (argc <= 1) {
index 806be53255e75992b8801b9434523ae817929242..19dc0edd50fbf52ff0bb352a2bf2451f8faf53f9 100644 (file)
@@ -2517,6 +2517,7 @@ int avcodec_default_execute(AVCodecContext *c, int (*func)(AVCodecContext *c2, v
  * @warning This function is not thread safe!
  *
  * @code
+ * avcodec_register_all();
  * codec = avcodec_find_decoder(CODEC_ID_H264);
  * if (!codec)
  *     exit(1);