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/wtvenc.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/wtvenc.c')
-rw-r--r-- | libavformat/wtvenc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/wtvenc.c b/libavformat/wtvenc.c index 634545d459..e8a2b72a72 100644 --- a/libavformat/wtvenc.c +++ b/libavformat/wtvenc.c @@ -265,12 +265,12 @@ static int write_stream_codec_info(AVFormatContext *s, AVStream *st) int hdr_size = 0; if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) { - g = get_codec_guid(st->codec->codec_id, ff_video_guids); + g = ff_get_codec_guid(st->codec->codec_id, ff_video_guids); media_type = &ff_mediatype_video; format_type = st->codec->codec_id == AV_CODEC_ID_MPEG2VIDEO ? &ff_format_mpeg2_video : &ff_format_videoinfo2; tags = ff_codec_bmp_tags; } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO) { - g = get_codec_guid(st->codec->codec_id, ff_codec_wav_guids); + g = ff_get_codec_guid(st->codec->codec_id, ff_codec_wav_guids); media_type = &ff_mediatype_audio; format_type = &ff_format_waveformatex; tags = ff_codec_wav_tags; |