summaryrefslogtreecommitdiff
path: root/libavcodec/libtheoraenc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2010-04-20 14:23:00 +0000
committerDiego Biurrun <diego@biurrun.de>2010-04-20 14:23:00 +0000
commit4311ff776b4f887ceb526a9b611f627bbb527c80 (patch)
tree2e4f08f8bc2c658306a8f3c7e407de013d8b8077 /libavcodec/libtheoraenc.c
parent5948f8222706d63f603167bf1a17c20bdee0b321 (diff)
cosmetics: Switch Doxygen comments to JavaDoc style.
Originally committed as revision 22919 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/libtheoraenc.c')
-rw-r--r--libavcodec/libtheoraenc.c14
1 files changed, 6 insertions, 8 deletions
diff --git a/libavcodec/libtheoraenc.c b/libavcodec/libtheoraenc.c
index 0ae03bfb1c..3de1aef554 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 <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,