diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 19:25:27 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-02-27 19:25:27 +0100 |
commit | 0a23129bfc6f14c30c25aafcbf45c4b1b0f728ee (patch) | |
tree | 12aa91b651a5250f2a70b6a0908057cfe85110b7 /libavformat/riffenc.c | |
parent | ae20682f6b0e8bb803bae2c82f4025642a9bba2e (diff) | |
download | ffmpeg-0a23129bfc6f14c30c25aafcbf45c4b1b0f728ee.tar.gz |
avformat: Add prefix to get_codec_guid()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/riffenc.c')
-rw-r--r-- | libavformat/riffenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/riffenc.c b/libavformat/riffenc.c index 5e858008f5..a629b8aaa8 100644 --- a/libavformat/riffenc.c +++ b/libavformat/riffenc.c @@ -178,7 +178,7 @@ int ff_put_wav_header(AVIOContext *pb, AVCodecContext *enc, int flags) avio_wl32(pb, write_channel_mask ? enc->channel_layout : 0); /* GUID + next 3 */ if (enc->codec_id == AV_CODEC_ID_EAC3) { - ff_put_guid(pb, get_codec_guid(enc->codec_id, ff_codec_wav_guids)); + ff_put_guid(pb, ff_get_codec_guid(enc->codec_id, ff_codec_wav_guids)); } else { avio_wl32(pb, enc->codec_tag); avio_wl32(pb, 0x00100000); @@ -326,7 +326,7 @@ void ff_put_guid(AVIOContext *s, const ff_asf_guid *g) avio_write(s, *g, sizeof(*g)); } -const ff_asf_guid *get_codec_guid(enum AVCodecID id, const AVCodecGuid *av_guid) +const ff_asf_guid *ff_get_codec_guid(enum AVCodecID id, const AVCodecGuid *av_guid) { int i; for (i = 0; av_guid[i].id != AV_CODEC_ID_NONE; i++) { |