summaryrefslogtreecommitdiff
path: root/libavcodec/libxvid.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-10-22 15:20:23 +0200
committerAnton Khirnov <anton@khirnov.net>2012-10-22 15:20:23 +0200
commit5957aefc7c75d8c55309fd6cf2634e4fcd2a22e4 (patch)
tree76a326bd2ee130a981b7ff67fefbdcce85b4917d /libavcodec/libxvid.c
parentb691135d0c6a2b1cca91adadaf457c2989c6a55d (diff)
libxvid: remove useless doxy comments.
Diffstat (limited to 'libavcodec/libxvid.c')
-rw-r--r--libavcodec/libxvid.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/libavcodec/libxvid.c b/libavcodec/libxvid.c
index 89021e774f..dd1e3e3e8b 100644
--- a/libavcodec/libxvid.c
+++ b/libavcodec/libxvid.c
@@ -340,14 +340,6 @@ static void xvid_correct_framerate(AVCodecContext *avctx)
}
}
-/**
- * Create the private context for the encoder.
- * All buffers are allocated, settings are loaded from the user,
- * and the encoder context created.
- *
- * @param avctx AVCodecContext pointer to context
- * @return Returns 0 on success, -1 on failure
- */
static av_cold int xvid_encode_init(AVCodecContext *avctx) {
int xerr, i;
int xvid_flags = avctx->flags;
@@ -619,15 +611,6 @@ static av_cold int xvid_encode_init(AVCodecContext *avctx) {
return 0;
}
-/**
- * Encode a single frame.
- *
- * @param avctx AVCodecContext pointer to context
- * @param frame Pointer to encoded frame buffer
- * @param buf_size Size of encoded frame buffer
- * @param data Pointer to AVFrame of unencoded frame
- * @return Returns 0 on success, -1 on failure
- */
static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *picture, int *got_packet)
{
@@ -748,13 +731,6 @@ static int xvid_encode_frame(AVCodecContext *avctx, AVPacket *pkt,
}
}
-/**
- * Destroy the private context for the encoder.
- * All buffers are freed, and the Xvid encoder context is destroyed.
- *
- * @param avctx AVCodecContext pointer to context
- * @return Returns 0, success guaranteed
- */
static av_cold int xvid_encode_close(AVCodecContext *avctx) {
struct xvid_context *x = avctx->priv_data;
@@ -772,9 +748,6 @@ static av_cold int xvid_encode_close(AVCodecContext *avctx) {
return 0;
}
-/**
- * Xvid codec definition for libavcodec.
- */
AVCodec ff_libxvid_encoder = {
.name = "libxvid",
.type = AVMEDIA_TYPE_VIDEO,