# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- # # Version: MPL 1.1 / GPLv3+ / LGPLv3+ # # The contents of this file are subject to the Mozilla Public License Version # 1.1 (the "License"); you may not use this file except in compliance with # the License or as specified alternatively below. You may obtain a copy of # the License at http://www.mozilla.org/MPL/ # # Software distributed under the License is distributed on an "AS IS" basis, # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License # for the specific language governing rights and limitations under the # License. # # Major Contributor(s): # Copyright (C) 2012 Matúš Kukan (initial developer) # # All Rights Reserved. # # For minor contributions see the git repository. # # Alternatively, the contents of this file may be used under the terms of # either the GNU General Public License Version 3 or later (the "GPLv3+"), or # the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"), # in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable # instead of those above. $(eval $(call gb_Library_Library,emser)) $(eval $(call gb_Library_set_componentfile,emser,embedserv/util/emser)) $(eval $(call gb_Library_set_include,emser,\ -I$(SRCDIR)/embedserv/source/inc \ -I$(ATL_INCLUDE) \ $$(INCLUDE) \ )) $(eval $(call gb_Library_add_defs,emser,\ -UNOMINMAX \ )) $(eval $(call gb_Library_use_external,emser,boost_headers)) $(eval $(call gb_Library_use_sdk_api,emser)) $(eval $(call gb_Library_use_libraries,emser,\ comphelper \ cppu \ cppuhelper \ sal \ $(gb_UWINAPI) \ )) $(eval $(call gb_Library_use_system_win32_libs,emser,\ gdi32 \ ole32 \ oleaut32 \ uuid \ )) ifeq ($(USE_DEBUG_RUNTIME),) $(eval $(call gb_Library_add_libs,emser,\ $(ATL_LIB)/atls.lib \ )) else $(eval $(call gb_Library_add_libs,emser,\ $(ATL_LIB)/atlsd.lib \ )) endif $(eval $(call gb_Library_add_ldflags,emser,\ -LIBPATH:$(ATL_LIB) \ )) $(eval $(call gb_Library_add_exception_objects,emser,\ embedserv/source/embed/docholder \ embedserv/source/embed/ed_idataobj \ embedserv/source/embed/ed_iinplace \ embedserv/source/embed/ed_ioleobject \ embedserv/source/embed/ed_ipersiststr \ embedserv/source/embed/esdll \ embedserv/source/embed/guid \ embedserv/source/embed/iipaobj \ embedserv/source/embed/intercept \ embedserv/source/embed/register \ embedserv/source/embed/servprov \ embedserv/source/embed/syswinwrapper \ embedserv/source/embed/tracker \ )) # vim: set noet sw=4 ts=4: 22.05-testflight LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
path: root/xmloff/qa/unit/data/video-snapshot.odp
AgeCommit message (Collapse)Author
2022-08-29avmedia: implement video crop support in the ODP filterMiklos Vajna
And also import/export the video preview as well. The naming follows the style used for table shape previews. The preview is important, since the cropping is relative to the bitmap's preferred logic size. Change-Id: I6115284c1f4cf342b3296cd0ac3beb70a809fd1b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138959 Reviewed-by: Miklos Vajna <vmiklos@collabora.com> Tested-by: Jenkins