From 80769fb73f20829cd2c1a0e8e56d41204b487049 Mon Sep 17 00:00:00 2001 From: Aurelien Jacobs Date: Wed, 21 Jul 2010 21:35:44 +0000 Subject: rename get_line to ff_get_line Originally committed as revision 24398 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavformat/assdec.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libavformat/assdec.c') diff --git a/libavformat/assdec.c b/libavformat/assdec.c index 676fb39d6c..0fc9e8a772 100644 --- a/libavformat/assdec.c +++ b/libavformat/assdec.c @@ -30,7 +30,7 @@ typedef struct ASSContext{ unsigned int event_index; }ASSContext; -static void get_line(ByteIOContext *s, char *buf, int maxlen) +static void ff_get_line(ByteIOContext *s, char *buf, int maxlen) { int i = 0; char c; @@ -108,7 +108,7 @@ static int read_header(AVFormatContext *s, AVFormatParameters *ap) while(!url_feof(pb)){ uint8_t line[MAX_LINESIZE]; - get_line(pb, line, sizeof(line)); + ff_get_line(pb, line, sizeof(line)); if(!memcmp(line, "[Events]", 8)) header_remaining= 2; -- cgit v1.2.3