summaryrefslogtreecommitdiff
path: root/libavformat/mp3.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2007-05-20 15:11:55 +0000
committerAurelien Jacobs <aurel@gnuage.org>2007-05-20 15:11:55 +0000
commitca6e50afc13acdd764527c0fcfe13d1ea90b4d98 (patch)
treef6c35d6858088b592a39fbf2cf56c61688c87322 /libavformat/mp3.c
parent4bd8e17c8d371dc05af63b15c11342e40184df61 (diff)
add a ff_ prefix to some mpegaudio funcs
Originally committed as revision 9081 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mp3.c')
-rw-r--r--libavformat/mp3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mp3.c b/libavformat/mp3.c
index 424d58896a..6f1ab22441 100644
--- a/libavformat/mp3.c
+++ b/libavformat/mp3.c
@@ -264,7 +264,7 @@ static int mp3_read_probe(AVProbeData *p)
for(frames = 0; buf2 < end; frames++) {
header = (buf2[0] << 24) | (buf2[1] << 16) | (buf2[2] << 8) | buf2[3];
- fsize = mpa_decode_header(&avctx, header, &sample_rate);
+ fsize = ff_mpa_decode_header(&avctx, header, &sample_rate);
if(fsize < 0)
break;
buf2 += fsize;