Commit de537274 authored by Rafaël Carré's avatar Rafaël Carré

mp4a packetizer: simplify loop

parent d98042dd
...@@ -733,8 +733,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer) ...@@ -733,8 +733,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer)
bs_init(&s, p_buffer, i_buffer); bs_init(&s, p_buffer, i_buffer);
/* Read the stream mux configuration if present */ /* Read the stream mux configuration if present */
if (!bs_read1(&s)) { if (!bs_read1(&s) && !LatmReadStreamMuxConfiguration(&p_sys->latm, &s) &&
if (!LatmReadStreamMuxConfiguration(&p_sys->latm, &s) &&
p_sys->latm.i_streams > 0) { p_sys->latm.i_streams > 0) {
const latm_stream_t *st = &p_sys->latm.stream[0]; const latm_stream_t *st = &p_sys->latm.stream[0];
...@@ -742,9 +741,8 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer) ...@@ -742,9 +741,8 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer)
p_sys->i_rate = st->cfg.i_samplerate; p_sys->i_rate = st->cfg.i_samplerate;
p_sys->i_frame_length = st->cfg.i_frame_length; p_sys->i_frame_length = st->cfg.i_frame_length;
if (p_sys->i_channels > 0 && p_sys->i_rate > 0 &&
p_sys->i_frame_length > 0) {
/* FIXME And if it changes ? */ /* FIXME And if it changes ? */
if (p_sys->i_channels && p_sys->i_rate && p_sys->i_frame_length > 0) {
if (!p_dec->fmt_out.i_extra && st->i_extra > 0) { if (!p_dec->fmt_out.i_extra && st->i_extra > 0) {
p_dec->fmt_out.i_extra = st->i_extra; p_dec->fmt_out.i_extra = st->i_extra;
p_dec->fmt_out.p_extra = malloc(st->i_extra); p_dec->fmt_out.p_extra = malloc(st->i_extra);
...@@ -757,7 +755,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer) ...@@ -757,7 +755,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer)
p_sys->b_latm_cfg = true; p_sys->b_latm_cfg = true;
} }
} }
}
/* Wait for the configuration */ /* Wait for the configuration */
if (!p_sys->b_latm_cfg) if (!p_sys->b_latm_cfg)
return 0; return 0;
...@@ -794,6 +792,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer) ...@@ -794,6 +792,7 @@ static int LOASParse(decoder_t *p_dec, uint8_t *p_buffer, int i_buffer)
} }
} }
} }
/* Payload Data */ /* Payload Data */
for (int i_program = 0; i_program < p_sys->latm.i_programs; i_program++) { for (int i_program = 0; i_program < p_sys->latm.i_programs; i_program++) {
for (int i_layer = 0; i_layer < p_sys->latm.pi_layers[i_program]; i_layer++) { for (int i_layer = 0; i_layer < p_sys->latm.pi_layers[i_program]; i_layer++) {
......
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