summaryrefslogtreecommitdiffstats
path: root/libavformat/sbgdec.c
diff options
context:
space:
mode:
authorNicolas George <nicolas.george@normalesup.org>2012-11-24 23:56:52 +0100
committerNicolas George <nicolas.george@normalesup.org>2012-11-24 23:56:52 +0100
commitca4872e8878dd87d6bf060e049ec7fbd2f0abbe4 (patch)
tree2af4b15326207b9701b3836c3ecfbe5f5a5769a4 /libavformat/sbgdec.c
parentd0802926511602cadf954ec8461cb2451ecb7f01 (diff)
downloadffmpeg-streaming-ca4872e8878dd87d6bf060e049ec7fbd2f0abbe4.zip
ffmpeg-streaming-ca4872e8878dd87d6bf060e049ec7fbd2f0abbe4.tar.gz
lavf/sbgdec: use proper constants for av_log().
Diffstat (limited to 'libavformat/sbgdec.c')
-rw-r--r--libavformat/sbgdec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libavformat/sbgdec.c b/libavformat/sbgdec.c
index c0987a1..30c3b49 100644
--- a/libavformat/sbgdec.c
+++ b/libavformat/sbgdec.c
@@ -946,7 +946,7 @@ static int expand_tseq(void *log, struct sbg_script *s, int *nb_ev_max,
struct sbg_script_event *ev;
if (tseq->lock++) {
- av_log(log, 16, "Recursion loop on \"%.*s\"\n",
+ av_log(log, AV_LOG_ERROR, "Recursion loop on \"%.*s\"\n",
tseq->name_len, tseq->name);
return AVERROR(EINVAL);
}
@@ -957,7 +957,7 @@ static int expand_tseq(void *log, struct sbg_script *s, int *nb_ev_max,
break;
}
if (i >= s->nb_def) {
- av_log(log, 16, "Tone-set \"%.*s\" not defined\n",
+ av_log(log, AV_LOG_ERROR, "Tone-set \"%.*s\" not defined\n",
tseq->name_len, tseq->name);
return AVERROR(EINVAL);
}
OpenPOWER on IntegriCloud