]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/smacker.c
lavc: add JNI support
[ffmpeg] / libavcodec / smacker.c
index 4014e8d04c1ed2adb15e434344515ee98d275ae2..f4fc16c42c016bb042d7421ef74661ef408ebdf7 100644 (file)
@@ -43,9 +43,7 @@
 #define SMKTREE_BITS 9
 #define SMK_NODE 0x80000000
 
-/*
- * Decoder context
- */
+
 typedef struct SmackVContext {
     AVCodecContext *avctx;
     AVFrame *pic;
@@ -549,12 +547,6 @@ static int decode_frame(AVCodecContext *avctx, void *data, int *got_frame,
 }
 
 
-
-/*
- *
- * Uninit smacker decoder
- *
- */
 static av_cold int decode_end(AVCodecContext *avctx)
 {
     SmackVContext * const smk = avctx->priv_data;
@@ -570,11 +562,6 @@ static av_cold int decode_end(AVCodecContext *avctx)
 }
 
 
-/*
- *
- * Init smacker decoder
- *
- */
 static av_cold int decode_init(AVCodecContext *avctx)
 {
     SmackVContext * const c = avctx->priv_data;