Skip to content
This repository has been archived by the owner on May 17, 2021. It is now read-only.

[epsonprojector] Add additional ColorMode and AspectRatio values (from 5030UB projector) #5307

Merged
merged 1 commit into from
Sep 24, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Copyright (c) 2010-2016 by the respective copyright holders.
* Copyright (c) 2010-2017 by the respective copyright holders.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
Expand Down Expand Up @@ -32,6 +32,8 @@ public enum AspectRatio {
FULL(0x40),
ZOOM(0x50),
WIDE(0x70),
ANAMORPHIC(0x80),
SQUEEZE(0x90),
ERROR(0xFF);

private int value;
Expand Down Expand Up @@ -116,11 +118,19 @@ public int toInt() {
}

public enum ColorMode {
CINEMANIGHT(0x05),
DYNAMIC(0x06),
NATURAL(0x07),
HD(0x09),
SILVER(0x0A),
XVCOLOR(0x0B),
LIVINGROOM(0x0C),
THX(0x13),
CINEMA(0x15),
CINEMA3D(0x17),
DYNAMIC3D(0x18),
THX3D(0x19),
BWCINEMA(0x20),
ERROR(0xFF);

private int value;
Expand Down