saki4510t / AudioVideoRecordingSample

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

make video preview fullscreen #1

Closed UngureanEugen closed 9 years ago

UngureanEugen commented 9 years ago

Hi, thanks for your effort. Could you please help me how to make video preview fullscreen in portrait mode Thanks.

saki4510t commented 9 years ago

Hello,

Could you try this way? 1) comment out line291-309 in CameraGLView.java (in #updateViewport method) comment out from line "GLES20.glClear(GLES20.GL_COLOR_BUFFER_BIT);" to line "GLES20.glViewport(w, h, width, height);"

This way render camera image onto entire surface of CameraGLView.

If you need to crop center of camera image and fill it to entire surface, you need calculate viewport dimensions here.

with best regards, saki

UngureanEugen commented 9 years ago

Hi, Thank you very much. It works !!!