mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-13 02:34:54 +00:00
rename get_line to ff_get_line
Originally committed as revision 24398 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
b8b231b5dc
commit
80769fb73f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user