Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2014-04-17 23:45:39 +0400
committerMichael Niedermayer <michaelni@gmx.at>2014-04-17 23:45:58 +0400
commitd35efda21a146ad437e194cf124e3ca170bfc82e (patch)
tree20fac70dd33de4d86979fc2c897c88ea27c0e0dc /libavformat/replaygain.h
parent11d187b377be54de23f609592ce0f32d51ed9e6d (diff)
parentae43c10e36197000de2f3cc99ea35727ce98a796 (diff)
Merge commit 'ae43c10e36197000de2f3cc99ea35727ce98a796'
* commit 'ae43c10e36197000de2f3cc99ea35727ce98a796': replaygain: allow exporting already decoded replaygain values Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/replaygain.h')
-rw-r--r--libavformat/replaygain.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libavformat/replaygain.h b/libavformat/replaygain.h
index 15b0ebe2e5..ceacb21421 100644
--- a/libavformat/replaygain.h
+++ b/libavformat/replaygain.h
@@ -28,4 +28,11 @@
*/
int ff_replaygain_export(AVStream *st, AVDictionary *metadata);
+
+/**
+ * Export already decoded replaygain values as per-stream side data.
+ */
+int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp,
+ int32_t ag, uint32_t ap);
+
#endif /* AVFORMAT_REPLAYGAIN_H */