yashketkar/video-player

View on GitHub
vitamio/src/io/vov/vitamio/ThumbnailUtils.java

Summary

Maintainability
B
4 hrs
Test Coverage

Method transform has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
Open

  private static Bitmap transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) {
    boolean scaleUp = (options & OPTIONS_SCALE_UP) != 0;
    boolean recycle = (options & OPTIONS_RECYCLE_INPUT) != 0;

    int deltaX = source.getWidth() - targetWidth;
Severity: Minor
Found in vitamio/src/io/vov/vitamio/ThumbnailUtils.java - About 1 hr to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Method transform has 40 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  private static Bitmap transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) {
    boolean scaleUp = (options & OPTIONS_SCALE_UP) != 0;
    boolean recycle = (options & OPTIONS_RECYCLE_INPUT) != 0;

    int deltaX = source.getWidth() - targetWidth;
Severity: Minor
Found in vitamio/src/io/vov/vitamio/ThumbnailUtils.java - About 1 hr to fix

    Method transform has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

      private static Bitmap transform(Matrix scaler, Bitmap source, int targetWidth, int targetHeight, int options) {
    Severity: Minor
    Found in vitamio/src/io/vov/vitamio/ThumbnailUtils.java - About 35 mins to fix

      Method createVideoThumbnail has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

        public static Bitmap createVideoThumbnail(Context ctx, String filePath, int kind) {
          if (!Vitamio.isInitialized(ctx)) {
            return null;
          }
          Bitmap bitmap = null;
      Severity: Minor
      Found in vitamio/src/io/vov/vitamio/ThumbnailUtils.java - About 35 mins to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      There are no issues that match your filters.

      Category
      Status