Mercurial > libavcodec.hg
changeset 4552:c31d78661cf2 libavcodec
Add some more Doxygen documentation to libavcodec/utils.c.
author | takis |
---|---|
date | Tue, 20 Feb 2007 12:45:16 +0000 |
parents | c0bf618fbe7e |
children | 1a714d3f0233 |
files | utils.c |
diffstat | 1 files changed, 44 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/utils.c Tue Feb 20 11:09:47 2007 +0000 +++ b/utils.c Tue Feb 20 12:45:16 2007 +0000 @@ -743,6 +743,11 @@ static AVClass av_codec_context_class = { "AVCodecContext", context_to_name, options }; +/** + * Sets the fields of the given AVCodecContext to default values. + * + * @param s The AVCodecContext of which the fields should be set to default values. + */ void avcodec_get_context_defaults(AVCodecContext *s){ memset(s, 0, sizeof(AVCodecContext)); @@ -765,8 +770,11 @@ } /** - * allocates a AVCodecContext and set it to defaults. - * this can be deallocated by simply calling free() + * Allocates an AVCodecContext and sets its fields to default values. The + * resulting struct can be deallocated by simply calling av_free(). + * + * @return An AVCodecContext filled with default values or NULL on failure. + * @see avcodec_get_context_defaults */ AVCodecContext *avcodec_alloc_context(void){ AVCodecContext *avctx= av_malloc(sizeof(AVCodecContext)); @@ -778,6 +786,11 @@ return avctx; } +/** + * Sets its fields of the given AVFrame to default values. + * + * @param pic The AVFrame of which the fields should be set to default values. + */ void avcodec_get_frame_defaults(AVFrame *pic){ memset(pic, 0, sizeof(AVFrame)); @@ -786,8 +799,11 @@ } /** - * allocates a AVPFrame and set it to defaults. - * this can be deallocated by simply calling free() + * Allocates an AVFrame and sets its fields to default values. The resulting + * struct can be deallocated by simply calling av_free(). + * + * @return An AVFrame filled with default values or NULL on failure. + * @see avcodec_get_frame_defaults */ AVFrame *avcodec_alloc_frame(void){ AVFrame *pic= av_malloc(sizeof(AVFrame)); @@ -1004,6 +1020,12 @@ return 0; } +/** + * Find an encoder with a matching codec ID. + * + * @param id CodecID of the requested encoder. + * @return An encoder if one was found, NULL otherwise. + */ AVCodec *avcodec_find_encoder(enum CodecID id) { AVCodec *p; @@ -1016,6 +1038,12 @@ return NULL; } +/** + * Find an encoder with the specified name. + * + * @param name Name of the requested encoder. + * @return An encoder if one was found, NULL otherwise. + */ AVCodec *avcodec_find_encoder_by_name(const char *name) { AVCodec *p; @@ -1028,6 +1056,12 @@ return NULL; } +/** + * Find a decoder with a matching codec ID. + * + * @param id CodecID of the requested decoder. + * @return An decoder if one was found, NULL otherwise. + */ AVCodec *avcodec_find_decoder(enum CodecID id) { AVCodec *p; @@ -1040,6 +1074,12 @@ return NULL; } +/** + * Find an decoder with the specified name. + * + * @param name Name of the requested decoder. + * @return An decoder if one was found, NULL otherwise. + */ AVCodec *avcodec_find_decoder_by_name(const char *name) { AVCodec *p;