Commit a654d779 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

a52: remove redumdant data

The channels count can trivially be computed with popcount().
parent 1e88a96b
...@@ -29,12 +29,6 @@ ...@@ -29,12 +29,6 @@
#include <vlc_bits.h> #include <vlc_bits.h>
typedef struct
{
unsigned int i_count;
unsigned int i_configuration;
} vlc_a52_acmod_t;
/** /**
* Minimum AC3 header size that vlc_a52_header_Parse needs. * Minimum AC3 header size that vlc_a52_header_Parse needs.
*/ */
...@@ -66,7 +60,7 @@ typedef struct ...@@ -66,7 +60,7 @@ typedef struct
*/ */
static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header, static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header,
const uint8_t *p_buf, const uint8_t *p_buf,
const vlc_a52_acmod_t *p_acmod ) const uint32_t *p_acmod )
{ {
static const uint8_t pi_halfrate[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3 }; static const uint8_t pi_halfrate[12] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3 };
static const unsigned int pi_bitrate[] = { 32, 40, 48, 56, 64, 80, 96, 112, static const unsigned int pi_bitrate[] = { 32, 40, 48, 56, 64, 80, 96, 112,
...@@ -81,23 +75,15 @@ static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header, ...@@ -81,23 +75,15 @@ static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header,
/* acmod, dsurmod and lfeon */ /* acmod, dsurmod and lfeon */
const unsigned i_acmod = p_buf[6] >> 5; const unsigned i_acmod = p_buf[6] >> 5;
if( (p_buf[6] & 0xf8) == 0x50 ) if( (p_buf[6] & 0xf8) == 0x50 )
{
/* Dolby surround = stereo + Dolby */ /* Dolby surround = stereo + Dolby */
p_header->i_channels = 2; p_header->i_channels_conf = AOUT_CHANS_STEREO | AOUT_CHAN_DOLBYSTEREO;
p_header->i_channels_conf = AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT
| AOUT_CHAN_DOLBYSTEREO;
}
else else
{ p_header->i_channels_conf = p_acmod[i_acmod];
p_header->i_channels = p_acmod[i_acmod].i_count;
p_header->i_channels_conf = p_acmod[i_acmod].i_configuration;
}
if( p_buf[6] & pi_lfeon[i_acmod] ) if( p_buf[6] & pi_lfeon[i_acmod] )
{
p_header->i_channels++;
p_header->i_channels_conf |= AOUT_CHAN_LFE; p_header->i_channels_conf |= AOUT_CHAN_LFE;
}
p_header->i_channels = popcount(p_header->i_channels_conf
& AOUT_CHAN_PHYSMASK);
const unsigned i_frmsizecod = p_buf[4] & 63; const unsigned i_frmsizecod = p_buf[4] & 63;
if( i_frmsizecod >= 38 ) if( i_frmsizecod >= 38 )
...@@ -133,7 +119,7 @@ static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header, ...@@ -133,7 +119,7 @@ static inline int vlc_a52_header_ParseAc3( vlc_a52_header_t *p_header,
*/ */
static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header, static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header,
const uint8_t *p_buf, const uint8_t *p_buf,
const vlc_a52_acmod_t *p_acmod ) const uint32_t *p_acmod )
{ {
static const unsigned pi_samplerate[3] = { 48000, 44100, 32000 }; static const unsigned pi_samplerate[3] = { 48000, 44100, 32000 };
unsigned i_numblkscod; unsigned i_numblkscod;
...@@ -169,9 +155,13 @@ static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header, ...@@ -169,9 +155,13 @@ static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header,
const unsigned i_acmod = bs_read( &s, 3 ); const unsigned i_acmod = bs_read( &s, 3 );
const unsigned i_lfeon = bs_read1( &s ); const unsigned i_lfeon = bs_read1( &s );
p_header->i_channels = p_acmod[i_acmod].i_count + i_lfeon; p_header->i_channels_conf = p_acmod[i_acmod];
p_header->i_channels_conf = p_acmod[i_acmod].i_configuration | ( i_lfeon ? AOUT_CHAN_LFE : 0); if( i_lfeon )
p_header->i_bitrate = 8 * p_header->i_size * (p_header->i_rate) / (i_numblkscod * 256); p_header->i_channels_conf |= AOUT_CHAN_LFE;
p_header->i_channels = popcount(p_header->i_channels_conf
& AOUT_CHAN_PHYSMASK);
p_header->i_bitrate = 8 * p_header->i_size * (p_header->i_rate)
/ (i_numblkscod * 256);
p_header->i_samples = i_numblkscod * 256; p_header->i_samples = i_numblkscod * 256;
p_header->b_eac3 = true; p_header->b_eac3 = true;
...@@ -187,18 +177,15 @@ static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header, ...@@ -187,18 +177,15 @@ static inline int vlc_a52_header_ParseEac3( vlc_a52_header_t *p_header,
static inline int vlc_a52_header_Parse( vlc_a52_header_t *p_header, static inline int vlc_a52_header_Parse( vlc_a52_header_t *p_header,
const uint8_t *p_buffer, int i_buffer ) const uint8_t *p_buffer, int i_buffer )
{ {
static const vlc_a52_acmod_t p_acmod[8] = { static const uint32_t p_acmod[8] = {
{ 2, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_DUALMONO }, /* Dual-channel 1+1 */ AOUT_CHANS_2_0 | AOUT_CHAN_DUALMONO,
{ 1, AOUT_CHAN_CENTER }, /* Mono 1/0 */ AOUT_CHAN_CENTER,
{ 2, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT }, /* Stereo 2/0 */ AOUT_CHANS_2_0,
{ 3, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER }, /* 3F 3/0 */ AOUT_CHANS_3_0,
{ 3, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_REARCENTER }, /* 2F1R 2/1 */ AOUT_CHANS_FRONT | AOUT_CHAN_REARCENTER, /* 2F1R */
{ 4, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER | AOUT_CHANS_FRONT | AOUT_CHANS_CENTER, /* 3F1R */
AOUT_CHAN_REARCENTER }, /* 3F1R 3/1 */ AOUT_CHANS_4_0,
{ 4, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHANS_5_0,
AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT }, /* 2F2R 2/2 */
{ 5, AOUT_CHAN_LEFT | AOUT_CHAN_RIGHT | AOUT_CHAN_CENTER |
AOUT_CHAN_REARLEFT | AOUT_CHAN_REARRIGHT }, /* 3F2R 3/2 */
}; };
if( i_buffer < VLC_A52_HEADER_SIZE ) if( i_buffer < VLC_A52_HEADER_SIZE )
...@@ -227,4 +214,3 @@ static inline int vlc_a52_header_Parse( vlc_a52_header_t *p_header, ...@@ -227,4 +214,3 @@ static inline int vlc_a52_header_Parse( vlc_a52_header_t *p_header,
} }
#endif #endif
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