summaryrefslogtreecommitdiff
path: root/libavfilter
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2012-06-29 11:28:34 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-06-29 11:28:34 +0200
commitbe4ffb28b3b5b5c612114be7550264e98ed149e5 (patch)
treed478be751d2cf5967d0e5501d688ee3cab74a2f5 /libavfilter
parentc83ed18d45009fc0363d44d4376e0fb490de970b (diff)
vf_ass: fix table name to refer to correct lib.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavfilter')
-rw-r--r--libavfilter/vf_ass.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavfilter/vf_ass.c b/libavfilter/vf_ass.c
index 81dc77383d..e7f2fe1fce 100644
--- a/libavfilter/vf_ass.c
+++ b/libavfilter/vf_ass.c
@@ -60,7 +60,7 @@ static const AVOption ass_options[] = {
AVFILTER_DEFINE_CLASS(ass);
/* libass supports a log level ranging from 0 to 7 */
-int ass_libav_log_level_map[] = {
+int ass_libavfilter_log_level_map[] = {
AV_LOG_QUIET, /* 0 */
AV_LOG_PANIC, /* 1 */
AV_LOG_FATAL, /* 2 */
@@ -73,7 +73,7 @@ int ass_libav_log_level_map[] = {
static void ass_log(int ass_level, const char *fmt, va_list args, void *ctx)
{
- int level = ass_libav_log_level_map[ass_level];
+ int level = ass_libavfilter_log_level_map[ass_level];
av_vlog(ctx, level, fmt, args);
av_log(ctx, level, "\n");