diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2019-12-08 00:20:11 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2019-12-10 16:09:14 +0100 |
commit | a0ae4b7df9156edfa66804e1cd012c4ecc91db4f (patch) | |
tree | 7edae5a37a2f5e337a69e2e56ef97ae3c069926c /libavformat/dashdec.c | |
parent | 67d4940a7795aa3afc8d1e624de33b030e0be51e (diff) | |
download | ffmpeg-a0ae4b7df9156edfa66804e1cd012c4ecc91db4f.tar.gz |
Remove redundant ;
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavformat/dashdec.c')
-rw-r--r-- | libavformat/dashdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/dashdec.c b/libavformat/dashdec.c index d001c5b76d..72ba9605f0 100644 --- a/libavformat/dashdec.c +++ b/libavformat/dashdec.c @@ -1934,7 +1934,7 @@ static int reopen_demux_for_component(AVFormatContext *s, struct representation goto fail; pls->ctx->flags = AVFMT_FLAG_CUSTOM_IO; - pls->ctx->probesize = s->probesize > 0 ? s->probesize : 1024 * 4;; + pls->ctx->probesize = s->probesize > 0 ? s->probesize : 1024 * 4; pls->ctx->max_analyze_duration = s->max_analyze_duration > 0 ? s->max_analyze_duration : 4 * AV_TIME_BASE; ret = av_probe_input_buffer(&pls->pb, &in_fmt, "", NULL, 0, 0); if (ret < 0) { |