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
avformat/avidec: Increase dshow_block_align use threshold by 1
Fixes 00.avi Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.6
Gabor Nagy
Michael Niedermayer
10 years ago
parent
1397cb002d
commit
ae8168074e
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/avidec.c
+ 1
- 1
libavformat/avidec.c
View File
@@ -126,7 +126,7 @@ static inline int get_duration(AVIStream *ast, int len)
{
if (ast->sample_size)
return len;
else if (ast->dshow_block_align)
else if (ast->dshow_block_align
> 1
)
return (len + ast->dshow_block_align - 1) / ast->dshow_block_align;
else
return 1;
Write
Preview
Loading…
Cancel
Save