|
@@ -841,6 +841,15 @@ int ff_stream_add_bitstream_filter(AVStream *st, const char *name, const char *a
|
|
|
*/
|
|
|
int ff_stream_encode_params_copy(AVStream *dst, const AVStream *src);
|
|
|
|
|
|
+/**
|
|
|
+ * 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);
|
|
|
+
|
|
|
/**
|
|
|
* Wrap ffurl_move() and log if error happens.
|
|
|
*
|