[SCM] libav/experimental: remove useless close function

siretart at users.alioth.debian.org siretart at users.alioth.debian.org
Sun Jun 30 16:15:34 UTC 2013


The following commit has been merged in the experimental branch:
commit 4c638f0c7cf1060a9762bce19cb5d9172561093f
Author: Baptiste Coudurier <baptiste.coudurier at gmail.com>
Date:   Mon Feb 25 12:24:30 2008 +0000

    remove useless close function
    
    Originally committed as revision 12203 to svn://svn.ffmpeg.org/ffmpeg/trunk

diff --git a/libavformat/aiff.c b/libavformat/aiff.c
index a068ad3..c3a245e 100644
--- a/libavformat/aiff.c
+++ b/libavformat/aiff.c
@@ -414,11 +414,6 @@ static int aiff_read_packet(AVFormatContext *s,
     return 0;
 }
 
-static int aiff_read_close(AVFormatContext *s)
-{
-    return 0;
-}
-
 static int aiff_read_seek(AVFormatContext *s,
                           int stream_index, int64_t timestamp, int flags)
 {
@@ -433,7 +428,7 @@ AVInputFormat aiff_demuxer = {
     aiff_probe,
     aiff_read_header,
     aiff_read_packet,
-    aiff_read_close,
+    NULL,
     aiff_read_seek,
     .codec_tag= (const AVCodecTag*[]){codec_aiff_tags, 0},
 };

-- 
Libav/FFmpeg packaging



More information about the pkg-multimedia-commits mailing list