summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--libavformat/allformats.c6
-rw-r--r--libavformat/avformat.h9
2 files changed, 9 insertions, 6 deletions
diff --git a/libavformat/allformats.c b/libavformat/allformats.c
index a8b2725ac7..a30693020b 100644
--- a/libavformat/allformats.c
+++ b/libavformat/allformats.c
@@ -36,12 +36,6 @@
extern URLProtocol x##_protocol; \
if(CONFIG_##X##_PROTOCOL) register_protocol(&x##_protocol); }
-/* If you do not call this function, then you can select exactly which
- formats you want to support */
-
-/**
- * Initialize libavformat and register all the (de)muxers and protocols.
- */
void av_register_all(void)
{
static int initialized;
diff --git a/libavformat/avformat.h b/libavformat/avformat.h
index c74eb89bd2..aeca960979 100644
--- a/libavformat/avformat.h
+++ b/libavformat/avformat.h
@@ -757,6 +757,15 @@ void av_pkt_dump(FILE *f, AVPacket *pkt, int dump_payload);
*/
void av_pkt_dump_log(void *avcl, int level, AVPacket *pkt, int dump_payload);
+/**
+ * Initialize libavformat and register all the muxers, demuxers and
+ * protocols. If you do not call this function, then you can select
+ * exactly which formats you want to support.
+ *
+ * @see av_register_input_format()
+ * @see av_register_output_format()
+ * @see register_protocol()
+ */
void av_register_all(void);
/** codec tag <-> codec id */