lavf: use avpriv_ prefix for ff_new_chapter().

It's used in libavdevice.
This commit is contained in:
Anton Khirnov
2011-10-17 08:58:50 +02:00
parent 68d3aec819
commit 1fa395e471
9 changed files with 11 additions and 11 deletions

View File

@@ -75,7 +75,7 @@ static AVChapter *read_chapter(AVFormatContext *s)
end = AV_NOPTS_VALUE;
}
return ff_new_chapter(s, s->nb_chapters, tb, start, end, NULL);
return avpriv_new_chapter(s, s->nb_chapters, tb, start, end, NULL);
}
static uint8_t *unescape(uint8_t *buf, int size)