[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 15/15] audio: Add missing fall through comments
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PULL 15/15] audio: Add missing fall through comments |
Date: |
Tue, 13 Aug 2019 13:18:09 +0200 |
From: Stefan Weil <address@hidden>
Signed-off-by: Stefan Weil <address@hidden>
Reviewed-by: Marc-André Lureau <address@hidden>
Reviewed-by: Philippe Mathieu-Daudé <address@hidden>
Tested-by: Philippe Mathieu-Daudé <address@hidden>
Message-id: address@hidden
Signed-off-by: Gerd Hoffmann <address@hidden>
---
audio/audio.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/audio/audio.c b/audio/audio.c
index ebe49f3ca10a..90d3dc836dec 100644
--- a/audio/audio.c
+++ b/audio/audio.c
@@ -309,6 +309,7 @@ void audio_pcm_init_info (struct audio_pcm_info *info,
struct audsettings *as)
case AUDIO_FORMAT_S16:
sign = 1;
+ /* fall through */
case AUDIO_FORMAT_U16:
bits = 16;
shift = 1;
@@ -316,6 +317,7 @@ void audio_pcm_init_info (struct audio_pcm_info *info,
struct audsettings *as)
case AUDIO_FORMAT_S32:
sign = 1;
+ /* fall through */
case AUDIO_FORMAT_U32:
bits = 32;
shift = 2;
--
2.18.1
- [Qemu-devel] [PULL 04/15] audio: add audiodev properties to frontends, (continued)
- [Qemu-devel] [PULL 04/15] audio: add audiodev properties to frontends, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 07/15] paaudio: do not move stream when sink/source name is specified, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 09/15] audio: remove audio_MIN, audio_MAX, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 14/15] audio: fix memory leak reported by ASAN, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 05/15] paaudio: prepare for multiple audiodev, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 11/15] paaudio: fix playback glitches, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 02/15] audio: basic support for multi backend audio, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 08/15] paaudio: properly disconnect streams in fini_*, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 13/15] audio: use size_t where makes sense, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 06/15] audio: audiodev= parameters no longer optional when -audiodev present, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 15/15] audio: Add missing fall through comments,
Gerd Hoffmann <=
- [Qemu-devel] [PULL 12/15] audio: remove read and write pcm_ops, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 10/15] audio: do not run each backend in audio_run, Gerd Hoffmann, 2019/08/13
- [Qemu-devel] [PULL 01/15] audio: reduce glob_audio_state usage, Gerd Hoffmann, 2019/08/13
- Re: [Qemu-devel] [PULL 00/15] Audio 20190813 patches, Peter Maydell, 2019/08/13
- Re: [Qemu-devel] [PULL 00/15] Audio 20190813 patches, Peter Maydell, 2019/08/16