saki4510t / AudioVideoRecordingSample

Simultaneous audio and video recording sample using MediaCodec/MediaMuxer
Apache License 2.0
960 stars 290 forks source link

Video Preview fullscreen in landscape stretched #2

Closed UngureanEugen closed 9 years ago

UngureanEugen commented 9 years ago

Hi saki, Thanks for your last response. I am looking to make video preview fullscreen in landscape. Then I set aspect ratio

        mCameraView.setAspectRatio(display.getmWidth()/ display.getmHeight());

It takes only half of screen. But then I removed setAspectRatio, camera preview is stretched. Thanks in advice.

UngureanEugen commented 9 years ago

Hi, I found solution for this problem. I changed

CameraGLView.java row 488
                     params.setPreviewSize(1280, 720); 
to
                    params.setPictureSize(1280, 720);

Now it doesn't stretch camera preview in landscape fullscreen. I will close it. Thanks.