HomeSort by relevance Sort by last modified time
    Searched full:vidcodec (Results 1 - 2 of 2) sorted by null

  /frameworks/base/media/java/android/media/videoeditor/
VideoEditorProfile.java 68 public static int getExportProfile(int vidCodec) {
71 switch (vidCodec) {
75 profile = native_get_videoeditor_export_profile(vidCodec);
78 throw new IllegalArgumentException("Unsupported video codec" + vidCodec);
87 public static int getExportLevel(int vidCodec) {
90 switch (vidCodec) {
94 level = native_get_videoeditor_export_level(vidCodec);
97 throw new IllegalArgumentException("Unsupported video codec" + vidCodec);
VideoEditorImpl.java 343 int vidcodec = 0; local
432 vidcodec = MediaArtistNativeHelper.VideoFormat.H263;
435 vidcodec = MediaArtistNativeHelper.VideoFormat.H264;
438 vidcodec = MediaArtistNativeHelper.VideoFormat.MPEG4;
456 mMANativeHelper.setVideoCodec(vidcodec);
    [all...]

Completed in 278 milliseconds