[FFmpeg-soc] [soc]: r1495 - qcelp/qcelpdec.c

reynaldo subversion at mplayerhq.hu
Sun Dec 2 16:29:31 CET 2007


Author: reynaldo
Date: Sun Dec  2 16:29:30 2007
New Revision: 1495

Log:
Gets rid of now-uneeded custom close function

Modified:
   qcelp/qcelpdec.c

Modified: qcelp/qcelpdec.c
==============================================================================
--- qcelp/qcelpdec.c	(original)
+++ qcelp/qcelpdec.c	Sun Dec  2 16:29:30 2007
@@ -74,11 +74,6 @@ static int qcelp_decode_init(AVCodecCont
     return 0;
 }
 
-static int qcelp_decode_close(AVCodecContext *avctx)
-{
-    return 0;
-}
-
 /**
  * Decodes the 10 quantized LSP frequencies from the LSPV/LSP
  * transsmision codes of any frame rate.
@@ -946,7 +941,6 @@ AVCodec qcelp_decoder =
     .type   = CODEC_TYPE_AUDIO,
     .id     = CODEC_ID_QCELP,
     .init   = qcelp_decode_init,
-    .close  = qcelp_decode_close,
     .decode = qcelp_decode_frame,
     .priv_data_size = sizeof(QCELPContext),
 };



More information about the FFmpeg-soc mailing list