Message ID | 1632964440-24060-4-git-send-email-lance.lmwang@gmail.com |
---|---|
State | Accepted |
Commit | b4d665bf69b7470ada5213128ec4c2a39a3e4fde |
Headers | show |
Series | [FFmpeg-devel,1/5] avfilter/vf_showinfo: minor adjustment for the dump format of ROI | expand |
Context | Check | Description |
---|---|---|
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
andriy/make_ppc | success | Make finished |
andriy/make_fate_ppc | success | Make fate finished |
diff --git a/libavformat/libsrt.c b/libavformat/libsrt.c index 5aef0e7..c6308d1 100644 --- a/libavformat/libsrt.c +++ b/libavformat/libsrt.c @@ -530,7 +530,7 @@ static int libsrt_open(URLContext *h, const char *uri, int flags) p = strchr(uri, '?'); if (p) { if (av_find_info_tag(buf, sizeof(buf), "maxbw", p)) { - s->maxbw = strtoll(buf, NULL, 0); + s->maxbw = strtoll(buf, NULL, 10); } if (av_find_info_tag(buf, sizeof(buf), "pbkeylen", p)) { s->pbkeylen = strtol(buf, NULL, 10);