Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Unified Diff: media/base/android/media_codec_direction.h

Issue 2132653002: MediaCodecLoop unit tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: changed constexpr for windows compiler bug Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: media/base/android/media_codec_direction.h
diff --git a/media/base/android/media_codec_direction.h b/media/base/android/media_codec_direction.h
new file mode 100644
index 0000000000000000000000000000000000000000..6544ea44b26a25a6dd61a8f59e80262afce25dbe
--- /dev/null
+++ b/media/base/android/media_codec_direction.h
@@ -0,0 +1,14 @@
+// Copyright 2016 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.
+
+#ifndef MEDIA_BASE_ANDROID_MEDIA_CODEC_DIRECTION_H_
+#define MEDIA_BASE_ANDROID_MEDIA_CODEC_DIRECTION_H_
+
+// Codec direction. Keep this in sync with MediaCodecUtil.java.
+enum MediaCodecDirection {
watk 2016/08/09 18:32:55 Should this be in a namespace?
liberato (no reviews please) 2016/08/09 21:20:47 good catch. done.
+ MEDIA_CODEC_DECODER,
+ MEDIA_CODEC_ENCODER,
+};
+
+#endif // MEDIA_BASE_ANDROID_MEDIA_CODEC_DIRECTION_H_

Powered by Google App Engine
This is Rietveld 408576698