Commit f38dfb97 authored by Francois Cartegnie's avatar Francois Cartegnie

packetizer: dts: 16LE: read header from converted buffer

refs A-codecs/DTS/dts/dtswavsample16.wav
parent 57a07b9a
...@@ -195,7 +195,7 @@ int GetSyncInfo( const uint8_t *p_buf, ...@@ -195,7 +195,7 @@ int GetSyncInfo( const uint8_t *p_buf,
{ {
uint8_t conv_buf[DTS_HEADER_SIZE]; uint8_t conv_buf[DTS_HEADER_SIZE];
BufLeToBe( conv_buf, p_buf, DTS_HEADER_SIZE ); BufLeToBe( conv_buf, p_buf, DTS_HEADER_SIZE );
i_frame_size = SyncInfo16be( p_buf, pi_audio_mode, pi_sample_rate, i_frame_size = SyncInfo16be( conv_buf, pi_audio_mode, pi_sample_rate,
pi_bit_rate, pi_frame_length ); pi_bit_rate, pi_frame_length );
} }
/* DTS-HD */ /* DTS-HD */
......
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