[FFmpeg-cvslog] r24398 - trunk/libavformat/assdec.c
aurel
subversion
Wed Jul 21 23:35:44 CEST 2010
Author: aurel
Date: Wed Jul 21 23:35:44 2010
New Revision: 24398
Log:
rename get_line to ff_get_line
Modified:
trunk/libavformat/assdec.c
Modified: trunk/libavformat/assdec.c
==============================================================================
--- trunk/libavformat/assdec.c Wed Jul 21 22:51:01 2010 (r24397)
+++ trunk/libavformat/assdec.c Wed Jul 21 23:35:44 2010 (r24398)
@@ -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 *
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;
More information about the ffmpeg-cvslog
mailing list