mirror of https://git.ffmpeg.org/ffmpeg.git
avformat/matroskadec: Fix declaration-after-statement warnings
Reviewed-by: Michael Niedermayer <michael@niedermayer.cc>
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
(cherry picked from commit 37b5f4a1f6
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
7058f9a3d6
commit
f2a4a49afb
|
@ -4197,14 +4197,13 @@ static int64_t webm_dash_manifest_compute_bandwidth(AVFormatContext *s, int64_t
|
|||
int64_t pre_bytes, pre_ns;
|
||||
double pre_sec, prebuffer, bits_per_second;
|
||||
CueDesc desc_beg = get_cue_desc(s, time_ns, cues_start);
|
||||
// Start with the first Cue.
|
||||
CueDesc desc_end = desc_beg;
|
||||
|
||||
if (time_ns > INT64_MAX - prebuffer_ns)
|
||||
return -1;
|
||||
prebuffered_ns = time_ns + prebuffer_ns;
|
||||
|
||||
// Start with the first Cue.
|
||||
CueDesc desc_end = desc_beg;
|
||||
|
||||
// Figure out how much data we have downloaded for the prebuffer. This will
|
||||
// be used later to adjust the bits per sample to try.
|
||||
while (desc_end.start_time_ns != -1 && desc_end.end_time_ns < prebuffered_ns) {
|
||||
|
|
Loading…
Reference in New Issue