summaryrefslogtreecommitdiff
path: root/libavcodec/tscc.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-11-20 07:14:51 +0100
committerAnton Khirnov <anton@khirnov.net>2013-01-14 11:39:42 +0100
commita4a26f518856fabd87679064b21e217d67031609 (patch)
treed2b1ca080574649db3c40faf5e23dc888c0dd5e2 /libavcodec/tscc.c
parentac1e93f555aad54e5a73cf12774c07af59c1d9f1 (diff)
tscc: remove some pointless comments and empty lines.
Diffstat (limited to 'libavcodec/tscc.c')
-rw-r--r--libavcodec/tscc.c23
1 files changed, 0 insertions, 23 deletions
diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c
index d9e51ad131..0b3c7f1a60 100644
--- a/libavcodec/tscc.c
+++ b/libavcodec/tscc.c
@@ -44,10 +44,6 @@
#include <zlib.h>
-
-/*
- * Decoder context
- */
typedef struct TsccContext {
AVCodecContext *avctx;
@@ -66,11 +62,6 @@ typedef struct TsccContext {
uint32_t pal[256];
} CamtasiaContext;
-/*
- *
- * Decode a frame
- *
- */
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
AVPacket *avpkt)
{
@@ -132,13 +123,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
return buf_size;
}
-
-
-/*
- *
- * Init tscc decoder
- *
- */
static av_cold int decode_init(AVCodecContext *avctx)
{
CamtasiaContext * const c = avctx->priv_data;
@@ -184,13 +168,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
return 0;
}
-
-
-/*
- *
- * Uninit tscc decoder
- *
- */
static av_cold int decode_end(AVCodecContext *avctx)
{
CamtasiaContext * const c = avctx->priv_data;