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

Commit c2393e12 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add video priority to Process.java"

parents fd77635d 9765e20d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -32220,6 +32220,7 @@ package android.os {
    field public static final int THREAD_PRIORITY_MORE_FAVORABLE = -1; // 0xffffffff
    field public static final int THREAD_PRIORITY_URGENT_AUDIO = -19; // 0xffffffed
    field public static final int THREAD_PRIORITY_URGENT_DISPLAY = -8; // 0xfffffff8
    field public static final int THREAD_PRIORITY_VIDEO = -10; // 0xfffffff6
  }
  public abstract class ProxyFileDescriptorCallback {
+9 −0
Original line number Diff line number Diff line
@@ -268,6 +268,15 @@ public class Process {
     */
    public static final int THREAD_PRIORITY_URGENT_DISPLAY = -8;

    /**
     * Standard priority of video threads.  Applications can not normally
     * change to this priority.
     * Use with {@link #setThreadPriority(int)} and
     * {@link #setThreadPriority(int, int)}, <b>not</b> with the normal
     * {@link java.lang.Thread} class.
     */
    public static final int THREAD_PRIORITY_VIDEO = -10;

    /**
     * Standard priority of audio threads.  Applications can not normally
     * change to this priority.