[vlc-commits] MKV: pass the correct extra_data offset in Atrac3 case

Jean-Baptiste Kempf git at videolan.org
Fri Apr 13 14:52:41 CEST 2012


vlc | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Fri Apr 13 13:02:08 2012 +0200| [9f74b45b3835987039051be46674167886c6e43b] | committer: Jean-Baptiste Kempf

MKV: pass the correct extra_data offset in Atrac3 case

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=9f74b45b3835987039051be46674167886c6e43b
---

 modules/demux/mkv/matroska_segment.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/modules/demux/mkv/matroska_segment.cpp b/modules/demux/mkv/matroska_segment.cpp
index 8c5cd0c..fe22f6d 100644
--- a/modules/demux/mkv/matroska_segment.cpp
+++ b/modules/demux/mkv/matroska_segment.cpp
@@ -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" ) )
         {



More information about the vlc-commits mailing list