hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Copyright 2019 Fuzhou Rockchip Electronics Co., Ltd. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
 
#ifndef EASYMEDIA_V4L2_UTILS_H_
#define EASYMEDIA_V4L2_UTILS_H_
 
#include <linux/videodev2.h>
#include <stdarg.h>
#include <string.h>
#include <unistd.h>
 
#include "key_string.h"
#include "media_type.h"
#include "rkaiq/common/mediactl/mediactl.h"
#include "utils.h"
 
#ifndef V4L2_PIX_FMT_FBC2
    #define V4L2_PIX_FMT_FBC2 v4l2_fourcc('F', 'B', 'C', '2')
    #define V4L2_PIX_FMT_FBC0 v4l2_fourcc('F', 'B', 'C', '0')
#endif
 
#define DEV_PATH_LEN 64
#define MAX_MEDIA_INDEX 20
 
#define DRIVER_NAME "rkispp"
#define MB_ENTITY_NAME DRIVER_NAME "_m_bypass"
#define S0_ENTITY_NAME DRIVER_NAME "_scale0"
#define S1_ENTITY_NAME DRIVER_NAME "_scale1"
#define S2_ENTITY_NAME DRIVER_NAME "_scale2"
 
typedef struct {
    char media_dev_path[DEV_PATH_LEN];
    char ispp_m_bypass_path[DEV_PATH_LEN];
    char ispp_scale0_path[DEV_PATH_LEN];
    char ispp_scale1_path[DEV_PATH_LEN];
    char ispp_scale2_path[DEV_PATH_LEN];
} ispp_t;
 
typedef struct {
    char media_dev_path[DEV_PATH_LEN];
    char isp_main_path[DEV_PATH_LEN];
    char isp_self_path[DEV_PATH_LEN];
} isp_t;
 
namespace easymedia
{
 
    __u32 GetV4L2Type(const char* v4l2type);
    __u32 GetV4L2FmtByString(const char* type);
    __u32 GetV4L2ColorSpaceByString(const char* type);
    const std::string& GetStringOfV4L2Fmts();
 
    typedef struct {
        int (*open_f)(const char* file, int oflag, ...);
        int (*close_f)(int fd);
        int (*dup_f)(int fd);
        int (*ioctl_f)(int fd, unsigned long int request, ...);
        ssize_t (*read_f)(int fd, void* buffer, size_t n);
        void* (*mmap_f)(void* start, size_t length, int prot, int flags, int fd, int64_t offset);
        int (*munmap_f)(void* _start, size_t length);
    } v4l2_io;
 
    bool SetV4L2IoFunction(v4l2_io* vio, bool use_libv4l2 = false);
    int V4L2IoCtl(v4l2_io* vio, int fd, unsigned long int request, void* arg);
 
} // namespace easymedia
 
#endif // #ifndef EASYMEDIA_V4L2_UTILS_H_