libstb_hal: Suppress implicit-fallthrough warnings from GCC 7

Origin commit data
------------------
Branch: master
Commit: 1f004bd0fd
Author: GetAway <get-away@t-online.de>
Date: 2019-06-14 (Fri, 14 Jun 2019)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
GetAway
2019-06-14 21:03:10 +02:00
committed by max_10
parent f23152f806
commit d6ebfb5c5f
6 changed files with 10 additions and 1 deletions

View File

@@ -137,6 +137,7 @@ static int writeData(WriterAVCallData_t *call)
case AV_CODEC_ID_PCM_S16LE:
case AV_CODEC_ID_PCM_U16LE:
LE = 1;
// fall through
case AV_CODEC_ID_PCM_S16BE:
case AV_CODEC_ID_PCM_U16BE:
width = depth = 16;
@@ -144,6 +145,7 @@ static int writeData(WriterAVCallData_t *call)
case AV_CODEC_ID_PCM_S24LE:
case AV_CODEC_ID_PCM_U24LE:
LE = 1;
// fall through
case AV_CODEC_ID_PCM_S24BE:
case AV_CODEC_ID_PCM_U24BE:
width = depth = 24;
@@ -151,6 +153,7 @@ static int writeData(WriterAVCallData_t *call)
case AV_CODEC_ID_PCM_S32LE:
case AV_CODEC_ID_PCM_U32LE:
LE = 1;
// fall through
case AV_CODEC_ID_PCM_S32BE:
case AV_CODEC_ID_PCM_U32BE:
width = depth = 32;