hc
2023-05-31 43fd8d44e8182b691c8ee61d487cec02ca11afd2
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
70
71
72
73
74
75
76
77
/*
 * Media controller interface library
 *
 * Copyright (C) 2010-2014 Ideas on board SPRL
 *
 * Contact: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published
 * by the Free Software Foundation; either version 2.1 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */
 
#ifndef __MEDIA_PRIV_H__
#define __MEDIA_PRIV_H__
 
#include <linux/media.h>
 
#include "mediactl.h"
 
#ifdef __ANDROID__
    #include <log/log.h>
#endif
 
struct media_entity {
    struct media_device* media;
    struct media_entity_desc info;
    struct media_pad* pads;
    struct media_link* links;
    unsigned int max_links;
    unsigned int num_links;
 
    char devname[32];
    int fd;
};
 
struct media_device {
    int fd;
    int refcount;
    char* devnode;
 
    struct media_device_info info;
    struct media_entity* entities;
    unsigned int entities_count;
 
    void (*debug_handler)(void*, ...);
    void* debug_priv;
 
    struct {
        struct media_entity* v4l;
        struct media_entity* fb;
        struct media_entity* alsa;
        struct media_entity* dvb;
    } def;
};
 
#ifndef __ANDROID__
    #define media_dbg(media, ...) (media)->debug_handler((media)->debug_priv, __VA_ARGS__)
#else
    #define __BI_FILENAME__ (__builtin_strrchr(__FILE__, '/') ? __builtin_strrchr(__FILE__, '/') + 1 : __FILE__)
 
    #define media_dbg(media, format, ...)                                                                              \
        do {                                                                                                           \
            ALOGD("%s:%d - " format "", __BI_FILENAME__, __LINE__, ##__VA_ARGS__);                                     \
        } while (0)
 
#endif
 
#endif /* __MEDIA_PRIV_H__ */