mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
6afbda6ce8
commit
124a433d15
|
@ -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)
|
||||
|
@ -284,16 +294,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