Commit 178d5edd authored by stefano's avatar stefano

Move documentation of avcodec_register_all() allcodecs.c to avcodec.h.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16135 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 3b5128aa
...@@ -41,16 +41,6 @@ ...@@ -41,16 +41,6 @@
extern AVBitStreamFilter x##_bsf; \ extern AVBitStreamFilter x##_bsf; \
if(ENABLE_##X##_BSF) av_register_bitstream_filter(&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) void avcodec_register_all(void)
{ {
static int initialized; static int initialized;
......
...@@ -2824,6 +2824,16 @@ int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, ...@@ -2824,6 +2824,16 @@ int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
int avcodec_close(AVCodecContext *avctx); 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); void avcodec_register_all(void);
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment