diff options
author | Tomas Härdin <tomas.hardin@codemill.se> | 2012-03-21 13:05:34 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2012-03-21 18:09:26 +0100 |
commit | 8d393ce3309fe90b01e79a62343a830650321c94 (patch) | |
tree | f65b8afc5869d029864ded9857bd63e3c790f221 /libavformat | |
parent | 3493390d4787089edd71cde7114c587a2bc134b8 (diff) | |
download | ffmpeg-8d393ce3309fe90b01e79a62343a830650321c94.tar.gz |
aiffdec: Fix SIGFPE on pcm_f32be
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/aiffdec.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavformat/aiffdec.c b/libavformat/aiffdec.c index d57ba005ff..1ee3726240 100644 --- a/libavformat/aiffdec.c +++ b/libavformat/aiffdec.c @@ -144,6 +144,7 @@ static unsigned int get_aiff_header(AVFormatContext *s, int size, aiff->block_duration = 160; break; default: + aiff->block_duration = 1; break; } size -= 4; |