summaryrefslogtreecommitdiff
path: root/libavformat/replaygain.c
diff options
context:
space:
mode:
authorJohn Stebbins <stebbins@jetheaddev.com>2015-11-05 09:49:02 -0800
committerAnton Khirnov <anton@khirnov.net>2015-11-18 11:36:27 +0100
commit7f4ec4364bc4a73036660c1c6a3c4801db524e9e (patch)
tree2958c6492f6be1c09363aa99d821355751d1594f /libavformat/replaygain.c
parent21ab6fd01b9107d7171fc1a77c2bfacff845a97a (diff)
avformat: expose av_stream_new_side_data helper
Signed-off-by: Anton Khirnov <anton@khirnov.net>
Diffstat (limited to 'libavformat/replaygain.c')
-rw-r--r--libavformat/replaygain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/replaygain.c b/libavformat/replaygain.c
index 98e7aad81b..3188b1503b 100644
--- a/libavformat/replaygain.c
+++ b/libavformat/replaygain.c
@@ -75,7 +75,7 @@ int ff_replaygain_export_raw(AVStream *st, int32_t tg, uint32_t tp,
if (tg == INT32_MIN && ag == INT32_MIN)
return 0;
- replaygain = (AVReplayGain*)ff_stream_new_side_data(st, AV_PKT_DATA_REPLAYGAIN,
+ replaygain = (AVReplayGain*)av_stream_new_side_data(st, AV_PKT_DATA_REPLAYGAIN,
sizeof(*replaygain));
if (!replaygain)
return AVERROR(ENOMEM);