Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f4745b08 authored by Lajos Molnar's avatar Lajos Molnar Committed by android-build-merger
Browse files

Merge "media: make CodecCapabilities PerformancePoints hashable" into qt-dev

am: 01f8b0f4

Change-Id: I45cd1c46f6fa59b172a012be94fcb8a2e1d38bd6
parents b7913742 01f8b0f4
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -1682,6 +1682,13 @@ public final class MediaCodecInfo {
                return "PerformancePoint(" + info + ")";
                return "PerformancePoint(" + info + ")";
            }
            }


            @Override
            public int hashCode() {
                // only max frame rate must equal between performance points that equal to one
                // another
                return mMaxFrameRate;
            }

            /**
            /**
             * Create a detailed performance point with custom max frame rate and macroblock size.
             * Create a detailed performance point with custom max frame rate and macroblock size.
             *
             *