1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-11-23 21:54:53 +02:00

tscc: remove some pointless comments and empty lines.

This commit is contained in:
Anton Khirnov
2012-11-20 07:14:51 +01:00
parent ac1e93f555
commit a4a26f5188

View File

@@ -44,10 +44,6 @@
#include <zlib.h> #include <zlib.h>
/*
* Decoder context
*/
typedef struct TsccContext { typedef struct TsccContext {
AVCodecContext *avctx; AVCodecContext *avctx;
@@ -66,11 +62,6 @@ typedef struct TsccContext {
uint32_t pal[256]; uint32_t pal[256];
} CamtasiaContext; } CamtasiaContext;
/*
*
* Decode a frame
*
*/
static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame, static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
AVPacket *avpkt) AVPacket *avpkt)
{ {
@@ -132,13 +123,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
return buf_size; return buf_size;
} }
/*
*
* Init tscc decoder
*
*/
static av_cold int decode_init(AVCodecContext *avctx) static av_cold int decode_init(AVCodecContext *avctx)
{ {
CamtasiaContext * const c = avctx->priv_data; CamtasiaContext * const c = avctx->priv_data;
@@ -184,13 +168,6 @@ static av_cold int decode_init(AVCodecContext *avctx)
return 0; return 0;
} }
/*
*
* Uninit tscc decoder
*
*/
static av_cold int decode_end(AVCodecContext *avctx) static av_cold int decode_end(AVCodecContext *avctx)
{ {
CamtasiaContext * const c = avctx->priv_data; CamtasiaContext * const c = avctx->priv_data;