| Index: media/capture/video/android/java/src/org/chromium/media/VideoCaptureFormat.java
|
| diff --git a/media/capture/video/android/java/src/org/chromium/media/VideoCaptureFormat.java b/media/capture/video/android/java/src/org/chromium/media/VideoCaptureFormat.java
|
| deleted file mode 100644
|
| index a875843758deef4dcf95838d8cb984b2d4ecea39..0000000000000000000000000000000000000000
|
| --- a/media/capture/video/android/java/src/org/chromium/media/VideoCaptureFormat.java
|
| +++ /dev/null
|
| @@ -1,35 +0,0 @@
|
| -// Copyright 2015 The Chromium Authors. All rights reserved.
|
| -// Use of this source code is governed by a BSD-style license that can be
|
| -// found in the LICENSE file.
|
| -
|
| -package org.chromium.media;
|
| -
|
| -class VideoCaptureFormat {
|
| - int mWidth;
|
| - int mHeight;
|
| - final int mFramerate;
|
| - final int mPixelFormat;
|
| -
|
| - public VideoCaptureFormat(int width, int height, int framerate, int pixelformat) {
|
| - mWidth = width;
|
| - mHeight = height;
|
| - mFramerate = framerate;
|
| - mPixelFormat = pixelformat;
|
| - }
|
| -
|
| - public int getWidth() {
|
| - return mWidth;
|
| - }
|
| -
|
| - public int getHeight() {
|
| - return mHeight;
|
| - }
|
| -
|
| - public int getFramerate() {
|
| - return mFramerate;
|
| - }
|
| -
|
| - public int getPixelFormat() {
|
| - return mPixelFormat;
|
| - }
|
| -}
|
|
|