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

Commit 8f7bf025 authored by Rajneesh Chowdury's avatar Rajneesh Chowdury
Browse files

5106773 Can't export a movie - Error returned from OMX API in ducati

Video Editor engine wrongly set the profile in place of level.
So level was always 1 (default value for Profile)

Change-Id: I202f866d32e81869d9692174d59d9d777a772282
parent 890be6b9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -91,7 +91,7 @@ public class VideoEditorProfile
            case MediaProperties.VCODEC_H263:
            case MediaProperties.VCODEC_H264:
            case MediaProperties.VCODEC_MPEG4:
                 level = native_get_videoeditor_export_profile(vidCodec);
                 level = native_get_videoeditor_export_level(vidCodec);
                 break;
            default :
               throw new IllegalArgumentException("Unsupported video codec" + vidCodec);