summaryrefslogtreecommitdiff
path: root/libavcodec/lcldec.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/lcldec.c
parent29c2d06d67724e994980045afa055c6c34611b30 (diff)
cosmetics: Drop particularly redundant silly comments
Diffstat (limited to 'libavcodec/lcldec.c')
-rw-r--r--libavcodec/lcldec.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/libavcodec/lcldec.c b/libavcodec/lcldec.c
index 30eca62157..ba608f908d 100644
--- a/libavcodec/lcldec.c
+++ b/libavcodec/lcldec.c
@@ -50,9 +50,6 @@
#include <zlib.h>
#endif
-/*
- * Decoder context
- */
typedef struct LclDecContext {
// Image type
int imgtype;
@@ -150,11 +147,6 @@ static int zlib_decomp(AVCodecContext *avctx, const uint8_t *src, int src_len, i
#endif
-/*
- *
- * Decode a frame
- *
- */
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPacket *avpkt)
{
AVFrame *frame = data;
@@ -458,11 +450,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, AVPac
return buf_size;
}
-/*
- *
- * Init lcl decoder
- *
- */
static av_cold int decode_init(AVCodecContext *avctx)
{
LclDecContext * const c = avctx->priv_data;
@@ -606,11 +593,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
return 0;
}
-/*
- *
- * Uninit lcl decoder
- *
- */
static av_cold int decode_end(AVCodecContext *avctx)
{
LclDecContext * const c = avctx->priv_data;