From d92b2296f85467af25b0ec95a6d6f6327db9e056 Mon Sep 17 00:00:00 2001 From: Steven Liu Date: Thu, 10 Oct 2019 15:10:48 +0800 Subject: [PATCH] avformat/segafilmenc: remove unneeded code Signed-off-by: Steven Liu --- libavformat/segafilmenc.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavformat/segafilmenc.c b/libavformat/segafilmenc.c index 524230e461c76..f1048ff8082a2 100644 --- a/libavformat/segafilmenc.c +++ b/libavformat/segafilmenc.c @@ -147,10 +147,8 @@ static int get_audio_codec_id(enum AVCodecID codec_id) case AV_CODEC_ID_PCM_S8_PLANAR: case AV_CODEC_ID_PCM_S16BE_PLANAR: return 0; - break; case AV_CODEC_ID_ADPCM_ADX: return 2; - break; default: return -1; }