From 686a4709782039ae37dfac9c2c32e93570d9fd7e Mon Sep 17 00:00:00 2001 From: Simon Morlat Date: Wed, 12 Jun 2013 22:09:27 +0200 Subject: [PATCH] fix mistake in resolution table --- coreapi/linphonecore.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coreapi/linphonecore.c b/coreapi/linphonecore.c index 7ecc917b2..edaae9434 100644 --- a/coreapi/linphonecore.c +++ b/coreapi/linphonecore.c @@ -4838,7 +4838,7 @@ 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} , "1080p" }, + { {MS_VIDEO_SIZE_720P_W,MS_VIDEO_SIZE_720P_H} , "720p" }, #endif { {MS_VIDEO_SIZE_SVGA_W,MS_VIDEO_SIZE_SVGA_H} , "svga" }, { {MS_VIDEO_SIZE_4CIF_W,MS_VIDEO_SIZE_4CIF_H} , "4cif" },