aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2024-10-13 08:54:01 +0200
committerAnton Khirnov <anton@khirnov.net>2024-10-16 16:29:12 +0200
commitde49452bc122077ed64b48bcfc475cf53e3be78b (patch)
treeefa6ebc6ff6b7ab3916f574052e2475bb1fcd213
parent1f7268a44d3334d4605d4bbb865e1ecabef9993a (diff)
downloadffmpeg-de49452bc122077ed64b48bcfc475cf53e3be78b.tar.gz
lavf/internal: remove a prototype for non-existent function
ff_stream_side_data_copy() has been gone since 5432d2aacad5fa7420fe2d9369ed061d521e92d6
-rw-r--r--libavformat/internal.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index 6c026f08a0..489a7cad08 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -661,15 +661,6 @@ int ff_is_intra_only(enum AVCodecID id);
enum AVCodecID ff_get_pcm_codec_id(int bps, int flt, int be, int sflags);
/**
- * Copy side data from source to destination stream
- *
- * @param dst pointer to destination AVStream
- * @param src pointer to source AVStream
- * @return >=0 on success, AVERROR code on error
- */
-int ff_stream_side_data_copy(AVStream *dst, const AVStream *src);
-
-/**
* Create a new stream and copy to it all parameters from a source stream, with
* the exception of the index field, which is set when the new stream is
* created.