]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/cyuv.c
Add convenience macros for 5.0/5.1 back speaker configurations.
[ffmpeg] / libavcodec / cyuv.c
index d64f6df275603beac69ed6c6e2695aabb2cf769e..2b15814b31c66bde1f2e7d1e171be18d0a62474b 100644 (file)
@@ -24,7 +24,7 @@
  */
 
 /**
- * @file cyuv.c
+ * @file libavcodec/cyuv.c
  * Creative YUV (CYUV) Video Decoder.
  */
 
@@ -163,13 +163,6 @@ static int cyuv_decode_frame(AVCodecContext *avctx,
     return buf_size;
 }
 
-static av_cold int cyuv_decode_end(AVCodecContext *avctx)
-{
-/*    CyuvDecodeContext *s = avctx->priv_data;*/
-
-    return 0;
-}
-
 AVCodec cyuv_decoder = {
     "cyuv",
     CODEC_TYPE_VIDEO,
@@ -177,7 +170,7 @@ AVCodec cyuv_decoder = {
     sizeof(CyuvDecodeContext),
     cyuv_decode_init,
     NULL,
-    cyuv_decode_end,
+    NULL,
     cyuv_decode_frame,
     CODEC_CAP_DR1,
     NULL,