diff options
author | Derek Buitenhuis | 2015-11-22 17:19:10 +0000 |
---|---|---|
committer | Derek Buitenhuis | 2015-11-22 17:19:10 +0000 |
commit | ad317c94c5fad00f97881263647e316344f0a81e (patch) | |
tree | 5a505dbfe80d7d795004c16a519baeb3457f8e0c /libavformat/replaygain.c | |
parent | 2bf93dfd96549777701a2031c23dac2cdb7257ee (diff) | |
parent | 7f4ec4364bc4a73036660c1c6a3c4801db524e9e (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.c | 2 |
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); |