summaryrefslogtreecommitdiff
path: root/libavcodec/lclenc.c
diff options
context:
space:
mode:
authorDiego Biurrun <diego@biurrun.de>2016-02-16 18:02:14 +0100
committerDiego Biurrun <diego@biurrun.de>2016-02-18 15:35:43 +0100
commit6b96d2dcdaa60d7919d710432c6ca204b7fab0ab (patch)
tree6cc63c312eef7af511a99ad11f7809458115b3d8 /libavcodec/lclenc.c
parent29c2d06d67724e994980045afa055c6c34611b30 (diff)
cosmetics: Drop particularly redundant silly comments
Diffstat (limited to 'libavcodec/lclenc.c')
-rw-r--r--libavcodec/lclenc.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/lclenc.c b/libavcodec/lclenc.c
index e2fc554a2f..2e00807b88 100644
--- a/libavcodec/lclenc.c
+++ b/libavcodec/lclenc.c
@@ -48,9 +48,6 @@
#include <zlib.h>
-/*
- * Decoder context
- */
typedef struct LclEncContext {
AVCodecContext *avctx;
@@ -64,11 +61,6 @@ typedef struct LclEncContext {
z_stream zstream;
} LclEncContext;
-/*
- *
- * Encode a frame
- *
- */
static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
const AVFrame *pict, int *got_packet)
{
@@ -119,11 +111,6 @@ static int encode_frame(AVCodecContext *avctx, AVPacket *pkt,
return 0;
}
-/*
- *
- * Init lcl encoder
- *
- */
static av_cold int encode_init(AVCodecContext *avctx)
{
LclEncContext *c = avctx->priv_data;
@@ -172,11 +159,6 @@ FF_ENABLE_DEPRECATION_WARNINGS
return 0;
}
-/*
- *
- * Uninit lcl encoder
- *
- */
static av_cold int encode_end(AVCodecContext *avctx)
{
LclEncContext *c = avctx->priv_data;