Commit 62fe5851 authored by ramiro's avatar ramiro

Specify in documentation that avcodec_find_(en|de)coder* only searches for

registered entries

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@10710 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 9cca1b85
......@@ -2435,7 +2435,7 @@ void avcodec_init(void);
void register_avcodec(AVCodec *format);
/**
* Finds an encoder with a matching codec ID.
* Finds a registered encoder with a matching codec ID.
*
* @param id CodecID of the requested encoder
* @return An encoder if one was found, NULL otherwise.
......@@ -2443,7 +2443,7 @@ void register_avcodec(AVCodec *format);
AVCodec *avcodec_find_encoder(enum CodecID id);
/**
* Finds an encoder with the specified name.
* Finds a registered encoder with the specified name.
*
* @param name name of the requested encoder
* @return An encoder if one was found, NULL otherwise.
......@@ -2451,7 +2451,7 @@ AVCodec *avcodec_find_encoder(enum CodecID id);
AVCodec *avcodec_find_encoder_by_name(const char *name);
/**
* Finds a decoder with a matching codec ID.
* Finds a registered decoder with a matching codec ID.
*
* @param id CodecID of the requested decoder
* @return A decoder if one was found, NULL otherwise.
......@@ -2459,7 +2459,7 @@ AVCodec *avcodec_find_encoder_by_name(const char *name);
AVCodec *avcodec_find_decoder(enum CodecID id);
/**
* Finds an decoder with the specified name.
* Finds a registered decoder with the specified name.
*
* @param name name of the requested decoder
* @return A decoder if one was found, NULL otherwise.
......
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