Skip to content
Snippets Groups Projects
Commit 758a6b3c authored by Panagiotis Issaris's avatar Panagiotis Issaris
Browse files

Provide Doxygen documentation.

Originally committed as revision 8038 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 036bfd18
No related branches found
No related tags found
No related merge requests found
/* /*
* Utils for libavcodec * Provides registration of all codecs, parsers and bitstream filters for libavcodec.
* Copyright (c) 2002 Fabrice Bellard. * Copyright (c) 2002 Fabrice Bellard.
* *
* This file is part of FFmpeg. * This file is part of FFmpeg.
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
/** /**
* @file allcodecs.c * @file allcodecs.c
* Utils for libavcodec. * Provides registration of all codecs, parsers and bitstream filters for libavcodec.
*/ */
#include "avcodec.h" #include "avcodec.h"
...@@ -35,11 +35,15 @@ ...@@ -35,11 +35,15 @@
#define REGISTER_PARSER(X,x) \ #define REGISTER_PARSER(X,x) \
if(ENABLE_##X##_PARSER) av_register_codec_parser(&x##_parser) if(ENABLE_##X##_PARSER) av_register_codec_parser(&x##_parser)
/* If you do not call this function, then you can select exactly which
formats you want to support */
/** /**
* simple call to register all the codecs. * 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)
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment