Skip to content
Snippets Groups Projects
Commit 667931e5 authored by Vincent Penquerc'h's avatar Vincent Penquerc'h
Browse files

vorbisenc: correct codebooks packet identifier from 3 to 5

https://bugzilla.gnome.org/show_bug.cgi?id=768763
parent 6335a074
No related branches found
No related tags found
No related merge requests found
......@@ -730,7 +730,7 @@ gst_vorbis_enc_buffer_from_header_packet (GstVorbisEnc * vorbisenc,
if (packet->bytes > 0 && packet->packet[0] == '\001') {
parse_vorbis_header_packet (vorbisenc, packet);
} else if (packet->bytes > 0 && packet->packet[0] == '\003') {
} else if (packet->bytes > 0 && packet->packet[0] == '\005') {
parse_vorbis_codebooks_packet (vorbisenc, packet);
}
......
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