mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-27 21:20:41 +00:00
cosmetics: Move asf_read_close() down to get rid of a forward declaration.
Originally committed as revision 10735 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
fe0b9a6464
commit
5d25d2a983
@ -878,21 +878,6 @@ static int asf_read_packet(AVFormatContext *s, AVPacket *pkt)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void asf_reset_header(AVFormatContext *s);
|
||||
|
||||
static int asf_read_close(AVFormatContext *s)
|
||||
{
|
||||
int i;
|
||||
|
||||
asf_reset_header(s);
|
||||
for(i=0;i<s->nb_streams;i++) {
|
||||
AVStream *st = s->streams[i];
|
||||
av_free(st->priv_data);
|
||||
av_free(st->codec->palctrl);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
// Added to support seeking after packets have been read
|
||||
// If information is not reset, read_packet fails due to
|
||||
// leftover information from previous reads
|
||||
@ -931,6 +916,19 @@ static void asf_reset_header(AVFormatContext *s)
|
||||
asf->asf_st= NULL;
|
||||
}
|
||||
|
||||
static int asf_read_close(AVFormatContext *s)
|
||||
{
|
||||
int i;
|
||||
|
||||
asf_reset_header(s);
|
||||
for(i=0;i<s->nb_streams;i++) {
|
||||
AVStream *st = s->streams[i];
|
||||
av_free(st->priv_data);
|
||||
av_free(st->codec->palctrl);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int64_t asf_read_pts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
|
||||
{
|
||||
ASFContext *asf = s->priv_data;
|
||||
|
Loading…
Reference in New Issue
Block a user