]> git.sesse.net Git - vlc/commitdiff
Fixed support of mov/mp4 with fixed video samples size.
authorLaurent Aimar <fenrir@videolan.org>
Wed, 26 Oct 2011 20:56:45 +0000 (22:56 +0200)
committerLaurent Aimar <fenrir@videolan.org>
Wed, 26 Oct 2011 21:04:06 +0000 (23:04 +0200)
It fixes #3531 (DV inside mov)

modules/demux/mp4/mp4.c

index bec5879bc8c07b3f9b1f6aed6facefa0733efd47..c04e40048c7bef58932eba192271ef01e2a37899 100644 (file)
@@ -2647,7 +2647,7 @@ static uint64_t MP4_TrackGetPos( mp4_track_t *p_track )
         MP4_Box_data_sample_soun_t *p_soun =
             p_track->p_sample->data.p_sample_soun;
 
-        if( p_soun->i_qt_version == 0 )
+        if( p_track->fmt.i_cat != AUDIO_ES || p_soun->i_qt_version == 0 )
         {
             i_pos += ( p_track->i_sample -
                        p_track->chunk[p_track->i_chunk].i_sample_first ) *