[FFmpeg-cvslog] tscc: remove some pointless comments and empty lines.

Anton Khirnov git at videolan.org
Mon Jan 14 15:50:57 CET 2013


ffmpeg | branch: master | Anton Khirnov <anton at khirnov.net> | Tue Nov 20 07:14:51 2012 +0100| [a4a26f518856fabd87679064b21e217d67031609] | committer: Anton Khirnov

tscc: remove some pointless comments and empty lines.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=a4a26f518856fabd87679064b21e217d67031609
---

 libavcodec/tscc.c |   23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/libavcodec/tscc.c b/libavcodec/tscc.c
index d9e51ad..0b3c7f1 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;



More information about the ffmpeg-cvslog mailing list