mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-02-07 14:18:25 +00:00
Enable HD video on Android.
This commit is contained in:
parent
440fabd247
commit
959334d742
2 changed files with 6 additions and 3 deletions
|
|
@ -79,6 +79,9 @@ LOCAL_CFLAGS += -DVIDEO_ENABLED
|
|||
ifeq ($(BUILD_X264),1)
|
||||
LOCAL_CFLAGS += -DHAVE_X264
|
||||
endif
|
||||
ifeq ($(LINPHONE_HD_VIDEO),1)
|
||||
LOCAL_CFLAGS += -DENABLE_HD
|
||||
endif
|
||||
endif
|
||||
|
||||
ifeq ($(USE_JAVAH),1)
|
||||
|
|
|
|||
|
|
@ -4954,10 +4954,10 @@ int linphone_core_get_camera_sensor_rotation(LinphoneCore *lc) {
|
|||
|
||||
static MSVideoSizeDef supported_resolutions[]={
|
||||
#ifdef ENABLE_HD
|
||||
{ {MS_VIDEO_SIZE_1080P_W,MS_VIDEO_SIZE_1080P_H} , "1080p" },
|
||||
{ {MS_VIDEO_SIZE_720P_W,MS_VIDEO_SIZE_720P_H} , "720p" },
|
||||
{ { MS_VIDEO_SIZE_1080P_W,MS_VIDEO_SIZE_1080P_H } , "1080p" },
|
||||
{ { MS_VIDEO_SIZE_720P_W,MS_VIDEO_SIZE_720P_H } , "720p" },
|
||||
{ { MS_VIDEO_SIZE_UXGA_W, MS_VIDEO_SIZE_UXGA_H } , "uxga" },
|
||||
{ { MS_VIDEO_SIZE_SXGA_MINUS_W, MS_VIDEO_SIZE_SXGA_MINUS_H , "sxga-" },
|
||||
{ { MS_VIDEO_SIZE_SXGA_MINUS_W, MS_VIDEO_SIZE_SXGA_MINUS_H } , "sxga-" },
|
||||
{ { MS_VIDEO_SIZE_XGA_W, MS_VIDEO_SIZE_XGA_H } , "xga" },
|
||||
#endif
|
||||
{ {MS_VIDEO_SIZE_SVGA_W,MS_VIDEO_SIZE_SVGA_H} , "svga" },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue