π
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From ceb9d548a6ed86e5f20f3f0605872145097bfbb6 Mon Sep 17 00:00:00 2001 | |
From: Alexander Tarasikov <[email protected]> | |
Date: Fri, 2 Mar 2018 21:32:01 +0100 | |
Subject: [PATCH] NOMERGE: Add Y422 color format support to Aravis | |
--- | |
modules/videoio/src/cap_aravis.cpp | 12 ++++++++++++ | |
samples/cpp/videocapture_basic.cpp | 15 +++++++++++---- | |
2 files changed, 23 insertions(+), 4 deletions(-) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#ifndef __CLANG_GHETTO_TAINT__H__ | |
#define __CLANG_GHETTO_TAINT__H__ | |
/****************************************************************************** | |
* Define prototypes for referenced symbols |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit 6887d0432b148b85592538bbff8941d6d5a9ab16 | |
Author: Alexander Tarasikov <[email protected]> | |
Date: Tue Oct 3 14:08:10 2017 +0300 | |
XXX: try assigning func pointers to struct member | |
diff --git a/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp b/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp | |
index caf86b26b6..32587624bf 100644 | |
--- a/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp | |
+++ b/lib/StaticAnalyzer/Core/ExprEngineCallAndReturn.cpp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try { | |
Class c_GraphicBuffer = Class.forName("android.view.GraphicBuffer"); | |
Log.e(LOG_TAG, "GraphicBuffer " + c_GraphicBuffer); | |
Method GraphicBuffer_create = c_GraphicBuffer.getMethod("create", new Class[] { int.class, int.class, int.class, int.class, }); | |
Log.e(LOG_TAG, "Method GraphicBuffer_create " + GraphicBuffer_create); | |
Object hGraphicBuffer = GraphicBuffer_create.invoke(null, 1920, 1080, 1, 0x3 | 0x30 | 0x100); | |
Log.e(LOG_TAG, "Created GraphicBuffer " + hGraphicBuffer); | |
Method GraphicBuffer_lockCanvas = c_GraphicBuffer.getMethod("lockCanvas", new Class[] {}); | |
Log.e(LOG_TAG, "Method GraphicBuffer_lockCanvas " + GraphicBuffer_lockCanvas); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/configure.ac b/configure.ac | |
index 75b1de4..5d1f7ee 100644 | |
--- a/configure.ac | |
+++ b/configure.ac | |
@@ -2179,7 +2179,7 @@ if test "x$enable_gallium_llvm" = xyes; then | |
if test -n "${LLVM_VERSION_MAJOR}"; then | |
LLVM_VERSION_INT="${LLVM_VERSION_MAJOR}0${LLVM_VERSION_MINOR}" | |
else | |
- LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\)/\10\2/g'` | |
+ LLVM_VERSION_INT=`echo $LLVM_VERSION | sed -e 's/\([[0-9]]\)\.\([[0-9]]\).*/\10\2/g'` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
From 10dfeb9833be69dae8b3fd6e8cf7081cbda6fb46 Mon Sep 17 00:00:00 2001 | |
From: Alexander Tarasikov <[email protected]> | |
Date: Tue, 6 Sep 2016 14:38:06 +0300 | |
Subject: [PATCH] Fix compilation with LLVM 4.0.0 | |
--- | |
generic/lib/cl_khr_global_int32_base_atomics/atom_dec.cl | 2 +- | |
generic/lib/cl_khr_global_int32_base_atomics/atom_inc.cl | 2 +- | |
generic/lib/cl_khr_local_int32_base_atomics/atom_dec.cl | 2 +- | |
generic/lib/cl_khr_local_int32_base_atomics/atom_inc.cl | 2 +- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdint.h> | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <unistd.h> | |
#include <pthread.h> | |
/** | |
* Supported features: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdbool.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <math.h> | |
struct Octree; | |
typedef struct Octree Octree; | |
enum { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <stdlib.h> | |
#include <stdint.h> | |
#include <pthread.h> | |
#include <unistd.h> | |
#if 0 | |
#define YO do { printf("%s:%d\n", __func__, __LINE__); } while (0) | |
#else | |
#define YO do {} while (0) |