diff options
author | James Almer <jamrial@gmail.com> | 2023-12-20 00:17:02 -0300 |
---|---|---|
committer | James Almer <jamrial@gmail.com> | 2023-12-20 00:17:59 -0300 |
commit | 89215237dd6ac64f94e14aa20a000e0440a00aac (patch) | |
tree | a8913fb590ff121e629574b35a4a433d07e66ad6 /libavformat/internal.h | |
parent | 0a87bd02ee6c22384961c68ca4a97f9981043885 (diff) | |
download | ffmpeg-89215237dd6ac64f94e14aa20a000e0440a00aac.tar.gz |
avformat: remove ff_remove_stream_group()
It's unused.
Signed-off-by: James Almer <jamrial@gmail.com>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r-- | libavformat/internal.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h index c6181683ef..f93832b3c4 100644 --- a/libavformat/internal.h +++ b/libavformat/internal.h @@ -635,11 +635,6 @@ void ff_remove_stream(AVFormatContext *s, AVStream *st); * is not yet attached to an AVFormatContext. */ 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); |