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

Commit be2e0e88 authored by Ray Essick's avatar Ray Essick
Browse files

Synchronize mediarecorder.h and MediaRecorder.java

These two files: frameworks/base/media/java/android/media/MediaRecorder.java
and frameworks/av/media/libmedia/include/media/mediarecorder.h have
separate definitions of output formats. The java side was missing the
definition for HEIF format.

Bug: 120134664
Test: manual
Change-Id: I1176aa1b7b688c9670183652461169fbe19682df
parent 259e7840
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -456,6 +456,9 @@ public class MediaRecorder implements AudioRouting,
        /** VP8/VORBIS data in a WEBM container */
        public static final int WEBM = 9;

        /** @hide HEIC data in a HEIF container */
        public static final int HEIF = 10;

        /** Opus data in a Ogg container */
        public static final int OGG = 11;
    };