Skip to content
Snippets Groups Projects
Commit dae5ecc9 authored by conrad's avatar conrad Committed by Jean-Marc Valin
Browse files

set extra headers to 0, rather than 0xdeadbeef

parent c280e043
No related branches found
No related tags found
No related merge requests found
......@@ -55,7 +55,7 @@ void celt_header_init(CELTHeader *header, celt_int32_t rate, celt_int32_t nb_cha
header->sample_rate = rate;
header->nb_channels = nb_channels;
header->bytes_per_packet = -1;
header->extra_headers = 0xdeadbeef;
header->extra_headers = 0;
}
int celt_header_to_packet(const CELTHeader *header, unsigned char *packet, celt_uint32_t size)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment