comparison avcodec.h @ 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 f19fe0cade86
comparison
equal deleted inserted replaced
8327:54ff3a76b736 8328:2e654989814e
2822 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size, 2822 int avcodec_encode_subtitle(AVCodecContext *avctx, uint8_t *buf, int buf_size,
2823 const AVSubtitle *sub); 2823 const AVSubtitle *sub);
2824 2824
2825 int avcodec_close(AVCodecContext *avctx); 2825 int avcodec_close(AVCodecContext *avctx);
2826 2826
2827 /**
2828 * Register all the codecs, parsers and bitstream filters which were enabled at
2829 * configuration time. If you do not call this function you can select exactly
2830 * which formats you want to support, by using the individual registration
2831 * functions.
2832 *
2833 * @see register_avcodec
2834 * @see av_register_codec_parser
2835 * @see av_register_bitstream_filter
2836 */
2827 void avcodec_register_all(void); 2837 void avcodec_register_all(void);
2828 2838
2829 /** 2839 /**
2830 * Flush buffers, should be called when seeking or when switching to a different stream. 2840 * Flush buffers, should be called when seeking or when switching to a different stream.
2831 */ 2841 */