[FFmpeg-cvslog] r22919 - trunk/libavcodec/libtheoraenc.c
diego
subversion
Tue Apr 20 16:23:00 CEST 2010
Author: diego
Date: Tue Apr 20 16:23:00 2010
New Revision: 22919
Log:
cosmetics: Switch Doxygen comments to JavaDoc style.
Modified:
trunk/libavcodec/libtheoraenc.c
Modified: trunk/libavcodec/libtheoraenc.c
==============================================================================
--- trunk/libavcodec/libtheoraenc.c Tue Apr 20 09:38:52 2010 (r22918)
+++ trunk/libavcodec/libtheoraenc.c Tue Apr 20 16:23:00 2010 (r22919)
@@ -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 at gmail.com>
+/**
+ * @file libtheoraenc.c
+ * @brief Theora encoder using libtheora.
+ * @author Paul Richards <paul.richards at 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(AVCodecC
return 0;
}
-/*! AVCodec struct exposed to libavcodec */
+/** AVCodec struct exposed to libavcodec */
AVCodec libtheora_encoder = {
.name = "libtheora",
.type = AVMEDIA_TYPE_VIDEO,
More information about the ffmpeg-cvslog
mailing list