From: Michael Niedermayer <[email protected]> Drop two unnecessary returns.
Signed-off-by: Michael Niedermayer <[email protected]> --- libavcodec/jpeg2000.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/libavcodec/jpeg2000.c b/libavcodec/jpeg2000.c index 705399a..061d176 100644 --- a/libavcodec/jpeg2000.c +++ b/libavcodec/jpeg2000.c @@ -115,7 +115,6 @@ static int getsigctxno(int flag, int bandno) return 2; if (d == 1) return 1; - return 0; } else { if (d >= 3) return 8; @@ -135,7 +134,6 @@ static int getsigctxno(int flag, int bandno) return 2; if (h + v == 1) return 1; - return 0; } return 0; } -- 1.8.2.1 _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
