Mercurial > libavcodec.hg
changeset 8328:2e654989814e libavcodec
Move documentation of avcodec_register_all() from allcodecs.c to
avcodec.h.
author | stefano |
---|---|
date | Sun, 14 Dec 2008 21:38:03 +0000 |
parents | 54ff3a76b736 |
children | 8b6bcfa22aa8 |
files | allcodecs.c avcodec.h |
diffstat | 2 files changed, 10 insertions(+), 10 deletions(-) [+] |
line wrap: on
line diff
--- a/allcodecs.c Sun Dec 14 21:34:12 2008 +0000 +++ b/allcodecs.c Sun Dec 14 21:38:03 2008 +0000 @@ -41,16 +41,6 @@ extern AVBitStreamFilter x##_bsf; \ if(ENABLE_##X##_BSF) av_register_bitstream_filter(&x##_bsf); } -/** - * 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) { static int initialized;
--- a/avcodec.h Sun Dec 14 21:34:12 2008 +0000 +++ b/avcodec.h Sun Dec 14 21:38:03 2008 +0000 @@ -2824,6 +2824,16 @@ 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); /**