Browse Source

fix a52e_set_frmsiz

master
Christophe Massiot 10 years ago
parent
commit
d4cf613799
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      atsc/a52.h

+ 1
- 1
atsc/a52.h View File

@ -272,7 +272,7 @@ static inline void a52e_set_frmsiz(uint8_t *p_a52, uint16_t i_frmsiz)
{
p_a52[2] &= ~0x7;
p_a52[2] |= (i_frmsiz >> 8) & 0x7;
p_a52[3] |= i_frmsiz & 0xff;
p_a52[3] = i_frmsiz & 0xff;
}
static inline uint16_t a52e_get_frame_size(uint16_t i_frmsiz)

Loading…
Cancel
Save