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:
authorDerek Buitenhuis <derek.buitenhuis@gmail.com>2015-11-22 20:19:10 +0300
committerDerek Buitenhuis <derek.buitenhuis@gmail.com>2015-11-22 20:19:10 +0300
commitad317c94c5fad00f97881263647e316344f0a81e (patch)
tree5a505dbfe80d7d795004c16a519baeb3457f8e0c /libavformat/replaygain.c
parent2bf93dfd96549777701a2031c23dac2cdb7257ee (diff)
parent7f4ec4364bc4a73036660c1c6a3c4801db524e9e (diff)
Merge commit '7f4ec4364bc4a73036660c1c6a3c4801db524e9e'
* commit '7f4ec4364bc4a73036660c1c6a3c4801db524e9e': avformat: expose av_stream_new_side_data helper Conflicts: libavformat/internal.h Merged-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
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 807f851542..707d3cd4f1 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);