]> git.sesse.net Git - ffmpeg/blob - libavdevice/avdevice.c
hwcontext_drm: make dependency on Linux kernel headers optional
[ffmpeg] / libavdevice / avdevice.c
1 /*
2  * This file is part of FFmpeg.
3  *
4  * FFmpeg is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * FFmpeg is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with FFmpeg; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17  */
18
19 #include "libavutil/avassert.h"
20 #include "libavutil/samplefmt.h"
21 #include "libavutil/pixfmt.h"
22 #include "libavcodec/avcodec.h"
23 #include "avdevice.h"
24 #include "internal.h"
25 #include "config.h"
26
27 #include "libavutil/ffversion.h"
28 const char av_device_ffversion[] = "FFmpeg version " FFMPEG_VERSION;
29
30 #define E AV_OPT_FLAG_ENCODING_PARAM
31 #define D AV_OPT_FLAG_DECODING_PARAM
32 #define A AV_OPT_FLAG_AUDIO_PARAM
33 #define V AV_OPT_FLAG_VIDEO_PARAM
34 #define OFFSET(x) offsetof(AVDeviceCapabilitiesQuery, x)
35
36 const AVOption av_device_capabilities[] = {
37     { "codec", "codec", OFFSET(codec), AV_OPT_TYPE_INT,
38         {.i64 = AV_CODEC_ID_NONE}, AV_CODEC_ID_NONE, INT_MAX, E|D|A|V },
39     { "sample_format", "sample format", OFFSET(sample_format), AV_OPT_TYPE_SAMPLE_FMT,
40         {.i64 = AV_SAMPLE_FMT_NONE}, AV_SAMPLE_FMT_NONE, INT_MAX, E|D|A },
41     { "sample_rate", "sample rate", OFFSET(sample_rate), AV_OPT_TYPE_INT,
42         {.i64 = -1}, -1, INT_MAX, E|D|A },
43     { "channels", "channels", OFFSET(channels), AV_OPT_TYPE_INT,
44         {.i64 = -1}, -1, INT_MAX, E|D|A },
45     { "channel_layout", "channel layout", OFFSET(channel_layout), AV_OPT_TYPE_CHANNEL_LAYOUT,
46         {.i64 = -1}, -1, INT_MAX, E|D|A },
47     { "pixel_format", "pixel format", OFFSET(pixel_format), AV_OPT_TYPE_PIXEL_FMT,
48         {.i64 = AV_PIX_FMT_NONE}, AV_PIX_FMT_NONE, INT_MAX, E|D|V },
49     { "window_size", "window size", OFFSET(window_width), AV_OPT_TYPE_IMAGE_SIZE,
50         {.str = NULL}, -1, INT_MAX, E|D|V },
51     { "frame_size", "frame size", OFFSET(frame_width), AV_OPT_TYPE_IMAGE_SIZE,
52         {.str = NULL}, -1, INT_MAX, E|D|V },
53     { "fps", "fps", OFFSET(fps), AV_OPT_TYPE_RATIONAL,
54         {.dbl = -1}, -1, INT_MAX, E|D|V },
55     { NULL }
56 };
57
58 #undef E
59 #undef D
60 #undef A
61 #undef V
62 #undef OFFSET
63
64 unsigned avdevice_version(void)
65 {
66     av_assert0(LIBAVDEVICE_VERSION_MICRO >= 100);
67     return LIBAVDEVICE_VERSION_INT;
68 }
69
70 const char * avdevice_configuration(void)
71 {
72     return FFMPEG_CONFIGURATION;
73 }
74
75 const char * avdevice_license(void)
76 {
77 #define LICENSE_PREFIX "libavdevice license: "
78     return &LICENSE_PREFIX FFMPEG_LICENSE[sizeof(LICENSE_PREFIX) - 1];
79 }
80
81 int avdevice_app_to_dev_control_message(struct AVFormatContext *s, enum AVAppToDevMessageType type,
82                                         void *data, size_t data_size)
83 {
84     if (!s->oformat || !s->oformat->control_message)
85         return AVERROR(ENOSYS);
86     return s->oformat->control_message(s, type, data, data_size);
87 }
88
89 int avdevice_dev_to_app_control_message(struct AVFormatContext *s, enum AVDevToAppMessageType type,
90                                         void *data, size_t data_size)
91 {
92     if (!s->control_message_cb)
93         return AVERROR(ENOSYS);
94     return s->control_message_cb(s, type, data, data_size);
95 }
96
97 int avdevice_capabilities_create(AVDeviceCapabilitiesQuery **caps, AVFormatContext *s,
98                                  AVDictionary **device_options)
99 {
100     int ret;
101     av_assert0(s && caps);
102     av_assert0(s->iformat || s->oformat);
103     if ((s->oformat && !s->oformat->create_device_capabilities) ||
104         (s->iformat && !s->iformat->create_device_capabilities))
105         return AVERROR(ENOSYS);
106     *caps = av_mallocz(sizeof(**caps));
107     if (!(*caps))
108         return AVERROR(ENOMEM);
109     (*caps)->device_context = s;
110     if (((ret = av_opt_set_dict(s->priv_data, device_options)) < 0))
111         goto fail;
112     if (s->iformat) {
113         if ((ret = s->iformat->create_device_capabilities(s, *caps)) < 0)
114             goto fail;
115     } else {
116         if ((ret = s->oformat->create_device_capabilities(s, *caps)) < 0)
117             goto fail;
118     }
119     av_opt_set_defaults(*caps);
120     return 0;
121   fail:
122     av_freep(caps);
123     return ret;
124 }
125
126 void avdevice_capabilities_free(AVDeviceCapabilitiesQuery **caps, AVFormatContext *s)
127 {
128     if (!s || !caps || !(*caps))
129         return;
130     av_assert0(s->iformat || s->oformat);
131     if (s->iformat) {
132         if (s->iformat->free_device_capabilities)
133             s->iformat->free_device_capabilities(s, *caps);
134     } else {
135         if (s->oformat->free_device_capabilities)
136             s->oformat->free_device_capabilities(s, *caps);
137     }
138     av_freep(caps);
139 }
140
141 int avdevice_list_devices(AVFormatContext *s, AVDeviceInfoList **device_list)
142 {
143     int ret;
144     av_assert0(s);
145     av_assert0(device_list);
146     av_assert0(s->oformat || s->iformat);
147     if ((s->oformat && !s->oformat->get_device_list) ||
148         (s->iformat && !s->iformat->get_device_list)) {
149         *device_list = NULL;
150         return AVERROR(ENOSYS);
151     }
152     *device_list = av_mallocz(sizeof(AVDeviceInfoList));
153     if (!(*device_list))
154         return AVERROR(ENOMEM);
155     /* no default device by default */
156     (*device_list)->default_device = -1;
157     if (s->oformat)
158         ret = s->oformat->get_device_list(s, *device_list);
159     else
160         ret = s->iformat->get_device_list(s, *device_list);
161     if (ret < 0)
162         avdevice_free_list_devices(device_list);
163     return ret;
164 }
165
166 static int list_devices_for_context(AVFormatContext *s, AVDictionary *options,
167                                     AVDeviceInfoList **device_list)
168 {
169     AVDictionary *tmp = NULL;
170     int ret;
171
172     av_dict_copy(&tmp, options, 0);
173     if ((ret = av_opt_set_dict2(s, &tmp, AV_OPT_SEARCH_CHILDREN)) < 0)
174         goto fail;
175     ret = avdevice_list_devices(s, device_list);
176   fail:
177     av_dict_free(&tmp);
178     avformat_free_context(s);
179     return ret;
180 }
181
182 int avdevice_list_input_sources(AVInputFormat *device, const char *device_name,
183                                 AVDictionary *device_options, AVDeviceInfoList **device_list)
184 {
185     AVFormatContext *s = NULL;
186     int ret;
187
188     if ((ret = ff_alloc_input_device_context(&s, device, device_name)) < 0)
189         return ret;
190     return list_devices_for_context(s, device_options, device_list);
191 }
192
193 int avdevice_list_output_sinks(AVOutputFormat *device, const char *device_name,
194                                AVDictionary *device_options, AVDeviceInfoList **device_list)
195 {
196     AVFormatContext *s = NULL;
197     int ret;
198
199     if ((ret = avformat_alloc_output_context2(&s, device, device_name, NULL)) < 0)
200         return ret;
201     return list_devices_for_context(s, device_options, device_list);
202 }
203
204 void avdevice_free_list_devices(AVDeviceInfoList **device_list)
205 {
206     AVDeviceInfoList *list;
207     AVDeviceInfo *dev;
208     int i;
209
210     av_assert0(device_list);
211     list = *device_list;
212     if (!list)
213         return;
214
215     for (i = 0; i < list->nb_devices; i++) {
216         dev = list->devices[i];
217         if (dev) {
218             av_freep(&dev->device_name);
219             av_freep(&dev->device_description);
220             av_free(dev);
221         }
222     }
223     av_freep(&list->devices);
224     av_freep(device_list);
225 }