Mercurial > libavcodec.hg
changeset 5808:b809aff51f19 libavcodec
Specify in documentation that avcodec_find_(en|de)coder* only searches for
registered entries
Patch by Ville Skytt¸«£ <ville dot skytta at iki dot fi>
author | ramiro |
---|---|
date | Thu, 11 Oct 2007 21:09:40 +0000 |
parents | 34fac02fbc4b |
children | 7301ea0ae221 |
files | avcodec.h |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/avcodec.h Thu Oct 11 09:35:06 2007 +0000 +++ b/avcodec.h Thu Oct 11 21:09:40 2007 +0000 @@ -2435,7 +2435,7 @@ 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 @@ 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_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_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.