Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Liu <lq@chinaffmpeg.org>2019-10-10 10:10:48 +0300
committerSteven Liu <lq@chinaffmpeg.org>2019-10-22 05:51:30 +0300
commitd92b2296f85467af25b0ec95a6d6f6327db9e056 (patch)
tree5ea9940674e74cc00521f2a1473fd0ba7bd2db93 /libavformat/segafilmenc.c
parent74cafb0e6f3c5ec9d68b6e75e4257d77c3055805 (diff)
avformat/segafilmenc: remove unneeded code
Signed-off-by: Steven Liu <lq@chinaffmpeg.org>
Diffstat (limited to 'libavformat/segafilmenc.c')
-rw-r--r--libavformat/segafilmenc.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libavformat/segafilmenc.c b/libavformat/segafilmenc.c
index 524230e461..f1048ff808 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;
}