From 85de20b8a14834059b5a60f33ba4757ed55f1ed6 Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Wed, 28 Sep 2011 13:25:21 +0100 Subject: [PATCH] opusenc: use the same frame size setup as the opus test code https://bugzilla.gnome.org/show_bug.cgi?id=660364 --- ext/opus/gstopusenc.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ext/opus/gstopusenc.c b/ext/opus/gstopusenc.c index 9d4fe12862..10c1747d67 100644 --- a/ext/opus/gstopusenc.c +++ b/ext/opus/gstopusenc.c @@ -286,12 +286,13 @@ gst_opus_enc_sink_setcaps (GstPad * pad, GstCaps * caps) enc->frame_samples = enc->sample_rate / 50; break; case 40: - enc->frame_samples = enc->sample_rate / 20; + enc->frame_samples = enc->sample_rate / 25; break; case 60: enc->frame_samples = 3 * enc->sample_rate / 50; break; default: + GST_WARNING_OBJECT (enc, "Unsupported frame size: %d", enc->frame_size); return FALSE; break; }