From 1a40491ef212869077278b46f74ee92a66809d20 Mon Sep 17 00:00:00 2001 From: Daniel Verkamp Date: Mon, 22 Jun 2009 23:09:34 +0000 Subject: Add ff_ prefixes to exported symbols in libavformat/riff.h. patch by Daniel Verkamp, aniel drv nu Originally committed as revision 19254 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/mmf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/mmf.c') diff --git a/libavformat/mmf.c b/libavformat/mmf.c index ab2a9962ce..75afa0e31c 100644 --- a/libavformat/mmf.c +++ b/libavformat/mmf.c @@ -72,7 +72,7 @@ static int mmf_write_header(AVFormatContext *s) put_tag(pb, "MMMD"); put_be32(pb, 0); - pos = start_tag(pb, "CNTI"); + pos = ff_start_tag(pb, "CNTI"); put_byte(pb, 0); /* class */ put_byte(pb, 0); /* type */ put_byte(pb, 0); /* code type */ @@ -97,7 +97,7 @@ static int mmf_write_header(AVFormatContext *s) /* Will be filled on close */ put_buffer(pb, "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00", 16); - mmf->awapos = start_tag(pb, "Awa\x01"); + mmf->awapos = ff_start_tag(pb, "Awa\x01"); av_set_pts_info(s->streams[0], 64, 1, s->streams[0]->codec->sample_rate); -- cgit v1.2.3