1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

cosmetics: Switch Doxygen comments to JavaDoc style.

Originally committed as revision 22919 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Diego Biurrun 2010-04-20 14:23:00 +00:00
parent 5948f82227
commit 4311ff776b

View File

@ -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 <paul.richards@gmail.com>
/**
* @file libtheoraenc.c
* @brief Theora encoder using libtheora.
* @author Paul Richards <paul.richards@gmail.com>
*
* 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,