summaryrefslogtreecommitdiff
path: root/libavformat/internal.h
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2015-01-27 18:16:42 +0100
committerMichael Niedermayer <michaelni@gmx.at>2015-01-27 18:16:42 +0100
commit0bdcc27d9598254e79a80f1e016227778b428dbb (patch)
tree87c268fd30634dcb7323ebe0f9c2fcb54b3776f3 /libavformat/internal.h
parent62a82c66cd3f03e045867471c5edcc84b4d2b54e (diff)
parent4227e4fe7443733fb906f6fb6c265105e8269c74 (diff)
Merge commit '4227e4fe7443733fb906f6fb6c265105e8269c74'
* commit '4227e4fe7443733fb906f6fb6c265105e8269c74': lavf: add a convenience function for adding side data to a stream Conflicts: libavformat/internal.h libavformat/replaygain.c Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/internal.h')
-rw-r--r--libavformat/internal.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/internal.h b/libavformat/internal.h
index ce03dac3dd..d56644b8cf 100644
--- a/libavformat/internal.h
+++ b/libavformat/internal.h
@@ -391,6 +391,13 @@ static inline int ff_rename(const char *oldpath, const char *newpath, void *logc
}
/**
+ * Add new side data to a stream. If a side data of this type already exists, it
+ * is replaced.
+ */
+uint8_t *ff_stream_new_side_data(AVStream *st, enum AVPacketSideDataType type,
+ int size);
+
+/**
* Allocate extradata with additional FF_INPUT_BUFFER_PADDING_SIZE at end
* which is always set to 0.
*