avformat/wc3movie: Move wc3_read_close() up

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 0c635f2ce6)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2020-07-19 15:20:14 +02:00
parent fe15e22e61
commit 9b01de9145

View File

@ -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(AVProbeData *p)
{
if (p->buf_size < 12)
@ -290,16 +300,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"),