]> git.sesse.net Git - vlc/commitdiff
MKV: pass the correct extra_data offset in Atrac3 case
authorJean-Baptiste Kempf <jb@videolan.org>
Fri, 13 Apr 2012 11:02:08 +0000 (13:02 +0200)
committerJean-Baptiste Kempf <jb@videolan.org>
Fri, 13 Apr 2012 12:25:04 +0000 (14:25 +0200)
modules/demux/mkv/matroska_segment.cpp

index 8c5cd0c04a8e9878a99ed4f721fcf8bde3a06fae..fe22f6d6585b3c750d81bdbcb287409ff39f4ccb 100644 (file)
@@ -1261,8 +1261,8 @@ bool matroska_segment_c::Select( mtime_t i_start_time )
                 p_tk->fmt.i_codec = VLC_CODEC_ATRAC3;
             else if( !strcmp( p_tk->psz_codec, "A_REAL/28_8" ) )
                 p_tk->fmt.i_codec = VLC_CODEC_RA_288;
-            /* FIXME 14_4, RALF and SIPR */
-            fill_extra_data( p_tk, p_tk->fmt.i_codec == VLC_CODEC_RA_288 ? 0 : 0 /*78 - FIXME need to implement reading support for cook */ );
+            /* FIXME RALF and SIPR */
+            fill_extra_data( p_tk, p_tk->fmt.i_codec == VLC_CODEC_RA_288 ? 0 : 78);
         }
         else if( !strcmp( p_tk->psz_codec, "A_REAL/14_4" ) )
         {