summaryrefslogtreecommitdiff
path: root/libavformat/mmf.c
diff options
context:
space:
mode:
authorDaniel Verkamp <daniel@drv.nu>2009-06-22 23:09:34 +0000
committerDiego Biurrun <diego@biurrun.de>2009-06-22 23:09:34 +0000
commit1a40491ef212869077278b46f74ee92a66809d20 (patch)
tree73badafecd3120080515ba6391fe8fe39b1435a6 /libavformat/mmf.c
parent2795e3573d9407aca8060bdebaeb2119d19587c8 (diff)
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
Diffstat (limited to 'libavformat/mmf.c')
-rw-r--r--libavformat/mmf.c4
1 files changed, 2 insertions, 2 deletions
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);