From patchwork Wed Dec 8 23:34:51 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Walle X-Patchwork-Id: 74904 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id F3BECB7080 for ; Fri, 10 Dec 2010 01:57:33 +1100 (EST) Received: from localhost ([127.0.0.1]:60444 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQhvN-0005fb-R3 for incoming@patchwork.ozlabs.org; Thu, 09 Dec 2010 09:56:49 -0500 Received: from [140.186.70.92] (port=56688 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PQTdR-0000g1-DR for qemu-devel@nongnu.org; Wed, 08 Dec 2010 18:41:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PQTdP-00008b-6Q for qemu-devel@nongnu.org; Wed, 08 Dec 2010 18:41:21 -0500 Received: from mail.serverraum.org ([78.47.150.89]:53733) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PQTdO-000085-Qn for qemu-devel@nongnu.org; Wed, 08 Dec 2010 18:41:19 -0500 Received: from localhost (localhost [127.0.0.1]) by mail.serverraum.org (Postfix) with ESMTP id B35703EF11; Thu, 9 Dec 2010 00:34:56 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at mail.serverraum.org Received: from mail.serverraum.org ([127.0.0.1]) by localhost (web.serverraum.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PHBn1OtwfrB0; Thu, 9 Dec 2010 00:34:56 +0100 (CET) Received: from thanatos.fritz.box (77-22-60-162-dynip.superkabel.de [77.22.60.162]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.serverraum.org (Postfix) with ESMTPSA id 558FA3EF04; Thu, 9 Dec 2010 00:34:56 +0100 (CET) From: Michael Walle To: qemu-devel@nongnu.org Date: Thu, 9 Dec 2010 00:34:51 +0100 Message-Id: <1291851291-17542-1-git-send-email-michael@walle.cc> X-Mailer: git-send-email 1.7.2.3 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) Cc: Michael Walle Subject: [Qemu-devel] [PATCH] noaudio: fix return value for read() X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Read should return bytes instead of samples. Signed-off-by: Michael Walle --- audio/noaudio.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/audio/noaudio.c b/audio/noaudio.c index 4925234..8015858 100644 --- a/audio/noaudio.c +++ b/audio/noaudio.c @@ -121,7 +121,7 @@ static int no_read (SWVoiceIn *sw, void *buf, int size) int total = sw->hw->total_samples_captured - sw->total_hw_samples_acquired; int to_clear = audio_MIN (samples, total); audio_pcm_info_clear_buf (&sw->info, buf, to_clear); - return to_clear; + return to_clear << sw->info.shift; } static int no_ctl_in (HWVoiceIn *hw, int cmd, ...)