avformat: remove ff_remove_stream_group()
It's unused. Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
0a87bd02ee
commit
89215237dd
@ -115,14 +115,6 @@ void ff_remove_stream(AVFormatContext *s, AVStream *st)
|
|||||||
ff_free_stream(&s->streams[ --s->nb_streams ]);
|
ff_free_stream(&s->streams[ --s->nb_streams ]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ff_remove_stream_group(AVFormatContext *s, AVStreamGroup *stg)
|
|
||||||
{
|
|
||||||
av_assert0(s->nb_stream_groups > 0);
|
|
||||||
av_assert0(s->stream_groups[ s->nb_stream_groups - 1 ] == stg);
|
|
||||||
|
|
||||||
ff_free_stream_group(&s->stream_groups[ --s->nb_stream_groups ]);
|
|
||||||
}
|
|
||||||
|
|
||||||
/* XXX: suppress the packet queue */
|
/* XXX: suppress the packet queue */
|
||||||
void ff_flush_packet_queue(AVFormatContext *s)
|
void ff_flush_packet_queue(AVFormatContext *s)
|
||||||
{
|
{
|
||||||
|
@ -635,11 +635,6 @@ void ff_remove_stream(AVFormatContext *s, AVStream *st);
|
|||||||
* is not yet attached to an AVFormatContext.
|
* is not yet attached to an AVFormatContext.
|
||||||
*/
|
*/
|
||||||
void ff_free_stream_group(AVStreamGroup **pstg);
|
void ff_free_stream_group(AVStreamGroup **pstg);
|
||||||
/**
|
|
||||||
* Remove a stream group from its AVFormatContext and free it.
|
|
||||||
* The group must be the last stream of the AVFormatContext.
|
|
||||||
*/
|
|
||||||
void ff_remove_stream_group(AVFormatContext *s, AVStreamGroup *stg);
|
|
||||||
|
|
||||||
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);
|
unsigned int ff_codec_get_tag(const AVCodecTag *tags, enum AVCodecID id);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user