# HG changeset patch # User diego # Date 1271773380 0 # Node ID 92236ee7be0f8c38d58b2fbc1e0ac4921747c882 # Parent 52bc4e605761a446993190cf7d678c339e498c15 cosmetics: Switch Doxygen comments to JavaDoc style. diff -r 52bc4e605761 -r 92236ee7be0f libtheoraenc.c --- a/libtheoraenc.c Mon Apr 19 21:20:20 2010 +0000 +++ b/libtheoraenc.c Tue Apr 20 14:23:00 2010 +0000 @@ -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 @@ 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 @@ return 0; } -/*! AVCodec struct exposed to libavcodec */ +/** AVCodec struct exposed to libavcodec */ AVCodec libtheora_encoder = { .name = "libtheora", .type = AVMEDIA_TYPE_VIDEO,