diff options
| author | 2019-04-29 16:44:41 +0000 | |
|---|---|---|
| committer | 2019-04-29 16:44:41 +0000 | |
| commit | 6de33e1ca7b39e9c330bac8fcedd05606d003490 (patch) | |
| tree | a1ec7f72d5ae64456f0efcfffd9270bb37dac94d | |
| parent | 87dbdeab7be5e7e82c6928987e684cc509c0d3bb (diff) | |
| parent | 27ff6911e8798b30000178577b5ec12328cf502f (diff) | |
Merge "media: MediaCodecInfo: remove PerformancePoint logs" into qt-dev
| -rw-r--r-- | media/java/android/media/MediaCodecInfo.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/media/java/android/media/MediaCodecInfo.java b/media/java/android/media/MediaCodecInfo.java index 35c691d6ec5f..a56e7f583094 100644 --- a/media/java/android/media/MediaCodecInfo.java +++ b/media/java/android/media/MediaCodecInfo.java @@ -1709,7 +1709,6 @@ public final class MediaCodecInfo { * mBlockSize.getHeight()); mMaxFrameRate = Math.max(1, Math.max(frameRate, maxFrameRate)); mMaxMacroBlockRate = Math.max(1, frameRate) * getMaxMacroBlocks(); - Log.i("PP", "Created " + this); } /** @@ -1730,14 +1729,6 @@ public final class MediaCodecInfo { new Size(Math.max(newBlockSize.getWidth(), pp.mBlockSize.getWidth() * 16), Math.max(newBlockSize.getHeight(), pp.mBlockSize.getHeight() * 16)) ); - /* - // these are guaranteed not to overflow as size * blockSize is decimated by 16 - width = align(pp.width * pp.blockSize.getWidth(), blockSize.getWidth()); - height = align(pp.height * pp.blockSize.getHeight(), blockSize.getHeight()); - frameRate = pp.frameRate; - macroBlockRate = align(pp.macroBlockRate, blockSize.getWidth * blockSize.getHeight()); - */ - Log.i("PP", " from " + pp + " and " + newBlockSize); } /** |