mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-11-26 19:01:44 +02:00
avformat/wc3movie: Move wc3_read_close() up
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
b17e5c3416
commit
0c635f2ce6
@ -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"),
|
||||
|
Loading…
Reference in New Issue
Block a user