This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
w64dec: fix end position of summarylist guid
Noticed-by: James Almer Signed-off-by: Paul B Mahol <onemda@gmail.com>
tags/n2.1
Paul B Mahol
12 years ago
parent
79b70e47a4
commit
3e36dc8626
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/wavdec.c
+ 1
- 1
libavformat/wavdec.c
View File
@@ -674,7 +674,7 @@ static int w64_read_header(AVFormatContext *s)
uint32_t count, chunk_size, i;
start = avio_tell(pb);
end = start + size;
end = start +
FFALIGN(
size
, INT64_C(8)) - 24
;
count = avio_rl32(pb);
for (i = 0; i < count; i++) {
Write
Preview
Loading…
Cancel
Save