Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
parsers: AAC - fix the thinko in the previous patch
  • Loading branch information
perexg committed Feb 11, 2015
1 parent 538e7ac commit fafec1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/parsers/parser_latm.c
Expand Up @@ -267,7 +267,7 @@ parse_latm_audio_mux_element(service_t *t, elementary_stream_t *st,

pkt->pkt_commercial = t->s_tt_commercial_advice;
pkt->pkt_duration = st->es_frame_duration;
pkt->pkt_sri = latm->sri + 1;
pkt->pkt_sri = latm->sri;
pkt->pkt_ext_sri = latm->ext_sri;
pkt->pkt_channels = latm->channel_config == 7 ? 8 : latm->channel_config;

Expand Down

0 comments on commit fafec1e

Please sign in to comment.