diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2007-06-13 08:28:00 +0000 |
---|---|---|
committer | Benoit Fouet <benoit.fouet@free.fr> | 2007-06-13 08:28:00 +0000 |
commit | c9823f05778ca197681a6c9960590d66816ddcfe (patch) | |
tree | df1e162962f68e0cd068635d94657c02d61c8cf7 /libavcodec/avcodec.h | |
parent | 58d1dc0e9b3cb6487a095e53794cfe74047d08ac (diff) | |
download | ffmpeg-c9823f05778ca197681a6c9960590d66816ddcfe.tar.gz |
Improve understanding ofavcodec_find_decoder()
patch by Carl Eugen Hoyos: ! cehoyos ag or at !
Originally committed as revision 9301 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 806be53255..19dc0edd50 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -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); |