[FFmpeg-cvslog] r22432 - trunk/libavformat/ffmdec.c

benoit subversion
Wed Mar 10 15:26:15 CET 2010


Author: benoit
Date: Wed Mar 10 15:26:15 2010
New Revision: 22432

Log:
Fix ffm_close return type.

Modified:
   trunk/libavformat/ffmdec.c

Modified: trunk/libavformat/ffmdec.c
==============================================================================
--- trunk/libavformat/ffmdec.c	Wed Mar 10 14:17:50 2010	(r22431)
+++ trunk/libavformat/ffmdec.c	Wed Mar 10 15:26:15 2010	(r22432)
@@ -512,12 +512,14 @@ static int ffm_probe(AVProbeData *p)
     return 0;
 }
 
-static void ffm_close(AVFormatContext *s)
+static int ffm_close(AVFormatContext *s)
 {
     int i;
 
     for (i = 0; i < s->nb_streams; i++)
         av_freep(&s->streams[i]->codec->rc_eq);
+
+    return 0;
 }
 
 AVInputFormat ffm_demuxer = {



More information about the ffmpeg-cvslog mailing list