FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/libavutil/utils.c
Date: 2026-09-13 11:21:06
Exec Total Coverage
Lines: 28 40 70.0%
Functions: 3 5 60.0%
Branches: 31 40 77.5%

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 "config.h"
20 #include "avutil.h"
21 #include "avassert.h"
22
23 /**
24 * @file
25 * various utility functions
26 */
27
28 1076312 const char *av_get_media_type_string(enum AVMediaType media_type)
29 {
30
5/6
✓ Branch 0 taken 374478 times.
✓ Branch 1 taken 697986 times.
✓ Branch 2 taken 225 times.
✓ Branch 3 taken 3576 times.
✓ Branch 4 taken 47 times.
✗ Branch 5 not taken.
1076312 switch (media_type) {
31 374478 case AVMEDIA_TYPE_VIDEO: return "video";
32 697986 case AVMEDIA_TYPE_AUDIO: return "audio";
33 225 case AVMEDIA_TYPE_DATA: return "data";
34 3576 case AVMEDIA_TYPE_SUBTITLE: return "subtitle";
35 47 case AVMEDIA_TYPE_ATTACHMENT: return "attachment";
36 default: return NULL;
37 }
38 }
39
40 2738 char av_get_picture_type_char(enum AVPictureType pict_type)
41 {
42
4/8
✓ Branch 0 taken 838 times.
✓ Branch 1 taken 1446 times.
✓ Branch 2 taken 203 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✗ Branch 5 not taken.
✗ Branch 6 not taken.
✓ Branch 7 taken 251 times.
2738 switch (pict_type) {
43 838 case AV_PICTURE_TYPE_I: return 'I';
44 1446 case AV_PICTURE_TYPE_P: return 'P';
45 203 case AV_PICTURE_TYPE_B: return 'B';
46 case AV_PICTURE_TYPE_S: return 'S';
47 case AV_PICTURE_TYPE_SI: return 'i';
48 case AV_PICTURE_TYPE_SP: return 'p';
49 case AV_PICTURE_TYPE_BI: return 'b';
50 251 default: return '?';
51 }
52 }
53
54 66852 char *av_fourcc_make_string(char *buf, uint32_t fourcc)
55 {
56 int i;
57 66852 char *orig_buf = buf;
58 66852 size_t buf_size = AV_FOURCC_MAX_STRING_SIZE;
59
60
2/2
✓ Branch 0 taken 267408 times.
✓ Branch 1 taken 66852 times.
334260 for (i = 0; i < 4; i++) {
61 267408 const int c = fourcc & 0xff;
62
4/4
✓ Branch 0 taken 238002 times.
✓ Branch 1 taken 12930 times.
✓ Branch 2 taken 207218 times.
✓ Branch 3 taken 47260 times.
267408 const int print_chr = (c >= '0' && c <= '9') ||
63
4/4
✓ Branch 0 taken 452 times.
✓ Branch 1 taken 206766 times.
✓ Branch 2 taken 31178 times.
✓ Branch 3 taken 16534 times.
254478 (c >= 'a' && c <= 'z') ||
64
6/6
✓ Branch 0 taken 250932 times.
✓ Branch 1 taken 16476 times.
✓ Branch 2 taken 507 times.
✓ Branch 3 taken 30671 times.
✓ Branch 4 taken 6764 times.
✓ Branch 5 taken 10277 times.
541580 (c >= 'A' && c <= 'Z') ||
65
2/2
✓ Branch 0 taken 882 times.
✓ Branch 1 taken 5882 times.
6764 (c && strchr(". -_", c));
66
2/2
✓ Branch 0 taken 251249 times.
✓ Branch 1 taken 16159 times.
267408 const int len = snprintf(buf, buf_size, print_chr ? "%c" : "[%d]", c);
67
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 267408 times.
267408 if (len < 0)
68 break;
69 267408 buf += len;
70
1/2
✓ Branch 0 taken 267408 times.
✗ Branch 1 not taken.
267408 buf_size = buf_size > len ? buf_size - len : 0;
71 267408 fourcc >>= 8;
72 }
73
74 66852 return orig_buf;
75 }
76
77 AVRational av_get_time_base_q(void)
78 {
79 return (AVRational){1, AV_TIME_BASE};
80 }
81 #if FF_API_ASSERT_FPU
82 void av_assert0_fpu(void) {
83 #if HAVE_MMX_INLINE
84 uint16_t state[14];
85 __asm__ volatile (
86 "fstenv %0 \n\t"
87 : "+m" (state)
88 :
89 : "memory"
90 );
91 av_assert0((state[4] & 3) == 3);
92 #endif
93 }
94 #endif
95