Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 68) sorted by relevance

123

/rockchip-linux_mpp/mpp/
H A Dcodecs.cmake7 set(HAVE_AVSD true)
8 set(CODEC_AVSD codec_avsd)
9 set(HAL_AVSD hal_avsd)
17 set(HAVE_AVS2D true)
18 set(CODEC_AVS2D codec_avs2d)
19 set(HAL_AVS2D hal_avs2d)
26 set(HAVE_H263D true)
27 set(CODEC_H263D codec_h263d)
28 set(HAL_H263D hal_h263d)
35 set(HAVE_H264D true)
[all …]
H A Dvproc.cmake3 set(HAVE_VPROC true)
9 set(HAVE_VPROC_VDPP true)
10 set(VPROC_VDPP vproc_vdpp)
/rockchip-linux_mpp/build/android/
H A Dandroid.toolchain.cmake56 # Options (can be set as cmake parameters: -D<option_name>=<value>):
58 # Can be set as environment variable. Can be set only at first cmake run.
73 # "x86" - IA-32 instruction set
74 # "mips" - MIPS32 instruction set
77 # "arm64-v8a" - ARMv8 AArch64 instruction set
78 # "x86_64" - Intel64 instruction set (r1)
79 # "mips64" - MIPS64 instruction set (r6)
114 # ANDROID_FORCE_ARM_BUILD=OFF - set ON to generate 32-bit ARM instructions
118 # ANDROID_NO_UNDEFINED=ON - set ON to show all undefined symbols as linker
121 # ANDROID_SO_UNDEFINED=OFF - set ON to allow undefined symbols in shared
[all …]
/rockchip-linux_mpp/mpp/codec/
H A Dmpp_enc_impl.c425 static void show_prep_update(MppEncPrepCfg *cfg, MppEncPrepCfg *set) in show_prep_update() argument
434 if (set->width != cfg->width || set->height != cfg->height) { in show_prep_update()
437 cfg->width, cfg->height, set->width, set->height); in show_prep_update()
440 if (set->hor_stride != cfg->hor_stride || set->ver_stride != cfg->ver_stride) { in show_prep_update()
444 set->hor_stride, set->ver_stride); in show_prep_update()
447 if (set->format != cfg->format) { in show_prep_update()
449 "fmt %d -> %d ", cfg->format, set->format); in show_prep_update()
452 if (set->rotation != cfg->rotation) { in show_prep_update()
454 "rotate %d -> %d ", cfg->rotation, set->rotation); in show_prep_update()
457 if (set->mirroring != cfg->mirroring) { in show_prep_update()
[all …]
/rockchip-linux_mpp/
H A DCMakeLists.txt9 set(CMAKE_POLICY_VERSION_MINIMUM 3.5)
12 set(CMAKE_BUILD_TYPE Debug CACHE STRING
46 set(MPP_PROJECT_NAME rockchip_mpp)
48 set(MPP_STATIC ${MPP_PROJECT_NAME}_static)
49 set(MPP_SHARED ${MPP_PROJECT_NAME})
52 set(VPU_PROJECT_NAME rockchip_vpu)
54 set(VPU_STATIC ${VPU_PROJECT_NAME}_static)
55 set(VPU_SHARED ${VPU_PROJECT_NAME})
58 # set property to classify library kinds
69 set(CMAKE_EXPORT_COMPILE_COMMANDS true)
[all …]
/rockchip-linux_mpp/tools/
H A Dmpp_doxyfile63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub-
88 # If the BRIEF_MEMBER_DESC tag is set to YES doxygen will include brief member
95 # If the REPEAT_BRIEF tag is set to YES doxygen will prepend the brief
98 # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
115 # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
122 # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
130 # If the FULL_PATH_NAMES tag is set to YES doxygen will prepend the full path
131 # before files name in the file list and in the header files. If set to NO the
145 # This tag requires that the tag FULL_PATH_NAMES is set to YES.
158 # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
[all …]
/rockchip-linux_mpp/mpp/codec/enc/vp8/
H A DCMakeLists.txt3 set(VP8E_API
5 set(VP8E_COMMON
7 set(VP8E_HDR
9 set(VP8E_SRC
/rockchip-linux_mpp/mpp/codec/dec/avs/
H A DCMakeLists.txt5 set(AVSD_API
8 set(AVSD_COMMON
13 set(AVSD_HDR
18 set(AVSD_SRC
/rockchip-linux_mpp/mpp/codec/dec/m2v/
H A DCMakeLists.txt5 set(M2VD_API
9 set(M2VD_COMMON
13 set(M2VD_HDR
20 set(M2VD_SRC
/rockchip-linux_mpp/mpp/codec/enc/h264/
H A DCMakeLists.txt6 set(H264E_API
9 set(H264E_COMMON
13 set(H264E_HDR
17 set(H264E_SRC
/rockchip-linux_mpp/mpp/codec/dec/avs2/
H A DCMakeLists.txt5 set(AVS2D_API
8 set(AVS2D_COMMON
13 set(AVS2D_HDR
21 set(AVS2D_SRC
/rockchip-linux_mpp/osal/
H A DCMakeLists.txt8 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC")
9 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_REENTRANT -D_GNU_SOURCE")
10 set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64")
11 set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC")
13 set(MPP_ALLOCATOR
21 set(MPP_DRIVER
/rockchip-linux_mpp/mpp/codec/dec/h264/
H A DCMakeLists.txt6 set(H264D_API
9 set(H264D_COMMON
13 set(H264D_HDR
27 set(H264D_SRC
/rockchip-linux_mpp/mpp/codec/dec/common/
H A DCMakeLists.txt4 set(DEC_COMMON_HDR
9 set(DEC_COMMON_SRC
14 set(DEC_COMMON dec_common)
/rockchip-linux_mpp/mpp/codec/enc/dummy/
H A DCMakeLists.txt4 set(DUMMY_API
9 set(DUMMY_HDR
13 set(DUMMY_SRC
/rockchip-linux_mpp/mpp/codec/dec/dummy/
H A DCMakeLists.txt4 set(DUMMY_API
9 set(DUMMY_HDR
13 set(DUMMY_SRC
/rockchip-linux_mpp/mpp/hal/dummy/
H A DCMakeLists.txt4 set(HAL_DUMMY_API
10 set(HAL_DUMMY_HDR
14 set(HAL_DUMMY_SRC
/rockchip-linux_mpp/mpp/codec/dec/vp9/
H A DCMakeLists.txt5 set(VP9_D_API
10 set(VP9D_HDR
14 set(VP9D_SRC
/rockchip-linux_mpp/mpp/codec/dec/vp8/
H A DCMakeLists.txt5 set(VP8D_API
10 set(VP8D_HDR
16 set(VP8D_SRC
/rockchip-linux_mpp/mpp/hal/rkdec/avs2d/
H A DCMakeLists.txt4 set(HAL_AVS2D_API
8 set(HAL_AVS2D_HDR
14 set(HAL_AVS2D_SRC
/rockchip-linux_mpp/mpp/codec/dec/av1/
H A DCMakeLists.txt5 set(AV1_D_API
10 set(AV1D_HDR
14 set(AV1D_SRC
/rockchip-linux_mpp/mpp/hal/vpu/vp8d/
H A DCMakeLists.txt5 set(HAL_VP8D_API
11 set(HAL_VP8D_HDR
16 set(HAL_VP8D_SRC
/rockchip-linux_mpp/mpp/hal/vpu/m2vd/
H A DCMakeLists.txt5 set(HAL_M2VD_API
11 set(HAL_M2VD_HDR
20 set(HAL_M2VD_SRC
/rockchip-linux_mpp/mpp/hal/rkdec/avsd/
H A DCMakeLists.txt4 set(HAL_AVSD_API
8 set(HAL_AVSD_HDR
19 set(HAL_AVSD_SRC
/rockchip-linux_mpp/mpp/hal/common/h265/
H A DCMakeLists.txt7 set(HAL_H265E_HDR
11 set(HAL_H265E_COM_SRC
24 set(HAL_H265E_SRC

123