Commit e8841760 authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Revert "Correctly detect alac in mp4 properties"

This reverts commit e45858ce.
parent ec0a0dc4
...@@ -2032,11 +2032,6 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track, ...@@ -2032,11 +2032,6 @@ static int TrackCreateES( demux_t *p_demux, mp4_track_t *p_track,
p_sample->data.p_sample_soun->p_qt_description, p_sample->data.p_sample_soun->p_qt_description,
p_track->fmt.i_extra); p_track->fmt.i_extra);
} }
if( p_track->fmt.i_extra >= 56 && p_sample->i_type == VLC_CODEC_ALAC )
{
p_track->fmt.audio.i_channels = *((uint8_t*)p_track->fmt.p_extra + 41);
p_track->fmt.audio.i_rate = GetDWBE((uint8_t*)p_track->fmt.p_extra + 52);
}
break; break;
case VLC_FOURCC( 'v', 'c', '-', '1' ): case VLC_FOURCC( 'v', 'c', '-', '1' ):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment