repo_full_name
stringlengths
6
93
repo_url
stringlengths
25
112
repo_api_url
stringclasses
28 values
owner
stringclasses
28 values
repo_name
stringclasses
28 values
description
stringclasses
28 values
stars
int64
617
98.8k
forks
int64
31
355
watchers
int64
990
999
license
stringclasses
2 values
default_branch
stringclasses
2 values
repo_created_at
timestamp[s]date
2012-07-24 23:12:50
2025-06-16 08:07:28
repo_updated_at
timestamp[s]date
2026-02-23 15:23:15
2026-05-03 18:52:12
repo_topics
listlengths
0
13
repo_languages
unknown
is_fork
bool
1 class
open_issues
int64
3
104
file_path
stringlengths
3
208
file_name
stringclasses
509 values
file_extension
stringclasses
1 value
file_size_bytes
int64
101
84k
file_url
stringclasses
627 values
file_raw_url
stringclasses
627 values
file_sha
stringclasses
624 values
language
stringclasses
8 values
parsed_at
stringdate
2026-05-04 01:12:36
2026-05-04 19:41:55
text
stringlengths
100
102k
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/jsonb.h
null
null
null
null
null
null
C
2026-05-04T19:31:43.525738
/*------------------------------------------------------------------------- * * jsonb.h * Declarations for jsonb data type support. * * Portions Copyright (c) 1996-2017, PostgreSQL Global Development Group * Portions Copyright (c) 2018, PipelineDB, Inc. * *-----------------------------------------------------...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/transform_receiver.h
null
null
null
null
null
null
C
2026-05-04T19:31:43.555423
/*------------------------------------------------------------------------- * * transform_receiver.h * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef TRANSFORM_RECEIVER_H #define TRANSFORM_RECEIVER_H #include "tcop/dest.h" #include ...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/topkfuncs.h
null
null
null
null
null
null
C
2026-05-04T19:31:43.912435
/*------------------------------------------------------------------------- * * topkfuncs.h * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef TOPKFUNCS_H #define TOPKFUNCS_H #include "postgres.h" #include "fmgr.h" #define TOPK_TYPEN...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/aggfuncs.c
null
null
null
null
null
null
C
2026-05-04T19:31:44.148732
/*------------------------------------------------------------------------- * * aggfuncs.c * Aggregate support functions * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include "postgres.h" #include "analyzer.h" #include "catalog/pg_ty...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/bloom.c
null
null
null
null
null
null
C
2026-05-04T19:31:44.218937
/*------------------------------------------------------------------------- * * bloom.c * Bloom Filter implementation. * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include "postgres.h" #include <math.h> #include "bloom.h" #include "...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/update.h
null
null
null
null
null
null
C
2026-05-04T19:31:44.231335
/*------------------------------------------------------------------------- * * update.h * Interface for anonymous update checks * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef PIPELINE_UPDATE_H #define PIPELINE_UPDATE_H #includ...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/microbatch.h
null
null
null
null
null
null
C
2026-05-04T19:31:44.533051
/*------------------------------------------------------------------------- * * microbatch.h * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef IPC_MICROBATCH_H #define IPC_MICROBATCH_H #include "postgres.h" #include "access/htup.h" ...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/bloomfuncs.c
null
null
null
null
null
null
C
2026-05-04T19:31:44.654002
/*------------------------------------------------------------------------- * * bloomfuncs.c * Bloom Filter functions * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include "postgres.h" #include "access/htup_details.h" #include "analyz...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/catalog.c
null
null
null
null
null
null
C
2026-05-04T19:31:44.782520
/*------------------------------------------------------------------------- * * catalog.c * PipelineDB catalog cache management routines * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include "postgres.h" #include "access/genam.h" #in...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/cmsketch.c
null
null
null
null
null
null
C
2026-05-04T19:31:44.894357
/*------------------------------------------------------------------------- * * cmsketch.c * Count-Min Sketch implementation. * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include <limits.h> #include <math.h> #include "cmsketch.h" #in...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/combiner_receiver.c
null
null
null
null
null
null
C
2026-05-04T19:31:45.424833
/*------------------------------------------------------------------------- * * combiner_receiver.c * An implementation of DestReceiver that that allows combiners to receive * tuples from worker processes. * * Copyright (c) 2018, PipelineDB, Inc. * *----------------------------------------------------------...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
src/combiner.c
null
null
null
null
null
null
C
2026-05-04T19:31:46.394581
/*------------------------------------------------------------------------- * * combiner.c * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #include "postgres.h" #include "access/htup_details.h" #include "access/xact.h" #include "analyzer.h...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/scheduler.h
null
null
null
null
null
null
C
2026-05-04T19:31:46.797152
/*------------------------------------------------------------------------- * * scheduler.h * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef CONT_SCHEDULER_H #define CONT_SCHEDULER_H #include "storage/latch.h" #include "port/atomics...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/stream_fdw.h
null
null
null
null
null
null
C
2026-05-04T19:31:47.508610
/*------------------------------------------------------------------------- * * stream_fdw.h * FDW for PipelineDB streams * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef STREAM_FDW_H #define STREAM_FDW_H #include "executor.h" #i...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/tdigest.h
null
null
null
null
null
null
C
2026-05-04T19:31:48.867989
/*------------------------------------------------------------------------- * * tdigest.h * Interface for t-digest support * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef TDIGEST_H #define TDIGEST_H #include "c.h" #include "node...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/bloom.h
null
null
null
null
null
null
C
2026-05-04T19:31:49.194633
/*------------------------------------------------------------------------- * * bloom.h * Interface for Bloom Filter support * * Copyright (c) 2018, PipelineDB, Inc. * *------------------------------------------------------------------------- */ #ifndef PIPELINE_BLOOM_H #define PIPELINE_BLOOM_H #include "c.h...
pipelinedb/pipelinedb
https://github.com/pipelinedb/pipelinedb
null
null
null
null
2,660
null
null
apache-2.0
null
null
null
null
null
null
null
include/tuplestore_scan.h
null
null
null
null
null
null
C
2026-05-04T19:31:49.218940
/*------------------------------------------------------------------------- * * tuplestore_scan.h * * Copyright (c) 2018, PipelineDB, Inc. * * ------------------------------------------------------------------------- */ #ifndef TUPLESTORE_SCAN_H #define TUPLESTORE_SCAN_H #include "postgres.h" #include "optimiz...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/include/esp_camera.h
null
null
null
null
null
null
C
2026-05-04T19:31:51.944569
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
conversions/private_include/yuv.h
null
null
null
null
null
null
C
2026-05-04T19:31:51.961108
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
conversions/yuv.c
null
null
null
null
null
null
C
2026-05-04T19:31:51.968354
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/include/esp_camera_af.h
null
null
null
null
null
null
C
2026-05-04T19:31:51.971361
#pragma once #include <stdbool.h> #include <stdint.h> #include "esp_err.h" #include "sensor.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Auto-focus modes. * * - AUTO: sensor runs its internal AF routine (continuous, if supported). * - MANUAL: AF is not running automatically; user triggers focus explic...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/esp_camera_af.c
null
null
null
null
null
null
C
2026-05-04T19:31:51.977008
#include "sdkconfig.h" #include "esp_camera_af.h" #include <string.h> #include "freertos/FreeRTOS.h" #include "freertos/task.h" #include "esp_timer.h" #ifndef CONFIG_CAMERA_AF_DEFAULT_TIMEOUT_MS #define CONFIG_CAMERA_AF_DEFAULT_TIMEOUT_MS 2000 #endif #if defined(CONFIG_CAMERA_AF_SUPPORT) && CONFIG_CAMERA_AF_SUPPOR...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/cam_hal.c
null
null
null
null
null
null
C
2026-05-04T19:31:52.003799
// Copyright 2010-2020 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
conversions/private_include/jpge.h
null
null
null
null
null
null
C
2026-05-04T19:31:52.025261
// jpge.h - C++ class for JPEG compression. // Public domain, Rich Geldreich <richgel99@gmail.com> // Alex Evans: Added RGBA support, linear memory allocator. #ifndef JPEG_ENCODER_H #define JPEG_ENCODER_H namespace jpge { typedef unsigned char uint8; typedef signed short int16; typedef signed int in...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/esp_camera.c
null
null
null
null
null
null
C
2026-05-04T19:31:52.381691
// Copyright 2015-2016 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/private_include/xclk.h
null
null
null
null
null
null
C
2026-05-04T19:31:52.584250
#pragma once #include "esp_system.h" #include "esp_camera.h" esp_err_t xclk_timer_conf(int ledc_timer, int xclk_freq_hz); esp_err_t camera_enable_out_clock(const camera_config_t *config); void camera_disable_out_clock(void);
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/sensor.c
null
null
null
null
null
null
C
2026-05-04T19:31:52.616844
#include <stdio.h> #include "sensor.h" const camera_sensor_info_t camera_sensor[CAMERA_MODEL_MAX] = { // The sequence must be consistent with camera_model_t {CAMERA_OV7725, "OV7725", OV7725_SCCB_ADDR, OV7725_PID, FRAMESIZE_VGA, false}, {CAMERA_OV2640, "OV2640", OV2640_SCCB_ADDR, OV2640_PID, FRAMESIZE_UXGA,...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/sccb.c
null
null
null
null
null
null
C
2026-05-04T19:31:52.668733
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * SCCB (I2C like) driver. * */ #include <stdbool.h> #include <string.h> #include <freertos/FreeRTOS.h> #include <...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/sccb-ng.c
null
null
null
null
null
null
C
2026-05-04T19:31:53.365008
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * SCCB (I2C like) driver with the new esp-idf I2C API. * */ #include <stdbool.h> #include <string.h> #include <fre...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/bf20a6.c
null
null
null
null
null
null
C
2026-05-04T19:31:53.522584
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/bf3005.c
null
null
null
null
null
null
C
2026-05-04T19:31:53.530554
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * BF3005 driver. * * Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD * * Licensed under the A...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
examples/camera_example/main/camera_pinout.h
null
null
null
null
null
null
C
2026-05-04T19:31:54.026253
// WROVER-KIT PIN Map #ifdef BOARD_WROVER_KIT #define CAM_PIN_PWDN -1 //power down is not used #define CAM_PIN_RESET -1 //software reset will be performed #define CAM_PIN_XCLK 21 #define CAM_PIN_SIOD 26 #define CAM_PIN_SIOC 27 #define CAM_PIN_D7 35 #define CAM_PIN_D6 34 #define CAM_PIN_D5 39 #define CAM_PIN_D4 36 #d...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/gc032a.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.162106
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/gc2145.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.171785
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
conversions/to_bmp.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.280277
// Copyright 2015-2025 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/hm0360.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.688505
/* * * HM0360 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include "sccb.h" #include "xclk.h" #include "hm0360.h" #include "hm0360_regs.h" #include "hm0360_settings.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #if defined(ARDUINO_ARCH_ESP32) && define...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/hm1055.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.753821
/* * * HM1055 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "xclk.h" #include "hm1055.h" #include "hm1055_regs.h" #include "hm1055_settings.h" #include "freertos/FreeRTOS.h" #include "freertos/task.h" #if defined(ARDUINO_ARCH_ESP32) && defined(CONFIG_ARDUHAL_ES...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/mega_ccm.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.837238
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/nt99141.c
null
null
null
null
null
null
C
2026-05-04T19:31:54.871668
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * NT99141 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "xcl...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov3660.c
null
null
null
null
null
null
C
2026-05-04T19:31:55.404281
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV3660 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "xclk...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov5640.c
null
null
null
null
null
null
C
2026-05-04T19:31:55.483124
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV3660 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "xclk...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov2640.c
null
null
null
null
null
null
C
2026-05-04T19:31:55.934028
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV2640 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "xclk...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov5640_af.c
null
null
null
null
null
null
C
2026-05-04T19:31:56.512273
/* * OV5640 Autofocus Implementation * * This file contains the sensor-specific autofocus implementation for OV5640. */ #include "sdkconfig.h" #if defined(CONFIG_CAMERA_AF_SUPPORT) && CONFIG_CAMERA_AF_SUPPORT #if defined(CONFIG_OV5640_SUPPORT) && CONFIG_OV5640_SUPPORT #include "ov5640.h" #include "ov5640_af_fir...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov7670.c
null
null
null
null
null
null
C
2026-05-04T19:31:56.513350
/* * This file is part of the OpenMV project. * author: Juan Schiavoni <juanjoseschiavoni@hotmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV7725 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include "sccb.h" #include "ov7670.h" #includ...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/bf20a6_regs.h
null
null
null
null
null
null
C
2026-05-04T19:31:57.209782
/* * BF20A6 register definitions. */ #ifndef __BF20A6_REG_REGS_H__ #define __BF20A6_REG_REGS_H__ #define SENSOR_ID_HIGH 0XFC #define SENSOR_ID_LOW 0XFD #define RESET_RELATED 0XF2 #endif //__BF20A6_REG_REGS_H__
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/bf20a6_settings.h
null
null
null
null
null
null
C
2026-05-04T19:31:57.213466
#include <stdint.h> #define REG_DLY 0xffff #define REGLIST_TAIL 0xffff /* Array end token */ static const uint16_t bf20a6_default_init_regs[][2] = { {0xf2,0x01}, {0x12,0x20}, {0x3a,0x00}, {0xe1,0x92}, {0xe3,0x12},// PLL Control, important for framerate(choice: 0x02\0x12\0x22\0x32\0x82) {0xe0,...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/include/sensor.h
null
null
null
null
null
null
C
2026-05-04T19:31:57.869571
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * Sensor abstraction layer. * */ #ifndef __SENSOR_H__ #define __SENSOR_H__ #include <stdint.h> #include <stdbool.h...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/private_include/sccb.h
null
null
null
null
null
null
C
2026-05-04T19:31:57.974371
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * SCCB (I2C like) driver. * */ #ifndef __SCCB_H__ #define __SCCB_H__ #include <stdint.h> int SCCB_Init(int pin_sda...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc0308_regs.h
null
null
null
null
null
null
C
2026-05-04T19:31:58.815067
/* * GC0308 register definitions. * Based on GC0308 datasheet specifications */ #ifndef __GC0308_REG_REGS_H__ #define __GC0308_REG_REGS_H__ // System Control Registers #define RESET_RELATED 0xfe // Bit[7]: Software reset // Bit[6:5]: NA // Bit[4]:...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc0308.h
null
null
null
null
null
null
C
2026-05-04T19:31:58.885004
#pragma once #include "sensor.h" #ifdef __cplusplus extern "C" { #endif /** * @brief Detect sensor pid * * @param slv_addr SCCB address * @param id Detection result * @return * 0: Can't detect this sensor * Nonzero: This sensor has been detected */ int esp32_camera_gc0308_detect(int slv_addr, s...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
examples/camera_example/main/take_picture.c
null
null
null
null
null
null
C
2026-05-04T19:31:59.072747
/** * This example takes a picture every 5s and print its size on serial monitor. */ // =============================== SETUP ====================================== // 1. Board setup (Uncomment): // #define BOARD_WROVER_KIT // #define BOARD_ESP32CAM_AITHINKER // #define BOARD_ESP32S3_WROOM // #define BOARD_ESP32S3_...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/bf3005.h
null
null
null
null
null
null
C
2026-05-04T19:31:59.228798
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * BF3005 driver. * */ #ifndef __BF3005_H__ #define __BF3005_H__ #include "sensor.h" /** * @brief De...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/gc0308.c
null
null
null
null
null
null
C
2026-05-04T19:31:59.430161
// Copyright 2015-2021 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by app...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc0308_settings.h
null
null
null
null
null
null
C
2026-05-04T19:31:59.672591
#ifndef _GC0308_SETTINGS_H_ #define _GC0308_SETTINGS_H_ #include <stdint.h> #define REG_DLY 0xff static const uint8_t gc0308_sensor_default_regs[][2] = { {0xfe, 0x00}, {0xec, 0x20}, {0x05, 0x00}, {0x06, 0x00}, {0x07, 0x00}, {0x08, 0x00}, {0x09, 0x01}, {0x0a, 0xe8}, {0x0b, 0x02}, ...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc032a.h
null
null
null
null
null
null
C
2026-05-04T19:31:59.679155
/* * * GC032A driver. * */ #ifndef __GC032A_H__ #define __GC032A_H__ #include "sensor.h" /** * @brief Detect sensor pid * * @param slv_addr SCCB address * @param id Detection result * @return * 0: Can't detect this sensor * Nonzero: This sensor has been detected */ int esp32_camera_gc032a_de...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc032a_settings.h
null
null
null
null
null
null
C
2026-05-04T19:31:59.874651
#ifndef _GC032A_SETTINGS_H_ #define _GC032A_SETTINGS_H_ #include <stdint.h> #include <stdbool.h> #include "esp_attr.h" #include "gc032a_regs.h" #define REG_DLY 0xffff #define REGLIST_TAIL 0x0000 /* * The default register settings, as obtained from OmniVision. There * is really no making sense of most of these -...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc032a_regs.h
null
null
null
null
null
null
C
2026-05-04T19:31:59.901536
/* * GC032A register definitions. */ #ifndef __GC032A_REG_REGS_H__ #define __GC032A_REG_REGS_H__ #define SENSOR_ID_HIGH 0XF0 #define SENSOR_ID_LOW 0XF1 #define PAD_VB_HIZ_MODE 0XF2 #define SYNC_OUTPUT 0XF3 #define I2C_CONFIG 0XF4 #define PLL_MODE1 0XF7 #define PLL_MODE2 0XF8 #define CM_MODE 0XF9 #define ISP_DIV_MODE...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc2145_settings.h
null
null
null
null
null
null
C
2026-05-04T19:32:00.441832
#include <stdint.h> #define REG_DLY 0xffff #define REGLIST_TAIL 0x0000 /* Array end token */ static const uint16_t gc2145_default_init_regs[][2] = { {0xfe, 0xf0}, {0xfe, 0xf0}, {0xfe, 0xf0}, {0xfc, 0x06}, {0xf6, 0x00}, {0xf7, 0x1d}, //37 //17 //37 //1d//05 {0xf8, 0x83}, //87 //83 //82 ...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/hm0360_regs.h
null
null
null
null
null
null
C
2026-05-04T19:32:00.748156
/* * HM1055 register definitions. */ #ifndef __REG_REGS_H__ #define __REG_REGS_H__ // Sensor ID #define MODEL_ID_H 0x0000 #define MODEL_ID_L 0x0001 #define SILICON_REV 0x0002 #define FRAME_COUNT_H 0x0005 #define FRAME_COUNT_L 0x0006 #define PIXEL_ODERDER 0x0007 // Snesor mode control #define MODEL_SELECT 0x0100 #de...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc2145.h
null
null
null
null
null
null
C
2026-05-04T19:32:00.942645
#ifndef __GC2145_H__ #define __GC2145_H__ #include "sensor.h" /** * @brief Detect sensor pid * * @param slv_addr SCCB address * @param id Detection result * @return * 0: Can't detect this sensor * Nonzero: This sensor has been detected */ int esp32_camera_gc2145_detect(int slv_addr, sensor_id_t...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/gc2145_regs.h
null
null
null
null
null
null
C
2026-05-04T19:32:01.580359
/* * GC2145 register definitions. */ #ifndef __GC2145_REG_REGS_H__ #define __GC2145_REG_REGS_H__ #define CHIP_ID_HIGH 0XF0 #define CHIP_ID_LOW 0XF1 #define PLL_MODE1 0XF7 #define PLL_MODE2 0XF8 #define CM_MODE 0XF9 #define CLK_DIV_MODE 0XFA #define RESET_RELATED 0xfe // Bit[7]: Software reset ...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/bf20a6.h
null
null
null
null
null
null
C
2026-05-04T19:32:01.675385
#ifndef __BF20A6_H__ #define __BF20A6_H__ #include "sensor.h" /** * @brief Detect sensor pid * * @param slv_addr SCCB address * @param id Detection result * @return * 0: Can't detect this sensor * Nonzero: This sensor has been detected */ int esp32_camera_bf20a6_detect(int slv_addr, sensor_id_t...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/bf3005_regs.h
null
null
null
null
null
null
C
2026-05-04T19:32:02.071815
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * BF3005 register definitions. */ #ifndef __REG_REGS_H__ #define __REG_REGS_H__ #if 0 #define GAIN ...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
conversions/include/img_converters.h
null
null
null
null
null
null
C
2026-05-04T19:32:02.086046
// Copyright 2015-2025 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
driver/private_include/cam_hal.h
null
null
null
null
null
null
C
2026-05-04T19:32:03.921103
// Copyright 2010-2020 Espressif Systems (Shanghai) PTE LTD // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by a...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/ov7725.c
null
null
null
null
null
null
C
2026-05-04T19:32:06.292687
/* * This file is part of the OpenMV project. * Copyright (c) 2013/2014 Ibrahim Abdelkader <i.abdalkader@gmail.com> * This work is licensed under the MIT license, see the file LICENSE for details. * * OV7725 driver. * */ #include <stdint.h> #include <stdlib.h> #include <string.h> #include <stdio.h> #include "scc...
espressif/esp32-camera
https://github.com/espressif/esp32-camera
null
null
null
null
2,643
null
null
apache-2.0
null
null
null
null
null
null
null
sensors/private_include/hm0360.h
null
null
null
null
null
null
C
2026-05-04T19:32:11.191740
/* * HM0360 driver. */ #ifndef __HM0360_H__ #define __HM0360_H__ #include "sensor.h" /** * @brief Detect sensor pid * * @param slv_addr SCCB address * @param id Detection result * @return * 0: Can't detect this sensor * Nonzero: This sensor has been detected */ int esp32_camera_hm0360_detect(int...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/cdjpeg.h
null
null
null
null
null
null
C
2026-05-04T19:32:15.717349
/* * cdjpeg.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jconfig.h
null
null
null
null
null
null
C
2026-05-04T19:32:15.722392
/* jconfig.h. Generated from jconfig.h.in by configure. */ /* Version ID for the JPEG library. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". */ #define JPEG_LIB_VERSION 62 /* libjpeg-turbo version */ #define LIBJPEG_TURBO_VERSION 1.5.2 /* libjpeg-turbo version in integer form */ #define LIBJPEG_T...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jinclude.h
null
null
null
null
null
null
C
2026-05-04T19:32:15.723539
/* * jinclude.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1994, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * Thi...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/config.h
null
null
null
null
null
null
C
2026-05-04T19:32:15.757451
/* config.h. Generated from config.h.in by configure. */ /* config.h.in. Generated from configure.ac by autoheader. */ /* use 8 or 12 */ /* #undef BITS_IN_JSAMPLE */ /* libjpeg-turbo build number */ #define BUILD "20170221" /* Support arithmetic encoding */ #define C_ARITH_CODING_SUPPORTED 1 /* Support arithmet...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jpeglib.h
null
null
null
null
null
null
C
2026-05-04T19:32:15.899501
/* * jpeglib.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1998, Thomas G. Lane. * Modified 2002-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009-2011, 2013-2014, 2016, D. R. Commander. * Copyright (C) 2015, Google, Inc. * For conditions of...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jerror.h
null
null
null
null
null
null
C
2026-05-04T19:32:16.005706
/* * jerror.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * Modified 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2014, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * f...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/cderror.h
null
null
null
null
null
null
C
2026-05-04T19:32:16.667258
/* * cderror.h * * Copyright (C) 1994-1997, Thomas G. Lane. * Modified 2009 by Guido Vollbeding. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file defines the error and message codes for the cjpeg/djpeg ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/com_zxy_libjpegturbo_JpegTurboCompressor.c
null
null
null
null
null
null
C
2026-05-04T19:32:16.667960
// // Created by zhengxiaoyong on 2017/2/23. // #include <string.h> #include <android/bitmap.h> #include <android/log.h> #include <stdio.h> #include <setjmp.h> #include <math.h> #include "include/jpeglib.h" #include "include/cdjpeg.h" // // Native interface, it will be call in java code // #define LOG_TAG "jni" #defi...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/include/jconfig.h
null
null
null
null
null
null
C
2026-05-04T19:32:16.785317
/* jconfig.h. Generated from jconfig.h.in by configure. */ /* Version ID for the JPEG library. * Might be useful for tests like "#if JPEG_LIB_VERSION >= 60". */ #define JPEG_LIB_VERSION 62 /* libjpeg-turbo version */ #define LIBJPEG_TURBO_VERSION 1.5.2 /* libjpeg-turbo version in integer form */ #define LIBJPEG_T...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/bmp.c
null
null
null
null
null
null
C
2026-05-04T19:32:16.786571
/* * Copyright (C)2011, 2015 D. R. Commander. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of co...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/include/jconfigint.h
null
null
null
null
null
null
C
2026-05-04T19:32:16.826683
/* jconfigint.h. Generated from jconfigint.h.in by configure. */ /* libjpeg-turbo build number */ #define BUILD "20170221" /* Compiler's inline keyword */ /* #undef inline */ /* How to obtain function inlining. */ #define INLINE inline __attribute__((always_inline)) /* Define to the full name of this package. */ #...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/cdjpeg.c
null
null
null
null
null
null
C
2026-05-04T19:32:17.008525
/* * cdjpeg.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jversion.h
null
null
null
null
null
null
C
2026-05-04T19:32:17.384123
/* * jversion.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-2012, Thomas G. Lane, Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2010, 2012-2017, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * T...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/cdjpeg.h
null
null
null
null
null
null
C
2026-05-04T19:32:17.573077
/* * cdjpeg.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/cjpeg.c
null
null
null
null
null
null
C
2026-05-04T19:32:17.603074
/* * cjpeg.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1998, Thomas G. Lane. * Modified 2003-2011 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2010, 2013-2014, 2017, D. R. Commander. * For conditions of distribution and use, see the accompanying...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/example.c
null
null
null
null
null
null
C
2026-05-04T19:32:17.724591
/* * example.c * * This file illustrates how to use the IJG code as a subroutine library * to read or write JPEG image files. You should look at this code in * conjunction with the documentation file libjpeg.txt. * * This code will not do anything useful as-is, but it may be helpful as a * skeleton for constru...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jaricom.c
null
null
null
null
null
null
C
2026-05-04T19:32:17.843775
/* * jaricom.c * * This file was part of the Independent JPEG Group's software: * Developed 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2015, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains probability ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/cderror.h
null
null
null
null
null
null
C
2026-05-04T19:32:18.856050
/* * cderror.h * * Copyright (C) 1994-1997, Thomas G. Lane. * Modified 2009 by Guido Vollbeding. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file defines the error and message codes for the cjpeg/djpeg ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo-sdk/src/main/jni/include/jmorecfg.h
null
null
null
null
null
null
C
2026-05-04T19:32:19.162713
/* * jmorecfg.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * Modified 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009, 2011, 2014-2015, D. R. Commander. * For conditions of distribution and use, see the accompany...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jccoefct.c
null
null
null
null
null
null
C
2026-05-04T19:32:19.286991
/* * jccoefct.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code and * information relevant to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg *...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jccolext.c
null
null
null
null
null
null
C
2026-05-04T19:32:19.609569
/* * jccolext.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1996, Thomas G. Lane. * libjpeg-turbo Modifications: * Copyright (C) 2009-2012, 2015, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jccolor.c
null
null
null
null
null
null
C
2026-05-04T19:32:20.033902
/* * jccolor.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1996, Thomas G. Lane. * libjpeg-turbo Modifications: * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB * Copyright (C) 2009-2012, 2015, D. R. Commander. * Copyright (C) 2014, MIPS Technologies, Inc...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcdctmgr.c
null
null
null
null
null
null
C
2026-05-04T19:32:20.438409
/* * jcdctmgr.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1996, Thomas G. Lane. * libjpeg-turbo Modifications: * Copyright (C) 1999-2006, MIYASAKA Masaru. * Copyright 2009 Pierre Ossman <ossman@cendio.se> for Cendio AB * Copyright (C) 2011, 2014-2015, D. R. Commander....
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jchuff.h
null
null
null
null
null
null
C
2026-05-04T19:32:20.739898
/* * jchuff.h * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This ...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcinit.c
null
null
null
null
null
null
C
2026-05-04T19:32:21.041853
/* * jcinit.c * * Copyright (C) 1991-1997, Thomas G. Lane. * This file is part of the Independent JPEG Group's software. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains initialization logic for the JPEG compressor. * This routine is in charge of selectin...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcarith.c
null
null
null
null
null
null
C
2026-05-04T19:32:21.075052
/* * jcarith.c * * This file was part of the Independent JPEG Group's software: * Developed 1997-2009 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2015, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains portable ari...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcmainct.c
null
null
null
null
null
null
C
2026-05-04T19:32:21.351053
/* * jcmainct.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1996, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * Thi...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/bmp.h
null
null
null
null
null
null
C
2026-05-04T19:32:21.485908
/* * Copyright (C)2011 D. R. Commander. All Rights Reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * - Redistributions of source code must retain the above copyright notice, * this list of conditio...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcmarker.c
null
null
null
null
null
null
C
2026-05-04T19:32:21.723384
/* * jcmarker.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1998, Thomas G. Lane. * Modified 2003-2010 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2010, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg *...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcomapi.c
null
null
null
null
null
null
C
2026-05-04T19:32:22.080720
/* * jcomapi.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1994-1997, Thomas G. Lane. * It was modified by The libjpeg-turbo Project to include only code relevant * to libjpeg-turbo. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcparam.c
null
null
null
null
null
null
C
2026-05-04T19:32:22.424398
/* * jcparam.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1998, Thomas G. Lane. * Modified 2003-2008 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2009-2011, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ij...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/djpeg.c
null
null
null
null
null
null
C
2026-05-04T19:32:22.602762
/* * djpeg.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1991-1997, Thomas G. Lane. * Modified 2013 by Guido Vollbeding. * libjpeg-turbo Modifications: * Copyright (C) 2010-2011, 2013-2016, D. R. Commander. * Copyright (C) 2015, Google, Inc. * For conditions of distribution...
Sunzxyong/Tiny
https://github.com/Sunzxyong/Tiny
null
null
null
null
2,635
null
null
apache-2.0
null
null
null
null
null
null
null
libjpeg-turbo/src/main/jni/libjpeg-turbo/libjpeg-turbo-1.5.2/jcphuff.c
null
null
null
null
null
null
C
2026-05-04T19:32:22.629183
/* * jcphuff.c * * This file was part of the Independent JPEG Group's software: * Copyright (C) 1995-1997, Thomas G. Lane. * libjpeg-turbo Modifications: * Copyright (C) 2015, D. R. Commander. * For conditions of distribution and use, see the accompanying README.ijg * file. * * This file contains Huffman entr...