FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavdevice/utils.c
Date: 2026-04-19 15:33:43
Exec Total Coverage
Lines: 16 27 59.3%
Functions: 1 1 100.0%
Branches: 10 24 41.7%

Line Branch Exec Source
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 "internal.h"
20 #include "libavutil/mem.h"
21 #include "libavutil/opt.h"
22 #include "libavformat/avformat.h"
23 #include "libavformat/demux.h"
24
25 1 int ff_alloc_input_device_context(AVFormatContext **avctx, const AVInputFormat *iformat, const char *format)
26 {
27 AVFormatContext *s;
28 1 int ret = 0;
29
30 1 *avctx = NULL;
31
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
1 if (!iformat && !format)
32 return AVERROR(EINVAL);
33
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
1 if (!(s = avformat_alloc_context()))
34 return AVERROR(ENOMEM);
35
36
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!iformat)
37 iformat = av_find_input_format(format);
38
4/10
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 1 times.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 1 times.
✗ Branch 8 not taken.
✗ Branch 9 not taken.
1 if (!iformat || !iformat->priv_class || !AV_IS_INPUT_DEVICE(iformat->priv_class->category)) {
39 ret = AVERROR(EINVAL);
40 goto error;
41 }
42 1 s->iformat = iformat;
43
1/2
✓ Branch 1 taken 1 times.
✗ Branch 2 not taken.
1 if (ffifmt(s->iformat)->priv_data_size > 0) {
44 1 s->priv_data = av_mallocz(ffifmt(s->iformat)->priv_data_size);
45
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!s->priv_data) {
46 ret = AVERROR(ENOMEM);
47 goto error;
48 }
49
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (s->iformat->priv_class) {
50 1 *(const AVClass**)s->priv_data= s->iformat->priv_class;
51 1 av_opt_set_defaults(s->priv_data);
52 }
53 } else
54 s->priv_data = NULL;
55
56 1 *avctx = s;
57 1 return 0;
58 error:
59 avformat_free_context(s);
60 return ret;
61 }
62