Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClément Bœsch <ubitux@gmail.com>2012-09-16 05:05:01 +0400
committerClément Bœsch <ubitux@gmail.com>2012-09-16 05:05:01 +0400
commitd214e5cfb414ea2b8cbcf3c4300288b130388d4a (patch)
tree666d75490a8c82dff278030986dabf20194af90c /libavcodec/srtenc.c
parent74434d3bfe595f848b853d2d1b731aa4af8217fe (diff)
lavc/ass_split: add ff_ prefix to ass_style_get().
Diffstat (limited to 'libavcodec/srtenc.c')
-rw-r--r--libavcodec/srtenc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/srtenc.c b/libavcodec/srtenc.c
index dfc4e6c47c..fa85ef543b 100644
--- a/libavcodec/srtenc.c
+++ b/libavcodec/srtenc.c
@@ -96,7 +96,7 @@ static void srt_stack_push_pop(SRTContext *s, const char c, int close)
static void srt_style_apply(SRTContext *s, const char *style)
{
- ASSStyle *st = ass_style_get(s->ass_ctx, style);
+ ASSStyle *st = ff_ass_style_get(s->ass_ctx, style);
if (st) {
int c = st->primary_color & 0xFFFFFF;
if (st->font_name && strcmp(st->font_name, ASS_DEFAULT_FONT) ||