Commit 4311ff77 authored by Diego Biurrun's avatar Diego Biurrun

cosmetics: Switch Doxygen comments to JavaDoc style.

Originally committed as revision 22919 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 5948f822
...@@ -18,10 +18,10 @@ ...@@ -18,10 +18,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
/*! /**
* \file libtheoraenc.c * @file libtheoraenc.c
* \brief Theora encoder using libtheora. * @brief Theora encoder using libtheora.
* \author Paul Richards <paul.richards@gmail.com> * @author Paul Richards <paul.richards@gmail.com>
* *
* A lot of this is copy / paste from other output codecs in * A lot of this is copy / paste from other output codecs in
* libavcodec or pure guesswork (or both). * libavcodec or pure guesswork (or both).
...@@ -49,9 +49,7 @@ typedef struct TheoraContext { ...@@ -49,9 +49,7 @@ typedef struct TheoraContext {
int keyframe_mask; int keyframe_mask;
} TheoraContext; } TheoraContext;
/*! /** Concatenates an ogg_packet into the extradata. */
Concatenates an ogg_packet into the extradata.
*/
static int concatenate_packet(unsigned int* offset, static int concatenate_packet(unsigned int* offset,
AVCodecContext* avc_context, AVCodecContext* avc_context,
const ogg_packet* packet) const ogg_packet* packet)
...@@ -358,7 +356,7 @@ static av_cold int encode_close(AVCodecContext* avc_context) ...@@ -358,7 +356,7 @@ static av_cold int encode_close(AVCodecContext* avc_context)
return 0; return 0;
} }
/*! AVCodec struct exposed to libavcodec */ /** AVCodec struct exposed to libavcodec */
AVCodec libtheora_encoder = { AVCodec libtheora_encoder = {
.name = "libtheora", .name = "libtheora",
.type = AVMEDIA_TYPE_VIDEO, .type = AVMEDIA_TYPE_VIDEO,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment