Группа :: Видео
Пакет: libquicktime
Главная Изменения Спек Патчи Загрузить Bugs and FR
Патч: libquicktime-0.9.7-alt-crashfix.patch
--- src/stbl.c 2002-12-15 03:51:59 +0200
+++ src/stbl.c 2005-08-23 11:04:50 +0300
@@ -114,7 +115,12 @@
{ quicktime_read_stss(file, &(stbl->stss)); }
else
if(quicktime_atom_is(&leaf_atom, "stsc"))
- { quicktime_read_stsc(file, &(stbl->stsc)); }
+ {
+ quicktime_read_stsc(file, &(stbl->stsc));
+ /* at least Minolta DimageZ3 pads stsc with zeroes
+ * so we need to jump to next atom explicitly */
+ quicktime_atom_skip(file, &leaf_atom);
+ }
else
if(quicktime_atom_is(&leaf_atom, "stsz"))
{ quicktime_read_stsz(file, &(stbl->stsz)); }