summaryrefslogtreecommitdiff
path: root/libavformat/mux.h
diff options
context:
space:
mode:
authorPierre-Anthony Lemieux <pal@palemieux.com>2022-08-06 16:35:19 -0700
committerAndreas Rheinhardt <andreas.rheinhardt@outlook.com>2022-08-12 18:54:19 +0200
commitf2403d1530aaf0b1a2f3833aaa6917e02ce147ac (patch)
treedb4135866f68ef61f194ef2d2b01fb188e185fb9 /libavformat/mux.h
parent7158f1e64d9b76afea78537a35c465447df0cff8 (diff)
avformat: refactor ff_stream_encode_params_copy() to stream_params_copy()
Addresses http://ffmpeg.org/pipermail/ffmpeg-devel/2022-August/299726.html Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'libavformat/mux.h')
-rw-r--r--libavformat/mux.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/libavformat/mux.h b/libavformat/mux.h
index c01da82194..1bfcaf795f 100644
--- a/libavformat/mux.h
+++ b/libavformat/mux.h
@@ -114,15 +114,6 @@ int ff_format_shift_data(AVFormatContext *s, int64_t read_start, int shift_size)
int ff_format_output_open(AVFormatContext *s, const char *url, AVDictionary **options);
/**
- * Copy encoding parameters 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_encode_params_copy(AVStream *dst, const AVStream *src);
-
-/**
* Parse creation_time in AVFormatContext metadata if exists and warn if the
* parsing fails.
*