AAC descriptor "reserved" field doesn't follow the DVB convention of reserved=1

pull/4/head
Kieran Kunhya 2013-06-27 12:40:49 +01:00
rodzic 19727a007d
commit 981b81c543
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -30,7 +30,7 @@ void write_aac_descriptor( bs_t *s, ts_int_stream_t *stream )
bs_write( s, 8, 2 ); // descriptor_length
bs_write( s, 8, stream->aac_profile ); // profile_and_level
bs_write( s, 1, 0 ); // AAC_type_flag
bs_write( s, 7, 0x7f ); // reserved
bs_write( s, 7, 0 ); // reserved
}
void write_adaptation_field_data_descriptor( bs_t *s, uint8_t identifier )