vorbisenc: correct codebooks packet identifier from 3 to 5

https://bugzilla.gnome.org/show_bug.cgi?id=768763
This commit is contained in:
Vincent Penquerc'h 2016-10-07 12:49:18 +01:00
parent 6335a074e2
commit 667931e52a

View file

@ -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);
}