diff --git a/libavcodec/libtheoraenc.c b/libavcodec/libtheoraenc.c index 0ae03bfb1c42ed52a64e8002382b7071ef5a942b..3de1aef5542a5ea9a6b2b470004dfc9262fd4042 100644 --- a/libavcodec/libtheoraenc.c +++ b/libavcodec/libtheoraenc.c @@ -18,10 +18,10 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ -/*! - * \file libtheoraenc.c - * \brief Theora encoder using libtheora. - * \author Paul Richards +/** + * @file libtheoraenc.c + * @brief Theora encoder using libtheora. + * @author Paul Richards * * A lot of this is copy / paste from other output codecs in * libavcodec or pure guesswork (or both). @@ -49,9 +49,7 @@ typedef struct TheoraContext { int keyframe_mask; } TheoraContext; -/*! - Concatenates an ogg_packet into the extradata. -*/ +/** Concatenates an ogg_packet into the extradata. */ static int concatenate_packet(unsigned int* offset, AVCodecContext* avc_context, const ogg_packet* packet) @@ -358,7 +356,7 @@ static av_cold int encode_close(AVCodecContext* avc_context) return 0; } -/*! AVCodec struct exposed to libavcodec */ +/** AVCodec struct exposed to libavcodec */ AVCodec libtheora_encoder = { .name = "libtheora", .type = AVMEDIA_TYPE_VIDEO,