diff options
author | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-14 21:38:03 +0000 |
---|---|---|
committer | Stefano Sabatini <stefano.sabatini-lala@poste.it> | 2008-12-14 21:38:03 +0000 |
commit | d0a01fe84b03ed07a8706cc64876e5cc5037a468 (patch) | |
tree | a3b487a6ee9471a019ca6f99165696294801fc47 /libavcodec/avcodec.h | |
parent | 54c441c8607634ccce44da1c7c230671cf635f67 (diff) | |
download | ffmpeg-d0a01fe84b03ed07a8706cc64876e5cc5037a468.tar.gz |
Move documentation of avcodec_register_all() from allcodecs.c to
avcodec.h.
Originally committed as revision 16135 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r-- | libavcodec/avcodec.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index 249ba5ad88..4824b1e799 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2824,6 +2824,16 @@ int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, int avcodec_close(AVCodecContext *avctx); +/** + * Register all the codecs, parsers and bitstream filters which were enabled at + * configuration time. If you do not call this function you can select exactly + * which formats you want to support, by using the individual registration + * functions. + * + * @see register_avcodec + * @see av_register_codec_parser + * @see av_register_bitstream_filter + */ void avcodec_register_all(void); /** |