comparison avformat.h @ 4287:fcc542fd3214 libavformat

Move documentation of av_register_all() from allformats.c to avformat.h, and extend it.
author stefano
date Sun, 25 Jan 2009 16:44:45 +0000
parents ed5196e6e112
children b54f835e3c5d
comparison
equal deleted inserted replaced
4286:2af9d6b4db07 4287:fcc542fd3214
755 * @param pkt packet to dump 755 * @param pkt packet to dump
756 * @param dump_payload True if the payload must be displayed, too. 756 * @param dump_payload True if the payload must be displayed, too.
757 */ 757 */
758 void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload); 758 void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload);
759 759
760 /**
761 * Initialize libavformat and register all the muxers, demuxers and
762 * protocols. If you do not call this function, then you can select
763 * exactly which formats you want to support.
764 *
765 * @see av_register_input_format()
766 * @see av_register_output_format()
767 * @see register_protocol()
768 */
760 void av_register_all(void); 769 void av_register_all(void);
761 770
762 /** codec tag <-> codec id */ 771 /** codec tag <-> codec id */
763 enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag); 772 enum CodecID av_codec_get_id(const struct AVCodecTag * const *tags, unsigned int tag);
764 unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id); 773 unsigned int av_codec_get_tag(const struct AVCodecTag * const *tags, enum CodecID id);