diff options
author | Diego Biurrun <diego@biurrun.de> | 2015-03-13 00:39:31 +0100 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2016-11-03 20:17:12 +0100 |
commit | 67351924fa91dea4339109100a4c0689f006581f (patch) | |
tree | cc181f4a144ce6d714cc3d945f721f1f1839b325 /libavcodec/sanm.c | |
parent | 99434f4df81b6801b2b535d5b9143305595784f6 (diff) | |
download | ffmpeg-67351924fa91dea4339109100a4c0689f006581f.tar.gz |
Drop unreachable break and return statements
Diffstat (limited to 'libavcodec/sanm.c')
-rw-r--r-- | libavcodec/sanm.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libavcodec/sanm.c b/libavcodec/sanm.c index 3d231957ae..7b0004925c 100644 --- a/libavcodec/sanm.c +++ b/libavcodec/sanm.c @@ -926,13 +926,10 @@ static int process_frame_obj(SANMVideoContext *ctx) case 1: case 3: return old_codec1(ctx, top, left, w, h); - break; case 37: return old_codec37(ctx, top, left, w, h); - break; case 47: return old_codec47(ctx, top, left, w, h); - break; default: avpriv_request_sample(ctx->avctx, "Subcodec %d", codec); return AVERROR_PATCHWELCOME; |