luckfox-pico-sdk/media/samples/example/vi/sample_vi.c
luckfox-eng29 8f34c2760d project:build.sh: Added fastboot support; custom modifications to U-Boot and kernel implemented using patches.
project:cfg:BoardConfig_IPC: Added fastboot BoardConfig file and firmware post-scripts, distinguishing between
the BoardConfigs for Luckfox Pico Pro and Luckfox Pico Max. project:app: Added fastboot_client and rk_smart_door
for quick boot applications; updated rkipc app to adapt to the latest media library. media:samples: Added more
usage examples. media:rockit: Fixed bugs; removed support for retrieving data frames from VPSS. media:isp:
Updated rkaiq library and related tools to support connection to RKISP_Tuner. sysdrv:Makefile: Added support for
compiling drv_ko on Luckfox Pico Ultra W using Ubuntu; added support for custom root filesystem.
sysdrv:tools:board: Updated Buildroot optional mirror sources, updated some software versions, and stored device
tree files and configuration files that undergo multiple modifications for U-Boot and kernel separately.
sysdrv:source:mcu: Used RISC-V MCU SDK with RT-Thread system, mainly for initializing camera AE during quick
boot. sysdrv:source:uboot: Added support for fastboot; added high baud rate DDR bin for serial firmware upgrades.
sysdrv:source:kernel: Upgraded to version 5.10.160; increased NPU frequency for RV1106G3; added support for
fastboot.

Signed-off-by: luckfox-eng29 <eng29@luckfox.com>
2024-10-14 09:47:04 +08:00

336 lines
8.9 KiB
C

/*
* Copyright 2023 Rockchip Electronics Co. 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 applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
#ifdef __cplusplus
#if __cplusplus
extern "C" {
#endif
#endif /* End of #ifdef __cplusplus */
#include <assert.h>
#include <errno.h>
#include <fcntl.h>
#include <getopt.h>
#include <pthread.h>
#include <signal.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/prctl.h>
#include <time.h>
#include <unistd.h>
#include "sample_comm.h"
typedef struct _rkMpiCtx {
SAMPLE_VI_CTX_S vi;
} SAMPLE_MPI_CTX_S;
static bool quit = false;
static void sigterm_handler(int sig) {
fprintf(stderr, "signal %d\n", sig);
quit = true;
}
static RK_CHAR optstr[] = "?::a::d:c:f:w:h:o:I:l:m:";
static const struct option long_options[] = {
{"aiq", optional_argument, NULL, 'a'},
{"device_name", required_argument, NULL, 'd'},
{"chn_id", required_argument, NULL, 'c'},
{"pixel_format", optional_argument, NULL, 'f'},
{"width", required_argument, NULL, 'w'},
{"height", required_argument, NULL, 'h'},
{"output_path", required_argument, NULL, 'o'},
{"camid", required_argument, NULL, 'I'},
{"loop_count", required_argument, NULL, 'l'},
{"hdr_mode", required_argument, NULL, 'h' + 'm'},
{"help", optional_argument, NULL, '?'},
{NULL, 0, NULL, 0},
};
/******************************************************************************
* function : show usage
******************************************************************************/
static void print_usage(const RK_CHAR *name) {
printf("usage example:\n");
printf("\t%s -w 1920 -h 1080 -a /etc/iqfiles/ -l 10 -o /data/\n", name);
#ifdef RKAIQ
printf("\t-a | --aiq: enable aiq with dirpath provided, eg:-a /etc/iqfiles/, "
"set dirpath empty to using path by default, without this option aiq "
"should run in other application\n");
#endif
printf("\t-d | --device_name: set pcDeviceName, eg: /dev/video0 Default "
"NULL\n");
printf("\t-c | --chn_id: channel id, default: 1\n");
printf("\t-f | --pixel_format: camera Format, Default nv12, "
"Value:nv12,nv16,uyvy,yuyv.\n");
printf("\t-w | --width: camera with, Default 1920\n");
printf("\t-h | --height: camera height, Default 1080\n");
printf("\t-o | --output_path: vi output file path, Default NULL\n");
printf("\t-I | --camid: camera ctx id, Default 0\n");
printf("\t-l | --loop_count: loop count, Default -1\n");
printf("\t--hdr_mode: set hdr mode, 0: normal 1: HDR2, 2: HDR3, Default: 0\n");
}
/******************************************************************************
* function : vi thread
******************************************************************************/
static void *vi_get_stream(void *pArgs) {
SAMPLE_VI_CTX_S *ctx = (SAMPLE_VI_CTX_S *)(pArgs);
RK_S32 s32Ret = RK_FAILURE;
char name[256] = {0};
FILE *fp = RK_NULL;
void *pData = RK_NULL;
RK_S32 loopCount = 0;
if (ctx->dstFilePath) {
snprintf(name, sizeof(name), "/%s/vi_%d.bin", ctx->dstFilePath, ctx->s32DevId);
fp = fopen(name, "wb");
if (fp == RK_NULL) {
printf("chn %d can't open %s file !\n", ctx->s32DevId, ctx->dstFilePath);
quit = true;
return RK_NULL;
}
}
while (!quit) {
s32Ret = SAMPLE_COMM_VI_GetChnFrame(ctx, &pData);
if (s32Ret == RK_SUCCESS) {
if (ctx->stViFrame.stVFrame.u64PrivateData <= 0) {
// SAMPLE_COMM_VI_ReleaseChnFrame(ctx);
// continue;
}
// exit when complete
if (ctx->s32loopCount > 0) {
if (loopCount >= ctx->s32loopCount) {
SAMPLE_COMM_VI_ReleaseChnFrame(ctx);
quit = true;
break;
}
}
if (fp) {
fwrite(pData, 1, ctx->stViFrame.stVFrame.u64PrivateData, fp);
fflush(fp);
}
printf(
"SAMPLE_COMM_VI_GetChnFrame DevId %d ok:data %p size:%llu loop:%d seq:%d "
"pts:%lld ms\n",
ctx->s32DevId, pData, ctx->stViFrame.stVFrame.u64PrivateData, loopCount,
ctx->stViFrame.stVFrame.u32TimeRef,
ctx->stViFrame.stVFrame.u64PTS / 1000);
SAMPLE_COMM_VI_ReleaseChnFrame(ctx);
loopCount++;
}
usleep(1000);
}
if (fp)
fclose(fp);
return RK_NULL;
}
/******************************************************************************
* function : main()
* Description : main
******************************************************************************/
int main(int argc, char *argv[]) {
SAMPLE_MPI_CTX_S *ctx;
RK_U32 u32ViWidth = 1920;
RK_U32 u32ViHeight = 1080;
RK_CHAR *pOutPath = NULL;
RK_CHAR *pDeviceName = NULL;
RK_S32 s32CamId = 0;
RK_S32 s32ChnId = 1;
RK_S32 s32loopCnt = -1;
PIXEL_FORMAT_E PixelFormat = RK_FMT_YUV420SP;
COMPRESS_MODE_E CompressMode = COMPRESS_MODE_NONE;
rk_aiq_working_mode_t hdr_mode = RK_AIQ_WORKING_MODE_NORMAL;
pthread_t vi_thread_id;
if (argc < 2) {
print_usage(argv[0]);
return 0;
}
ctx = (SAMPLE_MPI_CTX_S *)(malloc(sizeof(SAMPLE_MPI_CTX_S)));
memset(ctx, 0, sizeof(SAMPLE_MPI_CTX_S));
signal(SIGINT, sigterm_handler);
#ifdef RKAIQ
RK_BOOL bMultictx = RK_FALSE;
#endif
int c;
char *iq_file_dir = NULL;
while ((c = getopt_long(argc, argv, optstr, long_options, NULL)) != -1) {
const char *tmp_optarg = optarg;
switch (c) {
case 'a':
if (!optarg && NULL != argv[optind] && '-' != argv[optind][0]) {
tmp_optarg = argv[optind++];
}
if (tmp_optarg) {
iq_file_dir = (char *)tmp_optarg;
} else {
iq_file_dir = NULL;
}
break;
case 'd':
pDeviceName = optarg;
break;
case 'c':
s32ChnId = atoi(optarg);
break;
case 'f':
if (!strcmp(optarg, "nv12")) {
PixelFormat = RK_FMT_YUV420SP;
} else if (!strcmp(optarg, "nv16")) {
PixelFormat = RK_FMT_YUV422SP;
} else if (!strcmp(optarg, "uyvy")) {
PixelFormat = RK_FMT_YUV422_UYVY;
} else if (!strcmp(optarg, "yuyv")) {
PixelFormat = RK_FMT_YUV422_YUYV;
}
#if defined(RV1106)
else if (!strcmp(optarg, "rgb565")) {
PixelFormat = RK_FMT_RGB565;
s32ChnId = 1;
} else if (!strcmp(optarg, "xbgr8888")) {
PixelFormat = RK_FMT_XBGR8888;
s32ChnId = 1;
}
#endif
else {
RK_LOGE("this pixel_format is not supported in the sample");
print_usage(argv[0]);
goto __FAILED2;
}
break;
case 'w':
u32ViWidth = atoi(optarg);
break;
case 'h':
u32ViHeight = atoi(optarg);
break;
case 'I':
s32CamId = atoi(optarg);
break;
case 'l':
s32loopCnt = atoi(optarg);
break;
case 'o':
pOutPath = optarg;
break;
case 'h' + 'm':
if (atoi(optarg) == 0) {
hdr_mode = RK_AIQ_WORKING_MODE_NORMAL;
} else if (atoi(optarg) == 1) {
hdr_mode = RK_AIQ_WORKING_MODE_ISP_HDR2;
} else if (atoi(optarg) == 2) {
hdr_mode = RK_AIQ_WORKING_MODE_ISP_HDR3;
} else {
RK_LOGE("input hdr_mode is not support(error)");
print_usage(argv[0]);
goto __FAILED2;
}
break;
case '?':
default:
print_usage(argv[0]);
return 0;
}
}
printf("#CameraIdx: %d\n", s32CamId);
printf("#pDeviceName: %s\n", pDeviceName);
printf("#Output Path: %s\n", pOutPath);
printf("#IQ Path: %s\n", iq_file_dir);
if (iq_file_dir) {
#ifdef RKAIQ
printf("#Rkaiq XML DirPath: %s\n", iq_file_dir);
printf("#bMultictx: %d\n\n", bMultictx);
SAMPLE_COMM_ISP_Init(s32CamId, hdr_mode, bMultictx, iq_file_dir);
SAMPLE_COMM_ISP_Run(s32CamId);
#endif
}
if (RK_MPI_SYS_Init() != RK_SUCCESS) {
goto __FAILED;
}
// Init VI
ctx->vi.u32Width = u32ViWidth;
ctx->vi.u32Height = u32ViHeight;
ctx->vi.s32DevId = s32CamId;
ctx->vi.u32PipeId = ctx->vi.s32DevId;
ctx->vi.s32ChnId = s32ChnId;
ctx->vi.stChnAttr.stIspOpt.u32BufCount = 2;
ctx->vi.stChnAttr.stIspOpt.enMemoryType = VI_V4L2_MEMORY_TYPE_DMABUF;
ctx->vi.stChnAttr.u32Depth = 1;
ctx->vi.stChnAttr.enPixelFormat = PixelFormat;
ctx->vi.stChnAttr.enCompressMode = CompressMode;
ctx->vi.stChnAttr.stFrameRate.s32SrcFrameRate = -1;
ctx->vi.stChnAttr.stFrameRate.s32DstFrameRate = -1;
ctx->vi.dstFilePath = pOutPath;
ctx->vi.s32loopCount = s32loopCnt;
if (pDeviceName) {
strcpy(ctx->vi.stChnAttr.stIspOpt.aEntityName, pDeviceName);
}
SAMPLE_COMM_VI_CreateChn(&ctx->vi);
pthread_create(&vi_thread_id, 0, vi_get_stream, (void *)(&ctx->vi));
printf("%s initial finish\n", __func__);
while (!quit) {
sleep(1);
}
printf("%s exit!\n", __func__);
pthread_join(vi_thread_id, NULL);
// Destroy VI
SAMPLE_COMM_VI_DestroyChn(&ctx->vi);
__FAILED:
RK_MPI_SYS_Exit();
if (iq_file_dir) {
#ifdef RKAIQ
SAMPLE_COMM_ISP_Stop(s32CamId);
#endif
}
__FAILED2:
if (ctx) {
free(ctx);
ctx = RK_NULL;
}
return 0;
}
#ifdef __cplusplus
#if __cplusplus
}
#endif
#endif /* End of #ifdef __cplusplus */