[FFmpeg-cvslog] avformat/wc3movie: Move wc3_read_close() up
Michael Niedermayer
git at videolan.org
Sun Sep 20 19:04:24 EEST 2020
ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Sun Jul 19 15:20:14 2020 +0200| [0c635f2ce6c18d448e77605ee83b55bd8250f812] | committer: Michael Niedermayer
avformat/wc3movie: Move wc3_read_close() up
Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>
> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=0c635f2ce6c18d448e77605ee83b55bd8250f812
---
libavformat/wc3movie.c | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/libavformat/wc3movie.c b/libavformat/wc3movie.c
index 6577007777..c59b5bf6cc 100644
--- a/libavformat/wc3movie.c
+++ b/libavformat/wc3movie.c
@@ -73,6 +73,16 @@ typedef struct Wc3DemuxContext {
} Wc3DemuxContext;
+static int wc3_read_close(AVFormatContext *s)
+{
+ Wc3DemuxContext *wc3 = s->priv_data;
+
+ if (wc3->vpkt.size > 0)
+ av_packet_unref(&wc3->vpkt);
+
+ return 0;
+}
+
static int wc3_probe(const AVProbeData *p)
{
if (p->buf_size < 12)
@@ -286,16 +296,6 @@ static int wc3_read_packet(AVFormatContext *s,
return ret;
}
-static int wc3_read_close(AVFormatContext *s)
-{
- Wc3DemuxContext *wc3 = s->priv_data;
-
- if (wc3->vpkt.size > 0)
- av_packet_unref(&wc3->vpkt);
-
- return 0;
-}
-
AVInputFormat ff_wc3_demuxer = {
.name = "wc3movie",
.long_name = NULL_IF_CONFIG_SMALL("Wing Commander III movie"),
More information about the ffmpeg-cvslog
mailing list