FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/fftools/ffprobe.c
Date: 2025-06-01 09:29:47
Exec Total Coverage
Lines: 1342 1860 72.2%
Functions: 58 82 70.7%
Branches: 717 1184 60.6%

Line Branch Exec Source
1 /*
2 * Copyright (c) 2007-2010 Stefano Sabatini
3 *
4 * This file is part of FFmpeg.
5 *
6 * FFmpeg is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
10 *
11 * FFmpeg is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with FFmpeg; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21 /**
22 * @file
23 * simple media prober based on the FFmpeg libraries
24 */
25
26 #include "config.h"
27 #include "libavutil/ffversion.h"
28
29 #include <string.h>
30 #include <math.h>
31
32 #include "libavformat/avformat.h"
33 #include "libavformat/version.h"
34 #include "libavcodec/avcodec.h"
35 #include "libavcodec/version.h"
36 #include "libavutil/ambient_viewing_environment.h"
37 #include "libavutil/avassert.h"
38 #include "libavutil/avstring.h"
39 #include "libavutil/bprint.h"
40 #include "libavutil/channel_layout.h"
41 #include "libavutil/display.h"
42 #include "libavutil/film_grain_params.h"
43 #include "libavutil/hdr_dynamic_metadata.h"
44 #include "libavutil/iamf.h"
45 #include "libavutil/mastering_display_metadata.h"
46 #include "libavutil/hdr_dynamic_vivid_metadata.h"
47 #include "libavutil/dovi_meta.h"
48 #include "libavutil/mem.h"
49 #include "libavutil/opt.h"
50 #include "libavutil/pixdesc.h"
51 #include "libavutil/spherical.h"
52 #include "libavutil/stereo3d.h"
53 #include "libavutil/dict.h"
54 #include "libavutil/intreadwrite.h"
55 #include "libavutil/libm.h"
56 #include "libavutil/parseutils.h"
57 #include "libavutil/timecode.h"
58 #include "libavutil/timestamp.h"
59 #include "libavdevice/avdevice.h"
60 #include "libavdevice/version.h"
61 #include "libswscale/swscale.h"
62 #include "libswscale/version.h"
63 #include "libswresample/swresample.h"
64 #include "libswresample/version.h"
65 #include "libavfilter/version.h"
66 #include "textformat/avtextformat.h"
67 #include "cmdutils.h"
68 #include "opt_common.h"
69
70 #include "libavutil/thread.h"
71
72 // attached as opaque_ref to packets/frames
73 typedef struct FrameData {
74 int64_t pkt_pos;
75 int pkt_size;
76 } FrameData;
77
78 typedef struct InputStream {
79 AVStream *st;
80
81 AVCodecContext *dec_ctx;
82 } InputStream;
83
84 typedef struct InputFile {
85 AVFormatContext *fmt_ctx;
86
87 InputStream *streams;
88 int nb_streams;
89 } InputFile;
90
91 const char program_name[] = "ffprobe";
92 const int program_birth_year = 2007;
93
94 static int do_analyze_frames = 0;
95 static int do_bitexact = 0;
96 static int do_count_frames = 0;
97 static int do_count_packets = 0;
98 static int do_read_frames = 0;
99 static int do_read_packets = 0;
100 static int do_show_chapters = 0;
101 static int do_show_error = 0;
102 static int do_show_format = 0;
103 static int do_show_frames = 0;
104 static int do_show_packets = 0;
105 static int do_show_programs = 0;
106 static int do_show_stream_groups = 0;
107 static int do_show_stream_group_components = 0;
108 static int do_show_streams = 0;
109 static int do_show_stream_disposition = 0;
110 static int do_show_stream_group_disposition = 0;
111 static int do_show_data = 0;
112 static int do_show_program_version = 0;
113 static int do_show_library_versions = 0;
114 static int do_show_pixel_formats = 0;
115 static int do_show_pixel_format_flags = 0;
116 static int do_show_pixel_format_components = 0;
117 static int do_show_log = 0;
118
119 static int do_show_chapter_tags = 0;
120 static int do_show_format_tags = 0;
121 static int do_show_frame_tags = 0;
122 static int do_show_program_tags = 0;
123 static int do_show_stream_group_tags = 0;
124 static int do_show_stream_tags = 0;
125 static int do_show_packet_tags = 0;
126
127 static int show_value_unit = 0;
128 static int use_value_prefix = 0;
129 static int use_byte_value_binary_prefix = 0;
130 static int use_value_sexagesimal_format = 0;
131 static int show_private_data = 1;
132
133 #define SHOW_OPTIONAL_FIELDS_AUTO -1
134 #define SHOW_OPTIONAL_FIELDS_NEVER 0
135 #define SHOW_OPTIONAL_FIELDS_ALWAYS 1
136 static int show_optional_fields = SHOW_OPTIONAL_FIELDS_AUTO;
137
138 static char *output_format;
139 static char *stream_specifier;
140 static char *show_data_hash;
141
142 typedef struct ReadInterval {
143 int id; ///< identifier
144 int64_t start, end; ///< start, end in second/AV_TIME_BASE units
145 int has_start, has_end;
146 int start_is_offset, end_is_offset;
147 int duration_frames;
148 } ReadInterval;
149
150 static ReadInterval *read_intervals;
151 static int read_intervals_nb = 0;
152
153 static int find_stream_info = 1;
154
155 /* section structure definition */
156
157 typedef enum {
158 SECTION_ID_CHAPTER,
159 SECTION_ID_CHAPTER_TAGS,
160 SECTION_ID_CHAPTERS,
161 SECTION_ID_ERROR,
162 SECTION_ID_FORMAT,
163 SECTION_ID_FORMAT_TAGS,
164 SECTION_ID_FRAME,
165 SECTION_ID_FRAMES,
166 SECTION_ID_FRAME_TAGS,
167 SECTION_ID_FRAME_SIDE_DATA_LIST,
168 SECTION_ID_FRAME_SIDE_DATA,
169 SECTION_ID_FRAME_SIDE_DATA_TIMECODE_LIST,
170 SECTION_ID_FRAME_SIDE_DATA_TIMECODE,
171 SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST,
172 SECTION_ID_FRAME_SIDE_DATA_COMPONENT,
173 SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST,
174 SECTION_ID_FRAME_SIDE_DATA_PIECE,
175 SECTION_ID_FRAME_LOG,
176 SECTION_ID_FRAME_LOGS,
177 SECTION_ID_LIBRARY_VERSION,
178 SECTION_ID_LIBRARY_VERSIONS,
179 SECTION_ID_PACKET,
180 SECTION_ID_PACKET_TAGS,
181 SECTION_ID_PACKETS,
182 SECTION_ID_PACKETS_AND_FRAMES,
183 SECTION_ID_PACKET_SIDE_DATA_LIST,
184 SECTION_ID_PACKET_SIDE_DATA,
185 SECTION_ID_PIXEL_FORMAT,
186 SECTION_ID_PIXEL_FORMAT_FLAGS,
187 SECTION_ID_PIXEL_FORMAT_COMPONENT,
188 SECTION_ID_PIXEL_FORMAT_COMPONENTS,
189 SECTION_ID_PIXEL_FORMATS,
190 SECTION_ID_PROGRAM_STREAM_DISPOSITION,
191 SECTION_ID_PROGRAM_STREAM_TAGS,
192 SECTION_ID_PROGRAM,
193 SECTION_ID_PROGRAM_STREAMS,
194 SECTION_ID_PROGRAM_STREAM,
195 SECTION_ID_PROGRAM_TAGS,
196 SECTION_ID_PROGRAM_VERSION,
197 SECTION_ID_PROGRAMS,
198 SECTION_ID_STREAM_GROUP_STREAM_DISPOSITION,
199 SECTION_ID_STREAM_GROUP_STREAM_TAGS,
200 SECTION_ID_STREAM_GROUP,
201 SECTION_ID_STREAM_GROUP_COMPONENTS,
202 SECTION_ID_STREAM_GROUP_COMPONENT,
203 SECTION_ID_STREAM_GROUP_SUBCOMPONENTS,
204 SECTION_ID_STREAM_GROUP_SUBCOMPONENT,
205 SECTION_ID_STREAM_GROUP_PIECES,
206 SECTION_ID_STREAM_GROUP_PIECE,
207 SECTION_ID_STREAM_GROUP_SUBPIECES,
208 SECTION_ID_STREAM_GROUP_SUBPIECE,
209 SECTION_ID_STREAM_GROUP_BLOCKS,
210 SECTION_ID_STREAM_GROUP_BLOCK,
211 SECTION_ID_STREAM_GROUP_STREAMS,
212 SECTION_ID_STREAM_GROUP_STREAM,
213 SECTION_ID_STREAM_GROUP_DISPOSITION,
214 SECTION_ID_STREAM_GROUP_TAGS,
215 SECTION_ID_STREAM_GROUPS,
216 SECTION_ID_ROOT,
217 SECTION_ID_STREAM,
218 SECTION_ID_STREAM_DISPOSITION,
219 SECTION_ID_STREAMS,
220 SECTION_ID_STREAM_TAGS,
221 SECTION_ID_STREAM_SIDE_DATA_LIST,
222 SECTION_ID_STREAM_SIDE_DATA,
223 SECTION_ID_SUBTITLE,
224 } SectionID;
225
226 717 static const char *get_packet_side_data_type(const void *data)
227 {
228 717 const AVPacketSideData *sd = (const AVPacketSideData *)data;
229 717 return av_x_if_null(av_packet_side_data_name(sd->type), "unknown");
230 }
231
232 150 static const char *get_frame_side_data_type(const void *data)
233 {
234 150 const AVFrameSideData *sd = (const AVFrameSideData *)data;
235 150 return av_x_if_null(av_frame_side_data_name(sd->type), "unknown");
236 }
237
238 static const char *get_raw_string_type(const void *data)
239 {
240 return data;
241 }
242
243 static const char *get_stream_group_type(const void *data)
244 {
245 const AVStreamGroup *stg = (const AVStreamGroup *)data;
246 return av_x_if_null(avformat_stream_group_name(stg->type), "unknown");
247 }
248
249 static struct AVTextFormatSection sections[] = {
250 [SECTION_ID_CHAPTERS] = { SECTION_ID_CHAPTERS, "chapters", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_CHAPTER, -1 } },
251 [SECTION_ID_CHAPTER] = { SECTION_ID_CHAPTER, "chapter", 0, { SECTION_ID_CHAPTER_TAGS, -1 } },
252 [SECTION_ID_CHAPTER_TAGS] = { SECTION_ID_CHAPTER_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "chapter_tags" },
253 [SECTION_ID_ERROR] = { SECTION_ID_ERROR, "error", 0, { -1 } },
254 [SECTION_ID_FORMAT] = { SECTION_ID_FORMAT, "format", 0, { SECTION_ID_FORMAT_TAGS, -1 } },
255 [SECTION_ID_FORMAT_TAGS] = { SECTION_ID_FORMAT_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "format_tags" },
256 [SECTION_ID_FRAMES] = { SECTION_ID_FRAMES, "frames", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME, SECTION_ID_SUBTITLE, -1 } },
257 [SECTION_ID_FRAME] = { SECTION_ID_FRAME, "frame", 0, { SECTION_ID_FRAME_TAGS, SECTION_ID_FRAME_SIDE_DATA_LIST, SECTION_ID_FRAME_LOGS, -1 } },
258 [SECTION_ID_FRAME_TAGS] = { SECTION_ID_FRAME_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "frame_tags" },
259 [SECTION_ID_FRAME_SIDE_DATA_LIST] ={ SECTION_ID_FRAME_SIDE_DATA_LIST, "side_data_list", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_SIDE_DATA, -1 }, .element_name = "side_data", .unique_name = "frame_side_data_list" },
260 [SECTION_ID_FRAME_SIDE_DATA] = { SECTION_ID_FRAME_SIDE_DATA, "side_data", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_FRAME_SIDE_DATA_TIMECODE_LIST, SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST, -1 }, .unique_name = "frame_side_data", .element_name = "side_datum", .get_type = get_frame_side_data_type },
261 [SECTION_ID_FRAME_SIDE_DATA_TIMECODE_LIST] = { SECTION_ID_FRAME_SIDE_DATA_TIMECODE_LIST, "timecodes", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_SIDE_DATA_TIMECODE, -1 } },
262 [SECTION_ID_FRAME_SIDE_DATA_TIMECODE] = { SECTION_ID_FRAME_SIDE_DATA_TIMECODE, "timecode", 0, { -1 } },
263 [SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST] = { SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST, "components", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_SIDE_DATA_COMPONENT, -1 }, .element_name = "component", .unique_name = "frame_side_data_components" },
264 [SECTION_ID_FRAME_SIDE_DATA_COMPONENT] = { SECTION_ID_FRAME_SIDE_DATA_COMPONENT, "component", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST, -1 }, .unique_name = "frame_side_data_component", .element_name = "component_entry", .get_type = get_raw_string_type },
265 [SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST] = { SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST, "pieces", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_SIDE_DATA_PIECE, -1 }, .element_name = "piece", .unique_name = "frame_side_data_pieces" },
266 [SECTION_ID_FRAME_SIDE_DATA_PIECE] = { SECTION_ID_FRAME_SIDE_DATA_PIECE, "piece", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { -1 }, .element_name = "piece_entry", .unique_name = "frame_side_data_piece", .get_type = get_raw_string_type },
267 [SECTION_ID_FRAME_LOGS] = { SECTION_ID_FRAME_LOGS, "logs", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_FRAME_LOG, -1 } },
268 [SECTION_ID_FRAME_LOG] = { SECTION_ID_FRAME_LOG, "log", 0, { -1 }, },
269 [SECTION_ID_LIBRARY_VERSIONS] = { SECTION_ID_LIBRARY_VERSIONS, "library_versions", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_LIBRARY_VERSION, -1 } },
270 [SECTION_ID_LIBRARY_VERSION] = { SECTION_ID_LIBRARY_VERSION, "library_version", 0, { -1 } },
271 [SECTION_ID_PACKETS] = { SECTION_ID_PACKETS, "packets", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET, -1} },
272 [SECTION_ID_PACKETS_AND_FRAMES] = { SECTION_ID_PACKETS_AND_FRAMES, "packets_and_frames", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY | AV_TEXTFORMAT_SECTION_FLAG_NUMBERING_BY_TYPE, { SECTION_ID_PACKET, -1} },
273 [SECTION_ID_PACKET] = { SECTION_ID_PACKET, "packet", 0, { SECTION_ID_PACKET_TAGS, SECTION_ID_PACKET_SIDE_DATA_LIST, -1 } },
274 [SECTION_ID_PACKET_TAGS] = { SECTION_ID_PACKET_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "packet_tags" },
275 [SECTION_ID_PACKET_SIDE_DATA_LIST] ={ SECTION_ID_PACKET_SIDE_DATA_LIST, "side_data_list", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_PACKET_SIDE_DATA, -1 }, .element_name = "side_data", .unique_name = "packet_side_data_list" },
276 [SECTION_ID_PACKET_SIDE_DATA] = { SECTION_ID_PACKET_SIDE_DATA, "side_data", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { -1 }, .unique_name = "packet_side_data", .element_name = "side_datum", .get_type = get_packet_side_data_type },
277 [SECTION_ID_PIXEL_FORMATS] = { SECTION_ID_PIXEL_FORMATS, "pixel_formats", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_PIXEL_FORMAT, -1 } },
278 [SECTION_ID_PIXEL_FORMAT] = { SECTION_ID_PIXEL_FORMAT, "pixel_format", 0, { SECTION_ID_PIXEL_FORMAT_FLAGS, SECTION_ID_PIXEL_FORMAT_COMPONENTS, -1 } },
279 [SECTION_ID_PIXEL_FORMAT_FLAGS] = { SECTION_ID_PIXEL_FORMAT_FLAGS, "flags", 0, { -1 }, .unique_name = "pixel_format_flags" },
280 [SECTION_ID_PIXEL_FORMAT_COMPONENTS] = { SECTION_ID_PIXEL_FORMAT_COMPONENTS, "components", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, {SECTION_ID_PIXEL_FORMAT_COMPONENT, -1 }, .unique_name = "pixel_format_components" },
281 [SECTION_ID_PIXEL_FORMAT_COMPONENT] = { SECTION_ID_PIXEL_FORMAT_COMPONENT, "component", 0, { -1 } },
282 [SECTION_ID_PROGRAM_STREAM_DISPOSITION] = { SECTION_ID_PROGRAM_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "program_stream_disposition" },
283 [SECTION_ID_PROGRAM_STREAM_TAGS] = { SECTION_ID_PROGRAM_STREAM_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "program_stream_tags" },
284 [SECTION_ID_PROGRAM] = { SECTION_ID_PROGRAM, "program", 0, { SECTION_ID_PROGRAM_TAGS, SECTION_ID_PROGRAM_STREAMS, -1 } },
285 [SECTION_ID_PROGRAM_STREAMS] = { SECTION_ID_PROGRAM_STREAMS, "streams", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM_STREAM, -1 }, .unique_name = "program_streams" },
286 [SECTION_ID_PROGRAM_STREAM] = { SECTION_ID_PROGRAM_STREAM, "stream", 0, { SECTION_ID_PROGRAM_STREAM_DISPOSITION, SECTION_ID_PROGRAM_STREAM_TAGS, -1 }, .unique_name = "program_stream" },
287 [SECTION_ID_PROGRAM_TAGS] = { SECTION_ID_PROGRAM_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "program_tags" },
288 [SECTION_ID_PROGRAM_VERSION] = { SECTION_ID_PROGRAM_VERSION, "program_version", 0, { -1 } },
289 [SECTION_ID_PROGRAMS] = { SECTION_ID_PROGRAMS, "programs", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_PROGRAM, -1 } },
290 [SECTION_ID_STREAM_GROUP_STREAM_DISPOSITION] = { SECTION_ID_STREAM_GROUP_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "stream_group_stream_disposition" },
291 [SECTION_ID_STREAM_GROUP_STREAM_TAGS] = { SECTION_ID_STREAM_GROUP_STREAM_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "stream_group_stream_tags" },
292 [SECTION_ID_STREAM_GROUP] = { SECTION_ID_STREAM_GROUP, "stream_group", 0, { SECTION_ID_STREAM_GROUP_TAGS, SECTION_ID_STREAM_GROUP_DISPOSITION, SECTION_ID_STREAM_GROUP_COMPONENTS, SECTION_ID_STREAM_GROUP_STREAMS, -1 } },
293 [SECTION_ID_STREAM_GROUP_COMPONENTS] = { SECTION_ID_STREAM_GROUP_COMPONENTS, "components", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_COMPONENT, -1 }, .element_name = "component", .unique_name = "stream_group_components" },
294 [SECTION_ID_STREAM_GROUP_COMPONENT] = { SECTION_ID_STREAM_GROUP_COMPONENT, "component", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_STREAM_GROUP_SUBCOMPONENTS, -1 }, .unique_name = "stream_group_component", .element_name = "component_entry", .get_type = get_stream_group_type },
295 [SECTION_ID_STREAM_GROUP_SUBCOMPONENTS] = { SECTION_ID_STREAM_GROUP_SUBCOMPONENTS, "subcomponents", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_SUBCOMPONENT, -1 }, .element_name = "component" },
296 [SECTION_ID_STREAM_GROUP_SUBCOMPONENT] = { SECTION_ID_STREAM_GROUP_SUBCOMPONENT, "subcomponent", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_STREAM_GROUP_PIECES, -1 }, .element_name = "subcomponent_entry", .get_type = get_raw_string_type },
297 [SECTION_ID_STREAM_GROUP_PIECES] = { SECTION_ID_STREAM_GROUP_PIECES, "pieces", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_PIECE, -1 }, .element_name = "piece", .unique_name = "stream_group_pieces" },
298 [SECTION_ID_STREAM_GROUP_PIECE] = { SECTION_ID_STREAM_GROUP_PIECE, "piece", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_STREAM_GROUP_SUBPIECES, -1 }, .unique_name = "stream_group_piece", .element_name = "piece_entry", .get_type = get_raw_string_type },
299 [SECTION_ID_STREAM_GROUP_SUBPIECES] = { SECTION_ID_STREAM_GROUP_SUBPIECES, "subpieces", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_SUBPIECE, -1 }, .element_name = "subpiece" },
300 [SECTION_ID_STREAM_GROUP_SUBPIECE] = { SECTION_ID_STREAM_GROUP_SUBPIECE, "subpiece", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { SECTION_ID_STREAM_GROUP_BLOCKS, -1 }, .element_name = "subpiece_entry", .get_type = get_raw_string_type },
301 [SECTION_ID_STREAM_GROUP_BLOCKS] = { SECTION_ID_STREAM_GROUP_BLOCKS, "blocks", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_BLOCK, -1 }, .element_name = "block" },
302 [SECTION_ID_STREAM_GROUP_BLOCK] = { SECTION_ID_STREAM_GROUP_BLOCK, "block", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS|AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE, { -1 }, .element_name = "block_entry", .get_type = get_raw_string_type },
303 [SECTION_ID_STREAM_GROUP_STREAMS] = { SECTION_ID_STREAM_GROUP_STREAMS, "streams", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP_STREAM, -1 }, .unique_name = "stream_group_streams" },
304 [SECTION_ID_STREAM_GROUP_STREAM] = { SECTION_ID_STREAM_GROUP_STREAM, "stream", 0, { SECTION_ID_STREAM_GROUP_STREAM_DISPOSITION, SECTION_ID_STREAM_GROUP_STREAM_TAGS, -1 }, .unique_name = "stream_group_stream" },
305 [SECTION_ID_STREAM_GROUP_DISPOSITION] = { SECTION_ID_STREAM_GROUP_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "stream_group_disposition" },
306 [SECTION_ID_STREAM_GROUP_TAGS] = { SECTION_ID_STREAM_GROUP_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "stream_group_tags" },
307 [SECTION_ID_STREAM_GROUPS] = { SECTION_ID_STREAM_GROUPS, "stream_groups", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_GROUP, -1 } },
308 [SECTION_ID_ROOT] = { SECTION_ID_ROOT, "root", AV_TEXTFORMAT_SECTION_FLAG_IS_WRAPPER,
309 { SECTION_ID_CHAPTERS, SECTION_ID_FORMAT, SECTION_ID_FRAMES, SECTION_ID_PROGRAMS, SECTION_ID_STREAM_GROUPS, SECTION_ID_STREAMS,
310 SECTION_ID_PACKETS, SECTION_ID_ERROR, SECTION_ID_PROGRAM_VERSION, SECTION_ID_LIBRARY_VERSIONS,
311 SECTION_ID_PIXEL_FORMATS, -1} },
312 [SECTION_ID_STREAMS] = { SECTION_ID_STREAMS, "streams", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM, -1 } },
313 [SECTION_ID_STREAM] = { SECTION_ID_STREAM, "stream", 0, { SECTION_ID_STREAM_DISPOSITION, SECTION_ID_STREAM_TAGS, SECTION_ID_STREAM_SIDE_DATA_LIST, -1 } },
314 [SECTION_ID_STREAM_DISPOSITION] = { SECTION_ID_STREAM_DISPOSITION, "disposition", 0, { -1 }, .unique_name = "stream_disposition" },
315 [SECTION_ID_STREAM_TAGS] = { SECTION_ID_STREAM_TAGS, "tags", AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .element_name = "tag", .unique_name = "stream_tags" },
316 [SECTION_ID_STREAM_SIDE_DATA_LIST] ={ SECTION_ID_STREAM_SIDE_DATA_LIST, "side_data_list", AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY, { SECTION_ID_STREAM_SIDE_DATA, -1 }, .element_name = "side_data", .unique_name = "stream_side_data_list" },
317 [SECTION_ID_STREAM_SIDE_DATA] = { SECTION_ID_STREAM_SIDE_DATA, "side_data", AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE|AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS, { -1 }, .unique_name = "stream_side_data", .element_name = "side_datum", .get_type = get_packet_side_data_type },
318 [SECTION_ID_SUBTITLE] = { SECTION_ID_SUBTITLE, "subtitle", 0, { -1 } },
319 };
320
321 static const OptionDef *options;
322
323 /* FFprobe context */
324 static const char *input_filename;
325 static const char *print_input_filename;
326 static const AVInputFormat *iformat = NULL;
327 static const char *output_filename = NULL;
328
329 static const char unit_second_str[] = "s" ;
330 static const char unit_hertz_str[] = "Hz" ;
331 static const char unit_byte_str[] = "byte" ;
332 static const char unit_bit_per_second_str[] = "bit/s";
333
334 static int nb_streams;
335 static uint64_t *nb_streams_packets;
336 static uint64_t *nb_streams_frames;
337 static int *selected_streams;
338 static int *streams_with_closed_captions;
339 static int *streams_with_film_grain;
340
341 static AVMutex log_mutex = AV_MUTEX_INITIALIZER;
342
343 typedef struct LogBuffer {
344 char *context_name;
345 int log_level;
346 char *log_message;
347 AVClassCategory category;
348 char *parent_name;
349 AVClassCategory parent_category;
350 }LogBuffer;
351
352 static LogBuffer *log_buffer;
353 static int log_buffer_size;
354
355 static void log_callback(void *ptr, int level, const char *fmt, va_list vl)
356 {
357 AVClass* avc = ptr ? *(AVClass **) ptr : NULL;
358 va_list vl2;
359 char line[1024];
360 static int print_prefix = 1;
361 void *new_log_buffer;
362
363 va_copy(vl2, vl);
364 av_log_default_callback(ptr, level, fmt, vl);
365 av_log_format_line(ptr, level, fmt, vl2, line, sizeof(line), &print_prefix);
366 va_end(vl2);
367
368 #if HAVE_THREADS
369 ff_mutex_lock(&log_mutex);
370
371 new_log_buffer = av_realloc_array(log_buffer, log_buffer_size + 1, sizeof(*log_buffer));
372 if (new_log_buffer) {
373 char *msg;
374 int i;
375
376 log_buffer = new_log_buffer;
377 memset(&log_buffer[log_buffer_size], 0, sizeof(log_buffer[log_buffer_size]));
378 log_buffer[log_buffer_size].context_name= avc ? av_strdup(avc->item_name(ptr)) : NULL;
379 if (avc) {
380 if (avc->get_category) log_buffer[log_buffer_size].category = avc->get_category(ptr);
381 else log_buffer[log_buffer_size].category = avc->category;
382 }
383 log_buffer[log_buffer_size].log_level = level;
384 msg = log_buffer[log_buffer_size].log_message = av_strdup(line);
385 for (i=strlen(msg) - 1; i>=0 && msg[i] == '\n'; i--) {
386 msg[i] = 0;
387 }
388 if (avc && avc->parent_log_context_offset) {
389 AVClass** parent = *(AVClass ***) (((uint8_t *) ptr) +
390 avc->parent_log_context_offset);
391 if (parent && *parent) {
392 log_buffer[log_buffer_size].parent_name = av_strdup((*parent)->item_name(parent));
393 log_buffer[log_buffer_size].parent_category =
394 (*parent)->get_category ? (*parent)->get_category(parent) :(*parent)->category;
395 }
396 }
397 log_buffer_size ++;
398 }
399
400 ff_mutex_unlock(&log_mutex);
401 #endif
402 }
403
404
405 #define print_fmt(k, f, ...) do { \
406 av_bprint_clear(&pbuf); \
407 av_bprintf(&pbuf, f, __VA_ARGS__); \
408 avtext_print_string(tfc, k, pbuf.str, 0); \
409 } while (0)
410
411 #define print_list_fmt(k, f, n, m, ...) do { \
412 av_bprint_clear(&pbuf); \
413 for (int idx = 0; idx < n; idx++) { \
414 for (int idx2 = 0; idx2 < m; idx2++) { \
415 if (idx > 0 || idx2 > 0) \
416 av_bprint_chars(&pbuf, ' ', 1); \
417 av_bprintf(&pbuf, f, __VA_ARGS__); \
418 } \
419 } \
420 avtext_print_string(tfc, k, pbuf.str, 0); \
421 } while (0)
422
423 #define print_int(k, v) avtext_print_integer(tfc, k, v, 0)
424 #define print_q(k, v, s) avtext_print_rational(tfc, k, v, s)
425 #define print_str(k, v) avtext_print_string(tfc, k, v, 0)
426 #define print_str_opt(k, v) avtext_print_string(tfc, k, v, AV_TEXTFORMAT_PRINT_STRING_OPTIONAL)
427 #define print_str_validate(k, v) avtext_print_string(tfc, k, v, AV_TEXTFORMAT_PRINT_STRING_VALIDATE)
428 #define print_time(k, v, tb) avtext_print_time(tfc, k, v, tb, 0)
429 #define print_ts(k, v) avtext_print_ts(tfc, k, v, 0)
430 #define print_duration_time(k, v, tb) avtext_print_time(tfc, k, v, tb, 1)
431 #define print_duration_ts(k, v) avtext_print_ts(tfc, k, v, 1)
432 #define print_val(k, v, u) avtext_print_unit_int(tfc, k, v, u)
433
434 #define REALLOCZ_ARRAY_STREAM(ptr, cur_n, new_n) \
435 { \
436 ret = av_reallocp_array(&(ptr), (new_n), sizeof(*(ptr))); \
437 if (ret < 0) \
438 goto end; \
439 memset( (ptr) + (cur_n), 0, ((new_n) - (cur_n)) * sizeof(*(ptr)) ); \
440 }
441
442 1400 static inline int show_tags(AVTextFormatContext *tfc, AVDictionary *tags, int section_id)
443 {
444 1400 const AVDictionaryEntry *tag = NULL;
445 1400 int ret = 0;
446
447
2/2
✓ Branch 0 taken 694 times.
✓ Branch 1 taken 706 times.
1400 if (!tags)
448 694 return 0;
449 706 avtext_print_section_header(tfc, NULL, section_id);
450
451
2/2
✓ Branch 1 taken 2944 times.
✓ Branch 2 taken 706 times.
3650 while ((tag = av_dict_iterate(tags, tag))) {
452
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 2944 times.
2944 if ((ret = print_str_validate(tag->key, tag->value)) < 0)
453 break;
454 }
455 706 avtext_print_section_footer(tfc);
456
457 706 return ret;
458 }
459
460 2 static void print_dovi_metadata(AVTextFormatContext *tfc, const AVDOVIMetadata *dovi)
461 {
462
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
2 if (!dovi)
463 return;
464
465 {
466 2 const AVDOVIRpuDataHeader *hdr = av_dovi_get_header(dovi);
467 2 const AVDOVIDataMapping *mapping = av_dovi_get_mapping(dovi);
468 2 const AVDOVIColorMetadata *color = av_dovi_get_color(dovi);
469 AVBPrint pbuf;
470
471 2 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
472
473 // header
474 2 print_int("rpu_type", hdr->rpu_type);
475 2 print_int("rpu_format", hdr->rpu_format);
476 2 print_int("vdr_rpu_profile", hdr->vdr_rpu_profile);
477 2 print_int("vdr_rpu_level", hdr->vdr_rpu_level);
478 2 print_int("chroma_resampling_explicit_filter_flag",
479 hdr->chroma_resampling_explicit_filter_flag);
480 2 print_int("coef_data_type", hdr->coef_data_type);
481 2 print_int("coef_log2_denom", hdr->coef_log2_denom);
482 2 print_int("vdr_rpu_normalized_idc", hdr->vdr_rpu_normalized_idc);
483 2 print_int("bl_video_full_range_flag", hdr->bl_video_full_range_flag);
484 2 print_int("bl_bit_depth", hdr->bl_bit_depth);
485 2 print_int("el_bit_depth", hdr->el_bit_depth);
486 2 print_int("vdr_bit_depth", hdr->vdr_bit_depth);
487 2 print_int("spatial_resampling_filter_flag",
488 hdr->spatial_resampling_filter_flag);
489 2 print_int("el_spatial_resampling_filter_flag",
490 hdr->el_spatial_resampling_filter_flag);
491 2 print_int("disable_residual_flag", hdr->disable_residual_flag);
492
493 // data mapping values
494 2 print_int("vdr_rpu_id", mapping->vdr_rpu_id);
495 2 print_int("mapping_color_space", mapping->mapping_color_space);
496 2 print_int("mapping_chroma_format_idc",
497 mapping->mapping_chroma_format_idc);
498
499 2 print_int("nlq_method_idc", mapping->nlq_method_idc);
500
1/3
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
2 switch (mapping->nlq_method_idc) {
501 2 case AV_DOVI_NLQ_NONE:
502 2 print_str("nlq_method_idc_name", "none");
503 2 break;
504 case AV_DOVI_NLQ_LINEAR_DZ:
505 print_str("nlq_method_idc_name", "linear_dz");
506 break;
507 default:
508 print_str("nlq_method_idc_name", "unknown");
509 break;
510 }
511
512 2 print_int("num_x_partitions", mapping->num_x_partitions);
513 2 print_int("num_y_partitions", mapping->num_y_partitions);
514
515 2 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST);
516
517
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 2 times.
8 for (int c = 0; c < 3; c++) {
518 6 const AVDOVIReshapingCurve *curve = &mapping->curves[c];
519 6 avtext_print_section_header(tfc, "Reshaping curve", SECTION_ID_FRAME_SIDE_DATA_COMPONENT);
520
521
7/8
✓ Branch 1 taken 6 times.
✓ Branch 2 taken 20 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 6 times.
✓ Branch 7 taken 26 times.
✓ Branch 8 taken 26 times.
✓ Branch 9 taken 26 times.
✓ Branch 10 taken 6 times.
58 print_list_fmt("pivots", "%"PRIu16, curve->num_pivots, 1, curve->pivots[idx]);
522
523 6 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST);
524
2/2
✓ Branch 0 taken 20 times.
✓ Branch 1 taken 6 times.
26 for (int i = 0; i < curve->num_pivots - 1; i++) {
525 AVBPrint piece_buf;
526
527 20 av_bprint_init(&piece_buf, 0, AV_BPRINT_SIZE_AUTOMATIC);
528
2/3
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
20 switch (curve->mapping_idc[i]) {
529 16 case AV_DOVI_MAPPING_POLYNOMIAL:
530 16 av_bprintf(&piece_buf, "Polynomial");
531 16 break;
532 4 case AV_DOVI_MAPPING_MMR:
533 4 av_bprintf(&piece_buf, "MMR");
534 4 break;
535 default:
536 av_bprintf(&piece_buf, "Unknown");
537 break;
538 }
539 20 av_bprintf(&piece_buf, " mapping");
540
541 20 avtext_print_section_header(tfc, piece_buf.str, SECTION_ID_FRAME_SIDE_DATA_PIECE);
542 20 print_int("mapping_idc", curve->mapping_idc[i]);
543
2/3
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 4 times.
✗ Branch 2 not taken.
20 switch (curve->mapping_idc[i]) {
544 16 case AV_DOVI_MAPPING_POLYNOMIAL:
545 16 print_str("mapping_idc_name", "polynomial");
546 16 print_int("poly_order", curve->poly_order[i]);
547
7/8
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 32 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 16 times.
✓ Branch 7 taken 48 times.
✓ Branch 8 taken 48 times.
✓ Branch 9 taken 48 times.
✓ Branch 10 taken 16 times.
112 print_list_fmt("poly_coef", "%"PRIi64,
548 curve->poly_order[i] + 1, 1,
549 curve->poly_coef[i][idx]);
550 16 break;
551 4 case AV_DOVI_MAPPING_MMR:
552 4 print_str("mapping_idc_name", "mmr");
553 4 print_int("mmr_order", curve->mmr_order[i]);
554 4 print_int("mmr_constant", curve->mmr_constant[i]);
555
8/8
✓ Branch 1 taken 28 times.
✓ Branch 2 taken 56 times.
✓ Branch 3 taken 24 times.
✓ Branch 4 taken 4 times.
✓ Branch 7 taken 84 times.
✓ Branch 8 taken 12 times.
✓ Branch 9 taken 12 times.
✓ Branch 10 taken 4 times.
100 print_list_fmt("mmr_coef", "%"PRIi64,
556 curve->mmr_order[i], 7,
557 curve->mmr_coef[i][idx][idx2]);
558 4 break;
559 default:
560 print_str("mapping_idc_name", "unknown");
561 break;
562 }
563
564 // SECTION_ID_FRAME_SIDE_DATA_PIECE
565 20 avtext_print_section_footer(tfc);
566 }
567
568 // SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST
569 6 avtext_print_section_footer(tfc);
570
571
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6 times.
6 if (mapping->nlq_method_idc != AV_DOVI_NLQ_NONE) {
572 const AVDOVINLQParams *nlq = &mapping->nlq[c];
573 print_int("nlq_offset", nlq->nlq_offset);
574 print_int("vdr_in_max", nlq->vdr_in_max);
575
576 switch (mapping->nlq_method_idc) {
577 case AV_DOVI_NLQ_LINEAR_DZ:
578 print_int("linear_deadzone_slope", nlq->linear_deadzone_slope);
579 print_int("linear_deadzone_threshold", nlq->linear_deadzone_threshold);
580 break;
581 }
582 }
583
584 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT
585 6 avtext_print_section_footer(tfc);
586 }
587
588 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST
589 2 avtext_print_section_footer(tfc);
590
591 // color metadata
592 2 print_int("dm_metadata_id", color->dm_metadata_id);
593 2 print_int("scene_refresh_flag", color->scene_refresh_flag);
594
7/8
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 16 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
✓ Branch 7 taken 18 times.
✓ Branch 8 taken 18 times.
✓ Branch 9 taken 18 times.
✓ Branch 10 taken 2 times.
38 print_list_fmt("ycc_to_rgb_matrix", "%d/%d",
595 FF_ARRAY_ELEMS(color->ycc_to_rgb_matrix), 1,
596 color->ycc_to_rgb_matrix[idx].num,
597 color->ycc_to_rgb_matrix[idx].den);
598
7/8
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
✓ Branch 7 taken 6 times.
✓ Branch 8 taken 6 times.
✓ Branch 9 taken 6 times.
✓ Branch 10 taken 2 times.
14 print_list_fmt("ycc_to_rgb_offset", "%d/%d",
599 FF_ARRAY_ELEMS(color->ycc_to_rgb_offset), 1,
600 color->ycc_to_rgb_offset[idx].num,
601 color->ycc_to_rgb_offset[idx].den);
602
7/8
✓ Branch 1 taken 2 times.
✓ Branch 2 taken 16 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 2 times.
✓ Branch 7 taken 18 times.
✓ Branch 8 taken 18 times.
✓ Branch 9 taken 18 times.
✓ Branch 10 taken 2 times.
38 print_list_fmt("rgb_to_lms_matrix", "%d/%d",
603 FF_ARRAY_ELEMS(color->rgb_to_lms_matrix), 1,
604 color->rgb_to_lms_matrix[idx].num,
605 color->rgb_to_lms_matrix[idx].den);
606 2 print_int("signal_eotf", color->signal_eotf);
607 2 print_int("signal_eotf_param0", color->signal_eotf_param0);
608 2 print_int("signal_eotf_param1", color->signal_eotf_param1);
609 2 print_int("signal_eotf_param2", color->signal_eotf_param2);
610 2 print_int("signal_bit_depth", color->signal_bit_depth);
611 2 print_int("signal_color_space", color->signal_color_space);
612 2 print_int("signal_chroma_format", color->signal_chroma_format);
613 2 print_int("signal_full_range_flag", color->signal_full_range_flag);
614 2 print_int("source_min_pq", color->source_min_pq);
615 2 print_int("source_max_pq", color->source_max_pq);
616 2 print_int("source_diagonal", color->source_diagonal);
617
618 2 av_bprint_finalize(&pbuf, NULL);
619 }
620 }
621
622 4 static void print_dynamic_hdr10_plus(AVTextFormatContext *tfc, const AVDynamicHDRPlus *metadata)
623 {
624
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!metadata)
625 return;
626 4 print_int("application version", metadata->application_version);
627 4 print_int("num_windows", metadata->num_windows);
628
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 for (int n = 1; n < metadata->num_windows; n++) {
629 const AVHDRPlusColorTransformParams *params = &metadata->params[n];
630 print_q("window_upper_left_corner_x",
631 params->window_upper_left_corner_x,'/');
632 print_q("window_upper_left_corner_y",
633 params->window_upper_left_corner_y,'/');
634 print_q("window_lower_right_corner_x",
635 params->window_lower_right_corner_x,'/');
636 print_q("window_lower_right_corner_y",
637 params->window_lower_right_corner_y,'/');
638 print_q("window_upper_left_corner_x",
639 params->window_upper_left_corner_x,'/');
640 print_q("window_upper_left_corner_y",
641 params->window_upper_left_corner_y,'/');
642 print_int("center_of_ellipse_x",
643 params->center_of_ellipse_x ) ;
644 print_int("center_of_ellipse_y",
645 params->center_of_ellipse_y );
646 print_int("rotation_angle",
647 params->rotation_angle);
648 print_int("semimajor_axis_internal_ellipse",
649 params->semimajor_axis_internal_ellipse);
650 print_int("semimajor_axis_external_ellipse",
651 params->semimajor_axis_external_ellipse);
652 print_int("semiminor_axis_external_ellipse",
653 params->semiminor_axis_external_ellipse);
654 print_int("overlap_process_option",
655 params->overlap_process_option);
656 }
657 4 print_q("targeted_system_display_maximum_luminance",
658 metadata->targeted_system_display_maximum_luminance,'/');
659
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (metadata->targeted_system_display_actual_peak_luminance_flag) {
660 print_int("num_rows_targeted_system_display_actual_peak_luminance",
661 metadata->num_rows_targeted_system_display_actual_peak_luminance);
662 print_int("num_cols_targeted_system_display_actual_peak_luminance",
663 metadata->num_cols_targeted_system_display_actual_peak_luminance);
664 for (int i = 0; i < metadata->num_rows_targeted_system_display_actual_peak_luminance; i++) {
665 for (int j = 0; j < metadata->num_cols_targeted_system_display_actual_peak_luminance; j++) {
666 print_q("targeted_system_display_actual_peak_luminance",
667 metadata->targeted_system_display_actual_peak_luminance[i][j],'/');
668 }
669 }
670 }
671
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
8 for (int n = 0; n < metadata->num_windows; n++) {
672 4 const AVHDRPlusColorTransformParams *params = &metadata->params[n];
673
2/2
✓ Branch 0 taken 12 times.
✓ Branch 1 taken 4 times.
16 for (int i = 0; i < 3; i++) {
674 12 print_q("maxscl",params->maxscl[i],'/');
675 }
676 4 print_q("average_maxrgb",
677 params->average_maxrgb,'/');
678 4 print_int("num_distribution_maxrgb_percentiles",
679 params->num_distribution_maxrgb_percentiles);
680
2/2
✓ Branch 0 taken 36 times.
✓ Branch 1 taken 4 times.
40 for (int i = 0; i < params->num_distribution_maxrgb_percentiles; i++) {
681 36 print_int("distribution_maxrgb_percentage",
682 params->distribution_maxrgb[i].percentage);
683 36 print_q("distribution_maxrgb_percentile",
684 params->distribution_maxrgb[i].percentile,'/');
685 }
686 4 print_q("fraction_bright_pixels",
687 params->fraction_bright_pixels,'/');
688 }
689
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (metadata->mastering_display_actual_peak_luminance_flag) {
690 print_int("num_rows_mastering_display_actual_peak_luminance",
691 metadata->num_rows_mastering_display_actual_peak_luminance);
692 print_int("num_cols_mastering_display_actual_peak_luminance",
693 metadata->num_cols_mastering_display_actual_peak_luminance);
694 for (int i = 0; i < metadata->num_rows_mastering_display_actual_peak_luminance; i++) {
695 for (int j = 0; j < metadata->num_cols_mastering_display_actual_peak_luminance; j++) {
696 print_q("mastering_display_actual_peak_luminance",
697 metadata->mastering_display_actual_peak_luminance[i][j],'/');
698 }
699 }
700 }
701
702
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
8 for (int n = 0; n < metadata->num_windows; n++) {
703 4 const AVHDRPlusColorTransformParams *params = &metadata->params[n];
704
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
4 if (params->tone_mapping_flag) {
705 4 print_q("knee_point_x", params->knee_point_x,'/');
706 4 print_q("knee_point_y", params->knee_point_y,'/');
707 4 print_int("num_bezier_curve_anchors",
708 params->num_bezier_curve_anchors );
709
2/2
✓ Branch 0 taken 36 times.
✓ Branch 1 taken 4 times.
40 for (int i = 0; i < params->num_bezier_curve_anchors; i++) {
710 36 print_q("bezier_curve_anchors",
711 params->bezier_curve_anchors[i],'/');
712 }
713 }
714
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (params->color_saturation_mapping_flag) {
715 print_q("color_saturation_weight",
716 params->color_saturation_weight,'/');
717 }
718 }
719 }
720
721 1 static void print_dynamic_hdr_vivid(AVTextFormatContext *tfc, const AVDynamicHDRVivid *metadata)
722 {
723
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 1 times.
1 if (!metadata)
724 return;
725 1 print_int("system_start_code", metadata->system_start_code);
726 1 print_int("num_windows", metadata->num_windows);
727
728
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 for (int n = 0; n < metadata->num_windows; n++) {
729 1 const AVHDRVividColorTransformParams *params = &metadata->params[n];
730
731 1 print_q("minimum_maxrgb", params->minimum_maxrgb, '/');
732 1 print_q("average_maxrgb", params->average_maxrgb, '/');
733 1 print_q("variance_maxrgb", params->variance_maxrgb, '/');
734 1 print_q("maximum_maxrgb", params->maximum_maxrgb, '/');
735 }
736
737
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 1 times.
2 for (int n = 0; n < metadata->num_windows; n++) {
738 1 const AVHDRVividColorTransformParams *params = &metadata->params[n];
739
740 1 print_int("tone_mapping_mode_flag", params->tone_mapping_mode_flag);
741
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (params->tone_mapping_mode_flag) {
742 1 print_int("tone_mapping_param_num", params->tone_mapping_param_num);
743
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
3 for (int i = 0; i < params->tone_mapping_param_num; i++) {
744 2 const AVHDRVividColorToneMappingParams *tm_params = &params->tm_params[i];
745
746 2 print_q("targeted_system_display_maximum_luminance",
747 tm_params->targeted_system_display_maximum_luminance, '/');
748 2 print_int("base_enable_flag", tm_params->base_enable_flag);
749
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 if (tm_params->base_enable_flag) {
750 2 print_q("base_param_m_p", tm_params->base_param_m_p, '/');
751 2 print_q("base_param_m_m", tm_params->base_param_m_m, '/');
752 2 print_q("base_param_m_a", tm_params->base_param_m_a, '/');
753 2 print_q("base_param_m_b", tm_params->base_param_m_b, '/');
754 2 print_q("base_param_m_n", tm_params->base_param_m_n, '/');
755
756 2 print_int("base_param_k1", tm_params->base_param_k1);
757 2 print_int("base_param_k2", tm_params->base_param_k2);
758 2 print_int("base_param_k3", tm_params->base_param_k3);
759 2 print_int("base_param_Delta_enable_mode",
760 tm_params->base_param_Delta_enable_mode);
761 2 print_q("base_param_Delta", tm_params->base_param_Delta, '/');
762 }
763 2 print_int("3Spline_enable_flag", tm_params->three_Spline_enable_flag);
764
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 if (tm_params->three_Spline_enable_flag) {
765 2 print_int("3Spline_num", tm_params->three_Spline_num);
766
767
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 2 times.
4 for (int j = 0; j < tm_params->three_Spline_num; j++) {
768 2 const AVHDRVivid3SplineParams *three_spline = &tm_params->three_spline[j];
769 2 print_int("3Spline_TH_mode", three_spline->th_mode);
770
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 2 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
2 if (three_spline->th_mode == 0 || three_spline->th_mode == 2)
771 2 print_q("3Spline_TH_enable_MB", three_spline->th_enable_mb, '/');
772 2 print_q("3Spline_TH_enable", three_spline->th_enable, '/');
773 2 print_q("3Spline_TH_Delta1", three_spline->th_delta1, '/');
774 2 print_q("3Spline_TH_Delta2", three_spline->th_delta2, '/');
775 2 print_q("3Spline_enable_Strength", three_spline->enable_strength, '/');
776 }
777 }
778 }
779 }
780
781 1 print_int("color_saturation_mapping_flag", params->color_saturation_mapping_flag);
782
1/2
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
1 if (params->color_saturation_mapping_flag) {
783 1 print_int("color_saturation_num", params->color_saturation_num);
784
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
3 for (int i = 0; i < params->color_saturation_num; i++) {
785 2 print_q("color_saturation_gain", params->color_saturation_gain[i], '/');
786 }
787 }
788 }
789 }
790
791 4 static void print_ambient_viewing_environment(AVTextFormatContext *tfc,
792 const AVAmbientViewingEnvironment *env)
793 {
794
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!env)
795 return;
796
797 4 print_q("ambient_illuminance", env->ambient_illuminance, '/');
798 4 print_q("ambient_light_x", env->ambient_light_x, '/');
799 4 print_q("ambient_light_y", env->ambient_light_y, '/');
800 }
801
802 static void print_film_grain_params(AVTextFormatContext *tfc,
803 const AVFilmGrainParams *fgp)
804 {
805 const char *color_range, *color_primaries, *color_trc, *color_space;
806 const char *const film_grain_type_names[] = {
807 [AV_FILM_GRAIN_PARAMS_NONE] = "none",
808 [AV_FILM_GRAIN_PARAMS_AV1] = "av1",
809 [AV_FILM_GRAIN_PARAMS_H274] = "h274",
810 };
811
812 AVBPrint pbuf;
813 if (!fgp || fgp->type >= FF_ARRAY_ELEMS(film_grain_type_names))
814 return;
815
816 color_range = av_color_range_name(fgp->color_range);
817 color_primaries = av_color_primaries_name(fgp->color_primaries);
818 color_trc = av_color_transfer_name(fgp->color_trc);
819 color_space = av_color_space_name(fgp->color_space);
820
821 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
822 print_str("type", film_grain_type_names[fgp->type]);
823 print_fmt("seed", "%"PRIu64, fgp->seed);
824 print_int("width", fgp->width);
825 print_int("height", fgp->height);
826 print_int("subsampling_x", fgp->subsampling_x);
827 print_int("subsampling_y", fgp->subsampling_y);
828 print_str("color_range", color_range ? color_range : "unknown");
829 print_str("color_primaries", color_primaries ? color_primaries : "unknown");
830 print_str("color_trc", color_trc ? color_trc : "unknown");
831 print_str("color_space", color_space ? color_space : "unknown");
832
833 switch (fgp->type) {
834 case AV_FILM_GRAIN_PARAMS_NONE:
835 break;
836 case AV_FILM_GRAIN_PARAMS_AV1: {
837 const AVFilmGrainAOMParams *aom = &fgp->codec.aom;
838 const int num_ar_coeffs_y = 2 * aom->ar_coeff_lag * (aom->ar_coeff_lag + 1);
839 const int num_ar_coeffs_uv = num_ar_coeffs_y + !!aom->num_y_points;
840 print_int("chroma_scaling_from_luma", aom->chroma_scaling_from_luma);
841 print_int("scaling_shift", aom->scaling_shift);
842 print_int("ar_coeff_lag", aom->ar_coeff_lag);
843 print_int("ar_coeff_shift", aom->ar_coeff_shift);
844 print_int("grain_scale_shift", aom->grain_scale_shift);
845 print_int("overlap_flag", aom->overlap_flag);
846 print_int("limit_output_range", aom->limit_output_range);
847
848 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST);
849
850 if (aom->num_y_points) {
851 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT);
852
853 print_int("bit_depth_luma", fgp->bit_depth_luma);
854 print_list_fmt("y_points_value", "%"PRIu8, aom->num_y_points, 1, aom->y_points[idx][0]);
855 print_list_fmt("y_points_scaling", "%"PRIu8, aom->num_y_points, 1, aom->y_points[idx][1]);
856 print_list_fmt("ar_coeffs_y", "%"PRId8, num_ar_coeffs_y, 1, aom->ar_coeffs_y[idx]);
857
858 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT
859 avtext_print_section_footer(tfc);
860 }
861
862 for (int uv = 0; uv < 2; uv++) {
863 if (!aom->num_uv_points[uv] && !aom->chroma_scaling_from_luma)
864 continue;
865
866 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT);
867
868 print_int("bit_depth_chroma", fgp->bit_depth_chroma);
869 print_list_fmt("uv_points_value", "%"PRIu8, aom->num_uv_points[uv], 1, aom->uv_points[uv][idx][0]);
870 print_list_fmt("uv_points_scaling", "%"PRIu8, aom->num_uv_points[uv], 1, aom->uv_points[uv][idx][1]);
871 print_list_fmt("ar_coeffs_uv", "%"PRId8, num_ar_coeffs_uv, 1, aom->ar_coeffs_uv[uv][idx]);
872 print_int("uv_mult", aom->uv_mult[uv]);
873 print_int("uv_mult_luma", aom->uv_mult_luma[uv]);
874 print_int("uv_offset", aom->uv_offset[uv]);
875
876 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT
877 avtext_print_section_footer(tfc);
878 }
879
880 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST
881 avtext_print_section_footer(tfc);
882 break;
883 }
884 case AV_FILM_GRAIN_PARAMS_H274: {
885 const AVFilmGrainH274Params *h274 = &fgp->codec.h274;
886 print_int("model_id", h274->model_id);
887 print_int("blending_mode_id", h274->blending_mode_id);
888 print_int("log2_scale_factor", h274->log2_scale_factor);
889
890 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST);
891
892 for (int c = 0; c < 3; c++) {
893 if (!h274->component_model_present[c])
894 continue;
895
896 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_COMPONENT);
897 print_int(c ? "bit_depth_chroma" : "bit_depth_luma", c ? fgp->bit_depth_chroma : fgp->bit_depth_luma);
898
899 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST);
900 for (int i = 0; i < h274->num_intensity_intervals[c]; i++) {
901
902 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_PIECE);
903 print_int("intensity_interval_lower_bound", h274->intensity_interval_lower_bound[c][i]);
904 print_int("intensity_interval_upper_bound", h274->intensity_interval_upper_bound[c][i]);
905 print_list_fmt("comp_model_value", "%"PRId16, h274->num_model_values[c], 1, h274->comp_model_value[c][i][idx]);
906
907 // SECTION_ID_FRAME_SIDE_DATA_PIECE
908 avtext_print_section_footer(tfc);
909 }
910
911 // SECTION_ID_FRAME_SIDE_DATA_PIECE_LIST
912 avtext_print_section_footer(tfc);
913
914 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT
915 avtext_print_section_footer(tfc);
916 }
917
918 // SECTION_ID_FRAME_SIDE_DATA_COMPONENT_LIST
919 avtext_print_section_footer(tfc);
920 break;
921 }
922 }
923
924 av_bprint_finalize(&pbuf, NULL);
925 }
926
927 891 static void print_pkt_side_data(AVTextFormatContext *tfc,
928 AVCodecParameters *par,
929 const AVPacketSideData *sd,
930 SectionID id_data)
931 {
932 891 const char *name = av_packet_side_data_name(sd->type);
933
934 891 avtext_print_section_header(tfc, sd, id_data);
935
1/2
✓ Branch 0 taken 891 times.
✗ Branch 1 not taken.
891 print_str("side_data_type", name ? name : "unknown");
936
3/4
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 882 times.
✓ Branch 2 taken 9 times.
✗ Branch 3 not taken.
900 if (sd->type == AV_PKT_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
937 9 double rotation = av_display_rotation_get((int32_t *)sd->data);
938
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 9 times.
9 if (isnan(rotation))
939 rotation = 0;
940 9 avtext_print_integers(tfc, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);
941 9 print_int("rotation", rotation);
942
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 873 times.
882 } else if (sd->type == AV_PKT_DATA_STEREO3D) {
943 9 const AVStereo3D *stereo = (AVStereo3D *)sd->data;
944 9 print_str("type", av_stereo3d_type_name(stereo->type));
945 9 print_int("inverted", !!(stereo->flags & AV_STEREO3D_FLAG_INVERT));
946 9 print_str("view", av_stereo3d_view_name(stereo->view));
947 9 print_str("primary_eye", av_stereo3d_primary_eye_name(stereo->primary_eye));
948 9 print_int("baseline", stereo->baseline);
949 9 print_q("horizontal_disparity_adjustment", stereo->horizontal_disparity_adjustment, '/');
950 9 print_q("horizontal_field_of_view", stereo->horizontal_field_of_view, '/');
951
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 869 times.
873 } else if (sd->type == AV_PKT_DATA_SPHERICAL) {
952 4 const AVSphericalMapping *spherical = (AVSphericalMapping *)sd->data;
953 4 print_str("projection", av_spherical_projection_name(spherical->projection));
954
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (spherical->projection == AV_SPHERICAL_CUBEMAP) {
955 print_int("padding", spherical->padding);
956
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
4 } else if (spherical->projection == AV_SPHERICAL_EQUIRECTANGULAR_TILE) {
957 size_t l, t, r, b;
958 4 av_spherical_tile_bounds(spherical, par->width, par->height,
959 &l, &t, &r, &b);
960 4 print_int("bound_left", l);
961 4 print_int("bound_top", t);
962 4 print_int("bound_right", r);
963 4 print_int("bound_bottom", b);
964 }
965
966 4 print_int("yaw", (double) spherical->yaw / (1 << 16));
967 4 print_int("pitch", (double) spherical->pitch / (1 << 16));
968 4 print_int("roll", (double) spherical->roll / (1 << 16));
969
3/4
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 859 times.
✓ Branch 2 taken 10 times.
✗ Branch 3 not taken.
869 } else if (sd->type == AV_PKT_DATA_SKIP_SAMPLES && sd->size == 10) {
970 10 print_int("skip_samples", AV_RL32(sd->data));
971 10 print_int("discard_padding", AV_RL32(sd->data + 4));
972 10 print_int("skip_reason", AV_RL8(sd->data + 8));
973 10 print_int("discard_reason", AV_RL8(sd->data + 9));
974
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 853 times.
859 } else if (sd->type == AV_PKT_DATA_MASTERING_DISPLAY_METADATA) {
975 6 AVMasteringDisplayMetadata *metadata = (AVMasteringDisplayMetadata *)sd->data;
976
977
1/2
✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
6 if (metadata->has_primaries) {
978 6 print_q("red_x", metadata->display_primaries[0][0], '/');
979 6 print_q("red_y", metadata->display_primaries[0][1], '/');
980 6 print_q("green_x", metadata->display_primaries[1][0], '/');
981 6 print_q("green_y", metadata->display_primaries[1][1], '/');
982 6 print_q("blue_x", metadata->display_primaries[2][0], '/');
983 6 print_q("blue_y", metadata->display_primaries[2][1], '/');
984
985 6 print_q("white_point_x", metadata->white_point[0], '/');
986 6 print_q("white_point_y", metadata->white_point[1], '/');
987 }
988
989
1/2
✓ Branch 0 taken 6 times.
✗ Branch 1 not taken.
6 if (metadata->has_luminance) {
990 6 print_q("min_luminance", metadata->min_luminance, '/');
991 6 print_q("max_luminance", metadata->max_luminance, '/');
992 }
993
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 848 times.
853 } else if (sd->type == AV_PKT_DATA_CONTENT_LIGHT_LEVEL) {
994 5 AVContentLightMetadata *metadata = (AVContentLightMetadata *)sd->data;
995 5 print_int("max_content", metadata->MaxCLL);
996 5 print_int("max_average", metadata->MaxFALL);
997
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 846 times.
848 } else if (sd->type == AV_PKT_DATA_AMBIENT_VIEWING_ENVIRONMENT) {
998 2 print_ambient_viewing_environment(
999 2 tfc, (const AVAmbientViewingEnvironment *)sd->data);
1000
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 844 times.
846 } else if (sd->type == AV_PKT_DATA_DYNAMIC_HDR10_PLUS) {
1001 2 AVDynamicHDRPlus *metadata = (AVDynamicHDRPlus *)sd->data;
1002 2 print_dynamic_hdr10_plus(tfc, metadata);
1003
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 842 times.
844 } else if (sd->type == AV_PKT_DATA_DOVI_CONF) {
1004 2 AVDOVIDecoderConfigurationRecord *dovi = (AVDOVIDecoderConfigurationRecord *)sd->data;
1005 2 const char *comp = "unknown";
1006 2 print_int("dv_version_major", dovi->dv_version_major);
1007 2 print_int("dv_version_minor", dovi->dv_version_minor);
1008 2 print_int("dv_profile", dovi->dv_profile);
1009 2 print_int("dv_level", dovi->dv_level);
1010 2 print_int("rpu_present_flag", dovi->rpu_present_flag);
1011 2 print_int("el_present_flag", dovi->el_present_flag);
1012 2 print_int("bl_present_flag", dovi->bl_present_flag);
1013 2 print_int("dv_bl_signal_compatibility_id", dovi->dv_bl_signal_compatibility_id);
1014
1/5
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
2 switch (dovi->dv_md_compression)
1015 {
1016 2 case AV_DOVI_COMPRESSION_NONE: comp = "none"; break;
1017 case AV_DOVI_COMPRESSION_LIMITED: comp = "limited"; break;
1018 case AV_DOVI_COMPRESSION_RESERVED: comp = "reserved"; break;
1019 case AV_DOVI_COMPRESSION_EXTENDED: comp = "extended"; break;
1020 }
1021 2 print_str("dv_md_compression", comp);
1022
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 838 times.
842 } else if (sd->type == AV_PKT_DATA_AUDIO_SERVICE_TYPE) {
1023 4 enum AVAudioServiceType *t = (enum AVAudioServiceType *)sd->data;
1024 4 print_int("service_type", *t);
1025
2/2
✓ Branch 0 taken 669 times.
✓ Branch 1 taken 169 times.
838 } else if (sd->type == AV_PKT_DATA_MPEGTS_STREAM_ID) {
1026 669 print_int("id", *sd->data);
1027
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 160 times.
169 } else if (sd->type == AV_PKT_DATA_CPB_PROPERTIES) {
1028 9 const AVCPBProperties *prop = (AVCPBProperties *)sd->data;
1029 9 print_int("max_bitrate", prop->max_bitrate);
1030 9 print_int("min_bitrate", prop->min_bitrate);
1031 9 print_int("avg_bitrate", prop->avg_bitrate);
1032 9 print_int("buffer_size", prop->buffer_size);
1033 9 print_int("vbv_delay", prop->vbv_delay);
1034
2/2
✓ Branch 0 taken 152 times.
✓ Branch 1 taken 8 times.
160 } else if (sd->type == AV_PKT_DATA_WEBVTT_IDENTIFIER ||
1035
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 136 times.
152 sd->type == AV_PKT_DATA_WEBVTT_SETTINGS) {
1036
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 24 times.
24 if (do_show_data)
1037 avtext_print_data(tfc, "data", sd->data, sd->size);
1038 24 avtext_print_data_hash(tfc, "data_hash", sd->data, sd->size);
1039
3/4
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 133 times.
✓ Branch 2 taken 3 times.
✗ Branch 3 not taken.
136 } else if (sd->type == AV_PKT_DATA_FRAME_CROPPING && sd->size >= sizeof(uint32_t) * 4) {
1040 3 print_int("crop_top", AV_RL32(sd->data));
1041 3 print_int("crop_bottom", AV_RL32(sd->data + 4));
1042 3 print_int("crop_left", AV_RL32(sd->data + 8));
1043 3 print_int("crop_right", AV_RL32(sd->data + 12));
1044
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 133 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
133 } else if (sd->type == AV_PKT_DATA_AFD && sd->size > 0) {
1045 print_int("active_format", *sd->data);
1046 }
1047 891 }
1048
1049 424 static void print_private_data(AVTextFormatContext *tfc, void *priv_data)
1050 {
1051 424 const AVOption *opt = NULL;
1052
2/2
✓ Branch 1 taken 3286 times.
✓ Branch 2 taken 424 times.
3710 while (opt = av_opt_next(priv_data, opt)) {
1053 uint8_t *str;
1054
2/2
✓ Branch 0 taken 3088 times.
✓ Branch 1 taken 198 times.
3286 if (!(opt->flags & AV_OPT_FLAG_EXPORT)) continue;
1055
1/2
✓ Branch 1 taken 198 times.
✗ Branch 2 not taken.
198 if (av_opt_get(priv_data, opt->name, 0, &str) >= 0) {
1056 198 print_str(opt->name, str);
1057 198 av_free(str);
1058 }
1059 }
1060 424 }
1061
1062 678 static void print_pixel_format(AVTextFormatContext *tfc, enum AVPixelFormat pix_fmt)
1063 {
1064 678 const char *s = av_get_pix_fmt_name(pix_fmt);
1065 enum AVPixelFormat swapped_pix_fmt;
1066
1067
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 676 times.
678 if (!s) {
1068 2 print_str_opt("pix_fmt", "unknown");
1069
4/4
✓ Branch 0 taken 645 times.
✓ Branch 1 taken 31 times.
✓ Branch 2 taken 625 times.
✓ Branch 3 taken 20 times.
1321 } else if (!do_bitexact ||
1070 645 (swapped_pix_fmt = av_pix_fmt_swap_endianness(pix_fmt)) == AV_PIX_FMT_NONE) {
1071 656 print_str ("pix_fmt", s);
1072 } else {
1073 20 const char *s2 = av_get_pix_fmt_name(swapped_pix_fmt);
1074 char buf[128];
1075 20 size_t i = 0;
1076
1077
4/6
✓ Branch 0 taken 193 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 173 times.
✓ Branch 3 taken 20 times.
✓ Branch 4 taken 173 times.
✗ Branch 5 not taken.
193 while (s[i] && s[i] == s2[i] && i < sizeof(buf) - 1) {
1078 173 buf[i] = s[i];
1079 173 i++;
1080 }
1081 20 buf[i] = '\0';
1082
1083 20 print_str ("pix_fmt", buf);
1084 }
1085 678 }
1086
1087 678 static void print_color_range(AVTextFormatContext *tfc, enum AVColorRange color_range)
1088 {
1089 678 const char *val = av_color_range_name(color_range);
1090
3/4
✓ Branch 0 taken 678 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 407 times.
✓ Branch 3 taken 271 times.
678 if (!val || color_range == AVCOL_RANGE_UNSPECIFIED) {
1091 407 print_str_opt("color_range", "unknown");
1092 } else {
1093 271 print_str("color_range", val);
1094 }
1095 678 }
1096
1097 678 static void print_color_space(AVTextFormatContext *tfc, enum AVColorSpace color_space)
1098 {
1099 678 const char *val = av_color_space_name(color_space);
1100
3/4
✓ Branch 0 taken 678 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 457 times.
✓ Branch 3 taken 221 times.
678 if (!val || color_space == AVCOL_SPC_UNSPECIFIED) {
1101 457 print_str_opt("color_space", "unknown");
1102 } else {
1103 221 print_str("color_space", val);
1104 }
1105 678 }
1106
1107 678 static void print_primaries(AVTextFormatContext *tfc, enum AVColorPrimaries color_primaries)
1108 {
1109 678 const char *val = av_color_primaries_name(color_primaries);
1110
3/4
✓ Branch 0 taken 678 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 474 times.
✓ Branch 3 taken 204 times.
678 if (!val || color_primaries == AVCOL_PRI_UNSPECIFIED) {
1111 474 print_str_opt("color_primaries", "unknown");
1112 } else {
1113 204 print_str("color_primaries", val);
1114 }
1115 678 }
1116
1117 678 static void print_color_trc(AVTextFormatContext *tfc, enum AVColorTransferCharacteristic color_trc)
1118 {
1119 678 const char *val = av_color_transfer_name(color_trc);
1120
3/4
✓ Branch 0 taken 678 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 473 times.
✓ Branch 3 taken 205 times.
678 if (!val || color_trc == AVCOL_TRC_UNSPECIFIED) {
1121 473 print_str_opt("color_transfer", "unknown");
1122 } else {
1123 205 print_str("color_transfer", val);
1124 }
1125 678 }
1126
1127 678 static void print_chroma_location(AVTextFormatContext *tfc, enum AVChromaLocation chroma_location)
1128 {
1129 678 const char *val = av_chroma_location_name(chroma_location);
1130
3/4
✓ Branch 0 taken 678 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 407 times.
✓ Branch 3 taken 271 times.
678 if (!val || chroma_location == AVCHROMA_LOC_UNSPECIFIED) {
1131 407 print_str_opt("chroma_location", "unspecified");
1132 } else {
1133 271 print_str("chroma_location", val);
1134 }
1135 678 }
1136
1137 6337 static void clear_log(int need_lock)
1138 {
1139 int i;
1140
1141
1/2
✓ Branch 0 taken 6337 times.
✗ Branch 1 not taken.
6337 if (need_lock)
1142 6337 ff_mutex_lock(&log_mutex);
1143
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 6337 times.
6337 for (i=0; i<log_buffer_size; i++) {
1144 av_freep(&log_buffer[i].context_name);
1145 av_freep(&log_buffer[i].parent_name);
1146 av_freep(&log_buffer[i].log_message);
1147 }
1148 6337 log_buffer_size = 0;
1149
1/2
✓ Branch 0 taken 6337 times.
✗ Branch 1 not taken.
6337 if(need_lock)
1150 6337 ff_mutex_unlock(&log_mutex);
1151 6337 }
1152
1153 static int show_log(AVTextFormatContext *tfc, int section_ids, int section_id, int log_level)
1154 {
1155 int i;
1156 ff_mutex_lock(&log_mutex);
1157 if (!log_buffer_size) {
1158 ff_mutex_unlock(&log_mutex);
1159 return 0;
1160 }
1161 avtext_print_section_header(tfc, NULL, section_ids);
1162
1163 for (i=0; i<log_buffer_size; i++) {
1164 if (log_buffer[i].log_level <= log_level) {
1165 avtext_print_section_header(tfc, NULL, section_id);
1166 print_str("context", log_buffer[i].context_name);
1167 print_int("level", log_buffer[i].log_level);
1168 print_int("category", log_buffer[i].category);
1169 if (log_buffer[i].parent_name) {
1170 print_str("parent_context", log_buffer[i].parent_name);
1171 print_int("parent_category", log_buffer[i].parent_category);
1172 } else {
1173 print_str_opt("parent_context", "N/A");
1174 print_str_opt("parent_category", "N/A");
1175 }
1176 print_str("message", log_buffer[i].log_message);
1177 avtext_print_section_footer(tfc);
1178 }
1179 }
1180 clear_log(0);
1181 ff_mutex_unlock(&log_mutex);
1182
1183 avtext_print_section_footer(tfc);
1184
1185 return 0;
1186 }
1187
1188 5662 static void show_packet(AVTextFormatContext *tfc, InputFile *ifile, AVPacket *pkt, int packet_idx)
1189 {
1190 5662 AVStream *st = ifile->streams[pkt->stream_index].st;
1191 AVBPrint pbuf;
1192 const char *s;
1193
1194 5662 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1195
1196 5662 avtext_print_section_header(tfc, NULL, SECTION_ID_PACKET);
1197
1198 5662 s = av_get_media_type_string(st->codecpar->codec_type);
1199
1/2
✓ Branch 0 taken 5662 times.
✗ Branch 1 not taken.
5662 if (s) print_str ("codec_type", s);
1200 else print_str_opt("codec_type", "unknown");
1201 5662 print_int("stream_index", pkt->stream_index);
1202 5662 print_ts ("pts", pkt->pts);
1203 5662 print_time("pts_time", pkt->pts, &st->time_base);
1204 5662 print_ts ("dts", pkt->dts);
1205 5662 print_time("dts_time", pkt->dts, &st->time_base);
1206 5662 print_duration_ts("duration", pkt->duration);
1207 5662 print_duration_time("duration_time", pkt->duration, &st->time_base);
1208 5662 print_val("size", pkt->size, unit_byte_str);
1209
2/2
✓ Branch 0 taken 5574 times.
✓ Branch 1 taken 88 times.
5662 if (pkt->pos != -1) print_fmt ("pos", "%"PRId64, pkt->pos);
1210 88 else print_str_opt("pos", "N/A");
1211
6/6
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 5657 times.
✓ Branch 3 taken 6 times.
✓ Branch 4 taken 5656 times.
✓ Branch 5 taken 4702 times.
✓ Branch 6 taken 960 times.
5662 print_fmt("flags", "%c%c%c", pkt->flags & AV_PKT_FLAG_KEY ? 'K' : '_',
1212 pkt->flags & AV_PKT_FLAG_DISCARD ? 'D' : '_',
1213 pkt->flags & AV_PKT_FLAG_CORRUPT ? 'C' : '_');
1214
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5662 times.
5662 if (do_show_data)
1215 avtext_print_data(tfc, "data", pkt->data, pkt->size);
1216 5662 avtext_print_data_hash(tfc, "data_hash", pkt->data, pkt->size);
1217
1218
2/2
✓ Branch 0 taken 838 times.
✓ Branch 1 taken 4824 times.
5662 if (pkt->side_data_elems) {
1219 size_t size;
1220 const uint8_t *side_metadata;
1221
1222 838 side_metadata = av_packet_get_side_data(pkt, AV_PKT_DATA_STRINGS_METADATA, &size);
1223
4/6
✓ Branch 0 taken 131 times.
✓ Branch 1 taken 707 times.
✓ Branch 2 taken 131 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 131 times.
✗ Branch 5 not taken.
838 if (side_metadata && size && do_show_packet_tags) {
1224 131 AVDictionary *dict = NULL;
1225
1/2
✓ Branch 1 taken 131 times.
✗ Branch 2 not taken.
131 if (av_packet_unpack_dictionary(side_metadata, size, &dict) >= 0)
1226 131 show_tags(tfc, dict, SECTION_ID_PACKET_TAGS);
1227 131 av_dict_free(&dict);
1228 }
1229
1230 838 avtext_print_section_header(tfc, NULL, SECTION_ID_PACKET_SIDE_DATA_LIST);
1231
2/2
✓ Branch 0 taken 838 times.
✓ Branch 1 taken 838 times.
1676 for (int i = 0; i < pkt->side_data_elems; i++) {
1232 838 print_pkt_side_data(tfc, st->codecpar, &pkt->side_data[i],
1233 SECTION_ID_PACKET_SIDE_DATA);
1234 838 avtext_print_section_footer(tfc);
1235 }
1236 838 avtext_print_section_footer(tfc);
1237 }
1238
1239 5662 avtext_print_section_footer(tfc);
1240
1241 5662 av_bprint_finalize(&pbuf, NULL);
1242 5662 fflush(stdout);
1243 5662 }
1244
1245 static void show_subtitle(AVTextFormatContext *tfc, AVSubtitle *sub, AVStream *stream,
1246 AVFormatContext *fmt_ctx)
1247 {
1248 AVBPrint pbuf;
1249
1250 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1251
1252 avtext_print_section_header(tfc, NULL, SECTION_ID_SUBTITLE);
1253
1254 print_str ("media_type", "subtitle");
1255 print_ts ("pts", sub->pts);
1256 print_time("pts_time", sub->pts, &AV_TIME_BASE_Q);
1257 print_int ("format", sub->format);
1258 print_int ("start_display_time", sub->start_display_time);
1259 print_int ("end_display_time", sub->end_display_time);
1260 print_int ("num_rects", sub->num_rects);
1261
1262 avtext_print_section_footer(tfc);
1263
1264 av_bprint_finalize(&pbuf, NULL);
1265 fflush(stdout);
1266 }
1267
1268 182 static void print_frame_side_data(AVTextFormatContext *tfc,
1269 const AVFrame *frame,
1270 const AVStream *stream)
1271 {
1272 182 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_LIST);
1273
1274
2/2
✓ Branch 0 taken 325 times.
✓ Branch 1 taken 182 times.
507 for (int i = 0; i < frame->nb_side_data; i++) {
1275 325 const AVFrameSideData *sd = frame->side_data[i];
1276 const char *name;
1277
1278 325 avtext_print_section_header(tfc, sd, SECTION_ID_FRAME_SIDE_DATA);
1279 325 name = av_frame_side_data_name(sd->type);
1280
1/2
✓ Branch 0 taken 325 times.
✗ Branch 1 not taken.
325 print_str("side_data_type", name ? name : "unknown");
1281
3/4
✓ Branch 0 taken 87 times.
✓ Branch 1 taken 238 times.
✓ Branch 2 taken 87 times.
✗ Branch 3 not taken.
412 if (sd->type == AV_FRAME_DATA_DISPLAYMATRIX && sd->size >= 9*4) {
1282 87 double rotation = av_display_rotation_get((int32_t *)sd->data);
1283
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 87 times.
87 if (isnan(rotation))
1284 rotation = 0;
1285 87 avtext_print_integers(tfc, "displaymatrix", sd->data, 9, " %11d", 3, 4, 1);
1286 87 print_int("rotation", rotation);
1287
3/4
✓ Branch 0 taken 67 times.
✓ Branch 1 taken 171 times.
✓ Branch 2 taken 67 times.
✗ Branch 3 not taken.
238 } else if (sd->type == AV_FRAME_DATA_AFD && sd->size > 0) {
1288 67 print_int("active_format", *sd->data);
1289
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 171 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
171 } else if (sd->type == AV_FRAME_DATA_GOP_TIMECODE && sd->size >= 8) {
1290 char tcbuf[AV_TIMECODE_STR_SIZE];
1291 av_timecode_make_mpeg_tc_string(tcbuf, *(int64_t *)(sd->data));
1292 print_str("timecode", tcbuf);
1293
3/4
✓ Branch 0 taken 21 times.
✓ Branch 1 taken 150 times.
✓ Branch 2 taken 21 times.
✗ Branch 3 not taken.
192 } else if (sd->type == AV_FRAME_DATA_S12M_TIMECODE && sd->size == 16) {
1294 21 uint32_t *tc = (uint32_t*)sd->data;
1295 21 int m = FFMIN(tc[0],3);
1296 21 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_TIMECODE_LIST);
1297
2/2
✓ Branch 0 taken 21 times.
✓ Branch 1 taken 21 times.
42 for (int j = 1; j <= m ; j++) {
1298 char tcbuf[AV_TIMECODE_STR_SIZE];
1299 21 av_timecode_make_smpte_tc_string2(tcbuf, stream->avg_frame_rate, tc[j], 0, 0);
1300 21 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME_SIDE_DATA_TIMECODE);
1301 21 print_str("value", tcbuf);
1302 21 avtext_print_section_footer(tfc);
1303 }
1304 21 avtext_print_section_footer(tfc);
1305
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 126 times.
150 } else if (sd->type == AV_FRAME_DATA_MASTERING_DISPLAY_METADATA) {
1306 24 AVMasteringDisplayMetadata *metadata = (AVMasteringDisplayMetadata *)sd->data;
1307
1308
1/2
✓ Branch 0 taken 24 times.
✗ Branch 1 not taken.
24 if (metadata->has_primaries) {
1309 24 print_q("red_x", metadata->display_primaries[0][0], '/');
1310 24 print_q("red_y", metadata->display_primaries[0][1], '/');
1311 24 print_q("green_x", metadata->display_primaries[1][0], '/');
1312 24 print_q("green_y", metadata->display_primaries[1][1], '/');
1313 24 print_q("blue_x", metadata->display_primaries[2][0], '/');
1314 24 print_q("blue_y", metadata->display_primaries[2][1], '/');
1315
1316 24 print_q("white_point_x", metadata->white_point[0], '/');
1317 24 print_q("white_point_y", metadata->white_point[1], '/');
1318 }
1319
1320
1/2
✓ Branch 0 taken 24 times.
✗ Branch 1 not taken.
24 if (metadata->has_luminance) {
1321 24 print_q("min_luminance", metadata->min_luminance, '/');
1322 24 print_q("max_luminance", metadata->max_luminance, '/');
1323 }
1324
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 124 times.
126 } else if (sd->type == AV_FRAME_DATA_DYNAMIC_HDR_PLUS) {
1325 2 AVDynamicHDRPlus *metadata = (AVDynamicHDRPlus *)sd->data;
1326 2 print_dynamic_hdr10_plus(tfc, metadata);
1327
2/2
✓ Branch 0 taken 24 times.
✓ Branch 1 taken 100 times.
124 } else if (sd->type == AV_FRAME_DATA_CONTENT_LIGHT_LEVEL) {
1328 24 AVContentLightMetadata *metadata = (AVContentLightMetadata *)sd->data;
1329 24 print_int("max_content", metadata->MaxCLL);
1330 24 print_int("max_average", metadata->MaxFALL);
1331
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 97 times.
100 } else if (sd->type == AV_FRAME_DATA_ICC_PROFILE) {
1332 3 const AVDictionaryEntry *tag = av_dict_get(sd->metadata, "name", NULL, AV_DICT_MATCH_CASE);
1333
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 1 times.
3 if (tag)
1334 2 print_str(tag->key, tag->value);
1335 3 print_int("size", sd->size);
1336
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 95 times.
97 } else if (sd->type == AV_FRAME_DATA_DOVI_METADATA) {
1337 2 print_dovi_metadata(tfc, (const AVDOVIMetadata *)sd->data);
1338
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 94 times.
95 } else if (sd->type == AV_FRAME_DATA_DYNAMIC_HDR_VIVID) {
1339 1 AVDynamicHDRVivid *metadata = (AVDynamicHDRVivid *)sd->data;
1340 1 print_dynamic_hdr_vivid(tfc, metadata);
1341
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 92 times.
94 } else if (sd->type == AV_FRAME_DATA_AMBIENT_VIEWING_ENVIRONMENT) {
1342 2 print_ambient_viewing_environment(tfc, (const AVAmbientViewingEnvironment *)sd->data);
1343
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 92 times.
92 } else if (sd->type == AV_FRAME_DATA_FILM_GRAIN_PARAMS) {
1344 AVFilmGrainParams *fgp = (AVFilmGrainParams *)sd->data;
1345 print_film_grain_params(tfc, fgp);
1346
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 92 times.
92 } else if (sd->type == AV_FRAME_DATA_VIEW_ID) {
1347 print_int("view_id", *(int*)sd->data);
1348 }
1349 325 avtext_print_section_footer(tfc);
1350 }
1351 182 avtext_print_section_footer(tfc);
1352 182 }
1353
1354 3151 static void show_frame(AVTextFormatContext *tfc, AVFrame *frame, AVStream *stream,
1355 AVFormatContext *fmt_ctx)
1356 {
1357
1/2
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
3151 FrameData *fd = frame->opaque_ref ? (FrameData*)frame->opaque_ref->data : NULL;
1358 AVBPrint pbuf;
1359 char val_str[128];
1360 const char *s;
1361
1362 3151 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1363
1364 3151 avtext_print_section_header(tfc, NULL, SECTION_ID_FRAME);
1365
1366 3151 s = av_get_media_type_string(stream->codecpar->codec_type);
1367
1/2
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
3151 if (s) print_str ("media_type", s);
1368 else print_str_opt("media_type", "unknown");
1369 3151 print_int("stream_index", stream->index);
1370 3151 print_int("key_frame", !!(frame->flags & AV_FRAME_FLAG_KEY));
1371 3151 print_ts ("pts", frame->pts);
1372 3151 print_time("pts_time", frame->pts, &stream->time_base);
1373 3151 print_ts ("pkt_dts", frame->pkt_dts);
1374 3151 print_time("pkt_dts_time", frame->pkt_dts, &stream->time_base);
1375 3151 print_ts ("best_effort_timestamp", frame->best_effort_timestamp);
1376 3151 print_time("best_effort_timestamp_time", frame->best_effort_timestamp, &stream->time_base);
1377 3151 print_duration_ts ("duration", frame->duration);
1378 3151 print_duration_time("duration_time", frame->duration, &stream->time_base);
1379
3/4
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 2464 times.
✓ Branch 3 taken 687 times.
3151 if (fd && fd->pkt_pos != -1) print_fmt ("pkt_pos", "%"PRId64, fd->pkt_pos);
1380 687 else print_str_opt("pkt_pos", "N/A");
1381
2/4
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 3151 times.
✗ Branch 3 not taken.
3151 if (fd && fd->pkt_size != -1) print_val ("pkt_size", fd->pkt_size, unit_byte_str);
1382 else print_str_opt("pkt_size", "N/A");
1383
1384
2/3
✓ Branch 0 taken 576 times.
✓ Branch 1 taken 2575 times.
✗ Branch 2 not taken.
3151 switch (stream->codecpar->codec_type) {
1385 AVRational sar;
1386
1387 576 case AVMEDIA_TYPE_VIDEO:
1388 576 print_int("width", frame->width);
1389 576 print_int("height", frame->height);
1390 576 print_int("crop_top", frame->crop_top);
1391 576 print_int("crop_bottom", frame->crop_bottom);
1392 576 print_int("crop_left", frame->crop_left);
1393 576 print_int("crop_right", frame->crop_right);
1394 576 print_pixel_format(tfc, frame->format);
1395 576 sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, frame);
1396
2/2
✓ Branch 0 taken 568 times.
✓ Branch 1 taken 8 times.
576 if (sar.num) {
1397 568 print_q("sample_aspect_ratio", sar, ':');
1398 } else {
1399 8 print_str_opt("sample_aspect_ratio", "N/A");
1400 }
1401 576 print_fmt("pict_type", "%c", av_get_picture_type_char(frame->pict_type));
1402 576 print_int("interlaced_frame", !!(frame->flags & AV_FRAME_FLAG_INTERLACED));
1403 576 print_int("top_field_first", !!(frame->flags & AV_FRAME_FLAG_TOP_FIELD_FIRST));
1404 576 print_int("lossless", !!(frame->flags & AV_FRAME_FLAG_LOSSLESS));
1405 576 print_int("repeat_pict", frame->repeat_pict);
1406
1407 576 print_color_range(tfc, frame->color_range);
1408 576 print_color_space(tfc, frame->colorspace);
1409 576 print_primaries(tfc, frame->color_primaries);
1410 576 print_color_trc(tfc, frame->color_trc);
1411 576 print_chroma_location(tfc, frame->chroma_location);
1412 576 break;
1413
1414 2575 case AVMEDIA_TYPE_AUDIO:
1415 2575 s = av_get_sample_fmt_name(frame->format);
1416
1/2
✓ Branch 0 taken 2575 times.
✗ Branch 1 not taken.
2575 if (s) print_str ("sample_fmt", s);
1417 else print_str_opt("sample_fmt", "unknown");
1418 2575 print_int("nb_samples", frame->nb_samples);
1419 2575 print_int("channels", frame->ch_layout.nb_channels);
1420
2/2
✓ Branch 0 taken 2352 times.
✓ Branch 1 taken 223 times.
2575 if (frame->ch_layout.order != AV_CHANNEL_ORDER_UNSPEC) {
1421 2352 av_channel_layout_describe(&frame->ch_layout, val_str, sizeof(val_str));
1422 2352 print_str ("channel_layout", val_str);
1423 } else
1424 223 print_str_opt("channel_layout", "unknown");
1425 2575 break;
1426 }
1427
2/2
✓ Branch 0 taken 1103 times.
✓ Branch 1 taken 2048 times.
3151 if (do_show_frame_tags)
1428 1103 show_tags(tfc, frame->metadata, SECTION_ID_FRAME_TAGS);
1429
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3151 times.
3151 if (do_show_log)
1430 show_log(tfc, SECTION_ID_FRAME_LOGS, SECTION_ID_FRAME_LOG, do_show_log);
1431
2/2
✓ Branch 0 taken 182 times.
✓ Branch 1 taken 2969 times.
3151 if (frame->nb_side_data)
1432 182 print_frame_side_data(tfc, frame, stream);
1433
1434 3151 avtext_print_section_footer(tfc);
1435
1436 3151 av_bprint_finalize(&pbuf, NULL);
1437 3151 fflush(stdout);
1438 3151 }
1439
1440 6337 static av_always_inline int process_frame(AVTextFormatContext *tfc,
1441 InputFile *ifile,
1442 AVFrame *frame, const AVPacket *pkt,
1443 int *packet_new)
1444 {
1445 6337 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1446 6337 AVCodecContext *dec_ctx = ifile->streams[pkt->stream_index].dec_ctx;
1447 6337 AVCodecParameters *par = ifile->streams[pkt->stream_index].st->codecpar;
1448 AVSubtitle sub;
1449 6337 int ret = 0, got_frame = 0;
1450
1451 6337 clear_log(1);
1452
2/2
✓ Branch 0 taken 6331 times.
✓ Branch 1 taken 6 times.
6337 if (dec_ctx) {
1453
1/3
✓ Branch 0 taken 6331 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
6331 switch (par->codec_type) {
1454 6331 case AVMEDIA_TYPE_VIDEO:
1455 case AVMEDIA_TYPE_AUDIO:
1456
2/2
✓ Branch 0 taken 3201 times.
✓ Branch 1 taken 3130 times.
6331 if (*packet_new) {
1457 3201 ret = avcodec_send_packet(dec_ctx, pkt);
1458
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3201 times.
3201 if (ret == AVERROR(EAGAIN)) {
1459 ret = 0;
1460
4/4
✓ Branch 0 taken 23 times.
✓ Branch 1 taken 3178 times.
✓ Branch 2 taken 21 times.
✓ Branch 3 taken 2 times.
3201 } else if (ret >= 0 || ret == AVERROR_EOF) {
1461 3199 ret = 0;
1462 3199 *packet_new = 0;
1463 }
1464 }
1465
2/2
✓ Branch 0 taken 6329 times.
✓ Branch 1 taken 2 times.
6331 if (ret >= 0) {
1466 6329 ret = avcodec_receive_frame(dec_ctx, frame);
1467
2/2
✓ Branch 0 taken 3151 times.
✓ Branch 1 taken 3178 times.
6329 if (ret >= 0) {
1468 3151 got_frame = 1;
1469
3/4
✓ Branch 0 taken 70 times.
✓ Branch 1 taken 3108 times.
✓ Branch 2 taken 70 times.
✗ Branch 3 not taken.
3178 } else if (ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) {
1470 3178 ret = 0;
1471 }
1472 }
1473 6331 break;
1474
1475 case AVMEDIA_TYPE_SUBTITLE:
1476 if (*packet_new)
1477 ret = avcodec_decode_subtitle2(dec_ctx, &sub, &got_frame, pkt);
1478 *packet_new = 0;
1479 break;
1480 default:
1481 *packet_new = 0;
1482 }
1483 } else {
1484 6 *packet_new = 0;
1485 }
1486
1487
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 6335 times.
6337 if (ret < 0)
1488 2 return ret;
1489
2/2
✓ Branch 0 taken 3151 times.
✓ Branch 1 taken 3184 times.
6335 if (got_frame) {
1490 3151 int is_sub = (par->codec_type == AVMEDIA_TYPE_SUBTITLE);
1491 3151 nb_streams_frames[pkt->stream_index]++;
1492
1/2
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
3151 if (do_show_frames)
1493
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3151 times.
3151 if (is_sub)
1494 show_subtitle(tfc, &sub, ifile->streams[pkt->stream_index].st, fmt_ctx);
1495 else
1496 3151 show_frame(tfc, frame, ifile->streams[pkt->stream_index].st, fmt_ctx);
1497
1498
2/4
✓ Branch 0 taken 3151 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 3151 times.
3151 if (!is_sub && do_analyze_frames) {
1499 for (int i = 0; i < frame->nb_side_data; i++) {
1500 if (frame->side_data[i]->type == AV_FRAME_DATA_A53_CC)
1501 streams_with_closed_captions[pkt->stream_index] = 1;
1502 else if (frame->side_data[i]->type == AV_FRAME_DATA_FILM_GRAIN_PARAMS)
1503 streams_with_film_grain[pkt->stream_index] = 1;
1504 }
1505 }
1506
1507
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3151 times.
3151 if (is_sub)
1508 avsubtitle_free(&sub);
1509 }
1510
3/4
✓ Branch 0 taken 3184 times.
✓ Branch 1 taken 3151 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 3184 times.
6335 return got_frame || *packet_new;
1511 }
1512
1513 84 static void log_read_interval(const ReadInterval *interval, void *log_ctx, int log_level)
1514 {
1515 84 av_log(log_ctx, log_level, "id:%d", interval->id);
1516
1517
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 84 times.
84 if (interval->has_start) {
1518 av_log(log_ctx, log_level, " start:%s%s", interval->start_is_offset ? "+" : "",
1519 av_ts2timestr(interval->start, &AV_TIME_BASE_Q));
1520 } else {
1521 84 av_log(log_ctx, log_level, " start:N/A");
1522 }
1523
1524
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 76 times.
84 if (interval->has_end) {
1525
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 6 times.
8 av_log(log_ctx, log_level, " end:%s", interval->end_is_offset ? "+" : "");
1526
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 6 times.
8 if (interval->duration_frames)
1527 2 av_log(log_ctx, log_level, "#%"PRId64, interval->end);
1528 else
1529 6 av_log(log_ctx, log_level, "%s", av_ts2timestr(interval->end, &AV_TIME_BASE_Q));
1530 } else {
1531 76 av_log(log_ctx, log_level, " end:N/A");
1532 }
1533
1534 84 av_log(log_ctx, log_level, "\n");
1535 84 }
1536
1537 80 static int read_interval_packets(AVTextFormatContext *tfc, InputFile *ifile,
1538 const ReadInterval *interval, int64_t *cur_ts)
1539 {
1540 80 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1541 80 AVPacket *pkt = NULL;
1542 80 AVFrame *frame = NULL;
1543 80 int ret = 0, i = 0, frame_count = 0;
1544 80 int64_t start = -INT64_MAX, end = interval->end;
1545
4/4
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 76 times.
✓ Branch 2 taken 3 times.
✓ Branch 3 taken 1 times.
80 int has_start = 0, has_end = interval->has_end && !interval->end_is_offset;
1546
1547 80 av_log(NULL, AV_LOG_VERBOSE, "Processing read interval ");
1548 80 log_read_interval(interval, NULL, AV_LOG_VERBOSE);
1549
1550
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 80 times.
80 if (interval->has_start) {
1551 int64_t target;
1552 if (interval->start_is_offset) {
1553 if (*cur_ts == AV_NOPTS_VALUE) {
1554 av_log(NULL, AV_LOG_ERROR,
1555 "Could not seek to relative position since current "
1556 "timestamp is not defined\n");
1557 ret = AVERROR(EINVAL);
1558 goto end;
1559 }
1560 target = *cur_ts + interval->start;
1561 } else {
1562 target = interval->start;
1563 }
1564
1565 av_log(NULL, AV_LOG_VERBOSE, "Seeking to read interval start point %s\n",
1566 av_ts2timestr(target, &AV_TIME_BASE_Q));
1567 if ((ret = avformat_seek_file(fmt_ctx, -1, -INT64_MAX, target, INT64_MAX, 0)) < 0) {
1568 av_log(NULL, AV_LOG_ERROR, "Could not seek to position %"PRId64": %s\n",
1569 interval->start, av_err2str(ret));
1570 goto end;
1571 }
1572 }
1573
1574 80 frame = av_frame_alloc();
1575
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 80 times.
80 if (!frame) {
1576 ret = AVERROR(ENOMEM);
1577 goto end;
1578 }
1579 80 pkt = av_packet_alloc();
1580
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 80 times.
80 if (!pkt) {
1581 ret = AVERROR(ENOMEM);
1582 goto end;
1583 }
1584
2/2
✓ Branch 1 taken 8553 times.
✓ Branch 2 taken 76 times.
8629 while (!av_read_frame(fmt_ctx, pkt)) {
1585
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8553 times.
8553 if (fmt_ctx->nb_streams > nb_streams) {
1586 REALLOCZ_ARRAY_STREAM(nb_streams_frames, nb_streams, fmt_ctx->nb_streams);
1587 REALLOCZ_ARRAY_STREAM(nb_streams_packets, nb_streams, fmt_ctx->nb_streams);
1588 REALLOCZ_ARRAY_STREAM(selected_streams, nb_streams, fmt_ctx->nb_streams);
1589 REALLOCZ_ARRAY_STREAM(streams_with_closed_captions, nb_streams, fmt_ctx->nb_streams);
1590 REALLOCZ_ARRAY_STREAM(streams_with_film_grain, nb_streams, fmt_ctx->nb_streams);
1591 nb_streams = fmt_ctx->nb_streams;
1592 }
1593
2/2
✓ Branch 0 taken 8509 times.
✓ Branch 1 taken 44 times.
8553 if (selected_streams[pkt->stream_index]) {
1594 8509 AVRational tb = ifile->streams[pkt->stream_index].st->time_base;
1595
2/2
✓ Branch 0 taken 8416 times.
✓ Branch 1 taken 93 times.
8509 int64_t pts = pkt->pts != AV_NOPTS_VALUE ? pkt->pts : pkt->dts;
1596
1597
2/2
✓ Branch 0 taken 8416 times.
✓ Branch 1 taken 93 times.
8509 if (pts != AV_NOPTS_VALUE)
1598 8416 *cur_ts = av_rescale_q(pts, tb, AV_TIME_BASE_Q);
1599
1600
4/4
✓ Branch 0 taken 166 times.
✓ Branch 1 taken 8343 times.
✓ Branch 2 taken 74 times.
✓ Branch 3 taken 92 times.
8509 if (!has_start && *cur_ts != AV_NOPTS_VALUE) {
1601 74 start = *cur_ts;
1602 74 has_start = 1;
1603 }
1604
1605
6/6
✓ Branch 0 taken 8417 times.
✓ Branch 1 taken 92 times.
✓ Branch 2 taken 8401 times.
✓ Branch 3 taken 16 times.
✓ Branch 4 taken 1 times.
✓ Branch 5 taken 8400 times.
8509 if (has_start && !has_end && interval->end_is_offset) {
1606 1 end = start + interval->end;
1607 1 has_end = 1;
1608 }
1609
1610
3/4
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 8506 times.
✓ Branch 2 taken 3 times.
✗ Branch 3 not taken.
8509 if (interval->end_is_offset && interval->duration_frames) {
1611
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 2 times.
3 if (frame_count >= interval->end)
1612 4 break;
1613
5/6
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 8492 times.
✓ Branch 2 taken 14 times.
✗ Branch 3 not taken.
✓ Branch 4 taken 3 times.
✓ Branch 5 taken 11 times.
8506 } else if (has_end && *cur_ts != AV_NOPTS_VALUE && *cur_ts >= end) {
1614 3 break;
1615 }
1616
1617 8505 frame_count++;
1618
2/2
✓ Branch 0 taken 5662 times.
✓ Branch 1 taken 2843 times.
8505 if (do_read_packets) {
1619
1/2
✓ Branch 0 taken 5662 times.
✗ Branch 1 not taken.
5662 if (do_show_packets)
1620 5662 show_packet(tfc, ifile, pkt, i++);
1621 5662 nb_streams_packets[pkt->stream_index]++;
1622 }
1623
2/2
✓ Branch 0 taken 3110 times.
✓ Branch 1 taken 5395 times.
8505 if (do_read_frames) {
1624 3110 int packet_new = 1;
1625 FrameData *fd;
1626
1627 3110 pkt->opaque_ref = av_buffer_allocz(sizeof(*fd));
1628
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3110 times.
3110 if (!pkt->opaque_ref) {
1629 ret = AVERROR(ENOMEM);
1630 goto end;
1631 }
1632 3110 fd = (FrameData*)pkt->opaque_ref->data;
1633 3110 fd->pkt_pos = pkt->pos;
1634 3110 fd->pkt_size = pkt->size;
1635
1636
2/2
✓ Branch 1 taken 3130 times.
✓ Branch 2 taken 3110 times.
6240 while (process_frame(tfc, ifile, frame, pkt, &packet_new) > 0);
1637 }
1638 }
1639 8549 av_packet_unref(pkt);
1640 }
1641 80 av_packet_unref(pkt);
1642 //Flush remaining frames that are cached in the decoder
1643
2/2
✓ Branch 0 taken 120 times.
✓ Branch 1 taken 80 times.
200 for (i = 0; i < ifile->nb_streams; i++) {
1644 120 pkt->stream_index = i;
1645
2/2
✓ Branch 0 taken 76 times.
✓ Branch 1 taken 44 times.
120 if (do_read_frames) {
1646
2/2
✓ Branch 1 taken 21 times.
✓ Branch 2 taken 76 times.
97 while (process_frame(tfc, ifile, frame, pkt, &(int){1}) > 0);
1647
2/2
✓ Branch 0 taken 70 times.
✓ Branch 1 taken 6 times.
76 if (ifile->streams[i].dec_ctx)
1648 70 avcodec_flush_buffers(ifile->streams[i].dec_ctx);
1649 }
1650 }
1651
1652 80 end:
1653 80 av_frame_free(&frame);
1654 80 av_packet_free(&pkt);
1655
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 80 times.
80 if (ret < 0) {
1656 av_log(NULL, AV_LOG_ERROR, "Could not read packets in interval ");
1657 log_read_interval(interval, NULL, AV_LOG_ERROR);
1658 }
1659 80 return ret;
1660 }
1661
1662 80 static int read_packets(AVTextFormatContext *tfc, InputFile *ifile)
1663 {
1664 80 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1665 80 int i, ret = 0;
1666 80 int64_t cur_ts = fmt_ctx->start_time;
1667
1668
2/2
✓ Branch 0 taken 76 times.
✓ Branch 1 taken 4 times.
80 if (read_intervals_nb == 0) {
1669 76 ReadInterval interval = (ReadInterval) { .has_start = 0, .has_end = 0 };
1670 76 ret = read_interval_packets(tfc, ifile, &interval, &cur_ts);
1671 } else {
1672
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
8 for (i = 0; i < read_intervals_nb; i++) {
1673 4 ret = read_interval_packets(tfc, ifile, &read_intervals[i], &cur_ts);
1674
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (ret < 0)
1675 break;
1676 }
1677 }
1678
1679 80 return ret;
1680 }
1681
1682 262 static void print_dispositions(AVTextFormatContext *tfc, uint32_t disposition, SectionID section_id)
1683 {
1684 262 avtext_print_section_header(tfc, NULL, section_id);
1685
2/2
✓ Branch 0 taken 8384 times.
✓ Branch 1 taken 262 times.
8646 for (int i = 0; i < sizeof(disposition) * CHAR_BIT; i++) {
1686 8384 const char *disposition_str = av_disposition_to_string(1U << i);
1687
1688
2/2
✓ Branch 0 taken 4978 times.
✓ Branch 1 taken 3406 times.
8384 if (disposition_str)
1689 4978 print_int(disposition_str, !!(disposition & (1U << i)));
1690 }
1691 262 avtext_print_section_footer(tfc);
1692 262 }
1693
1694 #define IN_PROGRAM 1
1695 #define IN_STREAM_GROUP 2
1696
1697 323 static int show_stream(AVTextFormatContext *tfc, AVFormatContext *fmt_ctx, int stream_idx, InputStream *ist, int container)
1698 {
1699 323 AVStream *stream = ist->st;
1700 AVCodecParameters *par;
1701 AVCodecContext *dec_ctx;
1702 char val_str[128];
1703 const char *s;
1704 AVRational sar, dar;
1705 AVBPrint pbuf;
1706 const AVCodecDescriptor *cd;
1707 323 const SectionID section_header[] = {
1708 SECTION_ID_STREAM,
1709 SECTION_ID_PROGRAM_STREAM,
1710 SECTION_ID_STREAM_GROUP_STREAM,
1711 };
1712 323 const SectionID section_disposition[] = {
1713 SECTION_ID_STREAM_DISPOSITION,
1714 SECTION_ID_PROGRAM_STREAM_DISPOSITION,
1715 SECTION_ID_STREAM_GROUP_STREAM_DISPOSITION,
1716 };
1717 323 const SectionID section_tags[] = {
1718 SECTION_ID_STREAM_TAGS,
1719 SECTION_ID_PROGRAM_STREAM_TAGS,
1720 SECTION_ID_STREAM_GROUP_STREAM_TAGS,
1721 };
1722 323 int ret = 0;
1723 323 const char *profile = NULL;
1724
1725
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 323 times.
323 av_assert0(container < FF_ARRAY_ELEMS(section_header));
1726
1727 323 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
1728
1729 323 avtext_print_section_header(tfc, NULL, section_header[container]);
1730
1731 323 print_int("index", stream->index);
1732
1733 323 par = stream->codecpar;
1734 323 dec_ctx = ist->dec_ctx;
1735
2/2
✓ Branch 1 taken 320 times.
✓ Branch 2 taken 3 times.
323 if (cd = avcodec_descriptor_get(par->codec_id)) {
1736 320 print_str("codec_name", cd->name);
1737
2/2
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 310 times.
320 if (!do_bitexact) {
1738
1/2
✓ Branch 0 taken 10 times.
✗ Branch 1 not taken.
10 print_str("codec_long_name",
1739 cd->long_name ? cd->long_name : "unknown");
1740 }
1741 } else {
1742 3 print_str_opt("codec_name", "unknown");
1743
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (!do_bitexact) {
1744 print_str_opt("codec_long_name", "unknown");
1745 }
1746 }
1747
1748
4/4
✓ Branch 0 taken 10 times.
✓ Branch 1 taken 313 times.
✓ Branch 3 taken 9 times.
✓ Branch 4 taken 1 times.
323 if (!do_bitexact && (profile = avcodec_profile_name(par->codec_id, par->profile)))
1749 9 print_str("profile", profile);
1750 else {
1751
2/2
✓ Branch 0 taken 71 times.
✓ Branch 1 taken 243 times.
314 if (par->profile != AV_PROFILE_UNKNOWN) {
1752 char profile_num[12];
1753 71 snprintf(profile_num, sizeof(profile_num), "%d", par->profile);
1754 71 print_str("profile", profile_num);
1755 } else
1756 243 print_str_opt("profile", "unknown");
1757 }
1758
1759 323 s = av_get_media_type_string(par->codec_type);
1760
1/2
✓ Branch 0 taken 323 times.
✗ Branch 1 not taken.
323 if (s) print_str ("codec_type", s);
1761 else print_str_opt("codec_type", "unknown");
1762
1763 /* print AVI/FourCC tag */
1764 323 print_str("codec_tag_string", av_fourcc2str(par->codec_tag));
1765 323 print_fmt("codec_tag", "0x%04"PRIx32, par->codec_tag);
1766
1767
4/4
✓ Branch 0 taken 102 times.
✓ Branch 1 taken 207 times.
✓ Branch 2 taken 7 times.
✓ Branch 3 taken 7 times.
323 switch (par->codec_type) {
1768 102 case AVMEDIA_TYPE_VIDEO:
1769 102 print_int("width", par->width);
1770 102 print_int("height", par->height);
1771
1/2
✓ Branch 0 taken 102 times.
✗ Branch 1 not taken.
102 if (dec_ctx) {
1772 102 print_int("coded_width", dec_ctx->coded_width);
1773 102 print_int("coded_height", dec_ctx->coded_height);
1774
1775
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 102 times.
102 if (do_analyze_frames) {
1776 print_int("closed_captions", streams_with_closed_captions[stream->index]);
1777 print_int("film_grain", streams_with_film_grain[stream->index]);
1778 }
1779 }
1780 102 print_int("has_b_frames", par->video_delay);
1781 102 sar = av_guess_sample_aspect_ratio(fmt_ctx, stream, NULL);
1782
2/2
✓ Branch 0 taken 73 times.
✓ Branch 1 taken 29 times.
102 if (sar.num) {
1783 73 print_q("sample_aspect_ratio", sar, ':');
1784 73 av_reduce(&dar.num, &dar.den,
1785 73 (int64_t) par->width * sar.num,
1786 73 (int64_t) par->height * sar.den,
1787 1024*1024);
1788 73 print_q("display_aspect_ratio", dar, ':');
1789 } else {
1790 29 print_str_opt("sample_aspect_ratio", "N/A");
1791 29 print_str_opt("display_aspect_ratio", "N/A");
1792 }
1793 102 print_pixel_format(tfc, par->format);
1794 102 print_int("level", par->level);
1795
1796 102 print_color_range(tfc, par->color_range);
1797 102 print_color_space(tfc, par->color_space);
1798 102 print_color_trc(tfc, par->color_trc);
1799 102 print_primaries(tfc, par->color_primaries);
1800 102 print_chroma_location(tfc, par->chroma_location);
1801
1802
2/2
✓ Branch 0 taken 28 times.
✓ Branch 1 taken 74 times.
102 if (par->field_order == AV_FIELD_PROGRESSIVE)
1803 28 print_str("field_order", "progressive");
1804
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 65 times.
74 else if (par->field_order == AV_FIELD_TT)
1805 9 print_str("field_order", "tt");
1806
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 64 times.
65 else if (par->field_order == AV_FIELD_BB)
1807 1 print_str("field_order", "bb");
1808
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
64 else if (par->field_order == AV_FIELD_TB)
1809 print_str("field_order", "tb");
1810
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 64 times.
64 else if (par->field_order == AV_FIELD_BT)
1811 print_str("field_order", "bt");
1812 else
1813 64 print_str_opt("field_order", "unknown");
1814
1815
1/2
✓ Branch 0 taken 102 times.
✗ Branch 1 not taken.
102 if (dec_ctx)
1816 102 print_int("refs", dec_ctx->refs);
1817 102 break;
1818
1819 207 case AVMEDIA_TYPE_AUDIO:
1820 207 s = av_get_sample_fmt_name(par->format);
1821
1/2
✓ Branch 0 taken 207 times.
✗ Branch 1 not taken.
207 if (s) print_str ("sample_fmt", s);
1822 else print_str_opt("sample_fmt", "unknown");
1823 207 print_val("sample_rate", par->sample_rate, unit_hertz_str);
1824 207 print_int("channels", par->ch_layout.nb_channels);
1825
1826
2/2
✓ Branch 0 taken 181 times.
✓ Branch 1 taken 26 times.
207 if (par->ch_layout.order != AV_CHANNEL_ORDER_UNSPEC) {
1827 181 av_channel_layout_describe(&par->ch_layout, val_str, sizeof(val_str));
1828 181 print_str ("channel_layout", val_str);
1829 } else {
1830 26 print_str_opt("channel_layout", "unknown");
1831 }
1832
1833 207 print_int("bits_per_sample", av_get_bits_per_sample(par->codec_id));
1834
1835 207 print_int("initial_padding", par->initial_padding);
1836 207 break;
1837
1838 7 case AVMEDIA_TYPE_SUBTITLE:
1839
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 7 times.
7 if (par->width)
1840 print_int("width", par->width);
1841 else
1842 7 print_str_opt("width", "N/A");
1843
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 7 times.
7 if (par->height)
1844 print_int("height", par->height);
1845 else
1846 7 print_str_opt("height", "N/A");
1847 7 break;
1848 }
1849
1850
2/2
✓ Branch 0 taken 320 times.
✓ Branch 1 taken 3 times.
323 if (show_private_data) {
1851
4/4
✓ Branch 0 taken 311 times.
✓ Branch 1 taken 9 times.
✓ Branch 2 taken 247 times.
✓ Branch 3 taken 64 times.
320 if (dec_ctx && dec_ctx->codec->priv_class)
1852 247 print_private_data(tfc, dec_ctx->priv_data);
1853
2/2
✓ Branch 0 taken 177 times.
✓ Branch 1 taken 143 times.
320 if (fmt_ctx->iformat->priv_class)
1854 177 print_private_data(tfc, fmt_ctx->priv_data);
1855 }
1856
1857
2/2
✓ Branch 0 taken 207 times.
✓ Branch 1 taken 116 times.
323 if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt ("id", "0x%x", stream->id);
1858 116 else print_str_opt("id", "N/A");
1859 323 print_q("r_frame_rate", stream->r_frame_rate, '/');
1860 323 print_q("avg_frame_rate", stream->avg_frame_rate, '/');
1861 323 print_q("time_base", stream->time_base, '/');
1862 323 print_ts ("start_pts", stream->start_time);
1863 323 print_time("start_time", stream->start_time, &stream->time_base);
1864 323 print_ts ("duration_ts", stream->duration);
1865 323 print_time("duration", stream->duration, &stream->time_base);
1866
2/2
✓ Branch 0 taken 83 times.
✓ Branch 1 taken 240 times.
323 if (par->bit_rate > 0) print_val ("bit_rate", par->bit_rate, unit_bit_per_second_str);
1867 240 else print_str_opt("bit_rate", "N/A");
1868
3/4
✓ Branch 0 taken 314 times.
✓ Branch 1 taken 9 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 314 times.
323 if (dec_ctx && dec_ctx->rc_max_rate > 0)
1869 print_val ("max_bit_rate", dec_ctx->rc_max_rate, unit_bit_per_second_str);
1870 else
1871 323 print_str_opt("max_bit_rate", "N/A");
1872
4/4
✓ Branch 0 taken 314 times.
✓ Branch 1 taken 9 times.
✓ Branch 2 taken 162 times.
✓ Branch 3 taken 152 times.
323 if (dec_ctx && dec_ctx->bits_per_raw_sample > 0) print_fmt("bits_per_raw_sample", "%d", dec_ctx->bits_per_raw_sample);
1873 161 else print_str_opt("bits_per_raw_sample", "N/A");
1874
2/2
✓ Branch 0 taken 47 times.
✓ Branch 1 taken 276 times.
323 if (stream->nb_frames) print_fmt ("nb_frames", "%"PRId64, stream->nb_frames);
1875 276 else print_str_opt("nb_frames", "N/A");
1876
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 290 times.
323 if (nb_streams_frames[stream_idx]) print_fmt ("nb_read_frames", "%"PRIu64, nb_streams_frames[stream_idx]);
1877 290 else print_str_opt("nb_read_frames", "N/A");
1878
2/2
✓ Branch 0 taken 62 times.
✓ Branch 1 taken 261 times.
323 if (nb_streams_packets[stream_idx]) print_fmt ("nb_read_packets", "%"PRIu64, nb_streams_packets[stream_idx]);
1879 261 else print_str_opt("nb_read_packets", "N/A");
1880
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 323 times.
323 if (do_show_data)
1881 avtext_print_data(tfc, "extradata", par->extradata,
1882 par->extradata_size);
1883
1884
2/2
✓ Branch 0 taken 223 times.
✓ Branch 1 taken 100 times.
323 if (par->extradata_size > 0) {
1885 223 print_int("extradata_size", par->extradata_size);
1886 223 avtext_print_data_hash(tfc, "extradata_hash", par->extradata,
1887 par->extradata_size);
1888 }
1889
1890 /* Print disposition information */
1891
2/2
✓ Branch 0 taken 249 times.
✓ Branch 1 taken 74 times.
323 if (do_show_stream_disposition) {
1892
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 249 times.
249 av_assert0(container < FF_ARRAY_ELEMS(section_disposition));
1893 249 print_dispositions(tfc, stream->disposition, section_disposition[container]);
1894 }
1895
1896
2/2
✓ Branch 0 taken 97 times.
✓ Branch 1 taken 226 times.
323 if (do_show_stream_tags) {
1897
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 97 times.
97 av_assert0(container < FF_ARRAY_ELEMS(section_tags));
1898 97 ret = show_tags(tfc, stream->metadata, section_tags[container]);
1899 }
1900
1901
2/2
✓ Branch 0 taken 38 times.
✓ Branch 1 taken 285 times.
323 if (stream->codecpar->nb_coded_side_data) {
1902 38 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_SIDE_DATA_LIST);
1903
2/2
✓ Branch 0 taken 53 times.
✓ Branch 1 taken 38 times.
91 for (int i = 0; i < stream->codecpar->nb_coded_side_data; i++) {
1904 53 print_pkt_side_data(tfc, stream->codecpar, &stream->codecpar->coded_side_data[i],
1905 SECTION_ID_STREAM_SIDE_DATA);
1906 53 avtext_print_section_footer(tfc);
1907 }
1908 38 avtext_print_section_footer(tfc);
1909 }
1910
1911 323 avtext_print_section_footer(tfc);
1912 323 av_bprint_finalize(&pbuf, NULL);
1913 323 fflush(stdout);
1914
1915 323 return ret;
1916 }
1917
1918 91 static int show_streams(AVTextFormatContext *tfc, InputFile *ifile)
1919 {
1920 91 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1921 91 int i, ret = 0;
1922
1923 91 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAMS);
1924
2/2
✓ Branch 0 taken 194 times.
✓ Branch 1 taken 91 times.
285 for (i = 0; i < ifile->nb_streams; i++)
1925
2/2
✓ Branch 0 taken 184 times.
✓ Branch 1 taken 10 times.
194 if (selected_streams[i]) {
1926 184 ret = show_stream(tfc, fmt_ctx, i, &ifile->streams[i], 0);
1927
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 184 times.
184 if (ret < 0)
1928 break;
1929 }
1930 91 avtext_print_section_footer(tfc);
1931
1932 91 return ret;
1933 }
1934
1935 3 static int show_program(AVTextFormatContext *tfc, InputFile *ifile, AVProgram *program)
1936 {
1937 3 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1938 3 int i, ret = 0;
1939
1940 3 avtext_print_section_header(tfc, NULL, SECTION_ID_PROGRAM);
1941 3 print_int("program_id", program->id);
1942 3 print_int("program_num", program->program_num);
1943 3 print_int("nb_streams", program->nb_stream_indexes);
1944 3 print_int("pmt_pid", program->pmt_pid);
1945 3 print_int("pcr_pid", program->pcr_pid);
1946
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (do_show_program_tags)
1947 ret = show_tags(tfc, program->metadata, SECTION_ID_PROGRAM_TAGS);
1948
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (ret < 0)
1949 goto end;
1950
1951 3 avtext_print_section_header(tfc, NULL, SECTION_ID_PROGRAM_STREAMS);
1952
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 3 times.
12 for (i = 0; i < program->nb_stream_indexes; i++) {
1953
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 1 times.
9 if (selected_streams[program->stream_index[i]]) {
1954 8 ret = show_stream(tfc, fmt_ctx, program->stream_index[i], &ifile->streams[program->stream_index[i]], IN_PROGRAM);
1955
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 8 times.
8 if (ret < 0)
1956 break;
1957 }
1958 }
1959 3 avtext_print_section_footer(tfc);
1960
1961 3 end:
1962 3 avtext_print_section_footer(tfc);
1963 3 return ret;
1964 }
1965
1966 55 static int show_programs(AVTextFormatContext *tfc, InputFile *ifile)
1967 {
1968 55 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
1969 55 int i, ret = 0;
1970
1971 55 avtext_print_section_header(tfc, NULL, SECTION_ID_PROGRAMS);
1972
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 55 times.
58 for (i = 0; i < fmt_ctx->nb_programs; i++) {
1973 3 AVProgram *program = fmt_ctx->programs[i];
1974
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (!program)
1975 continue;
1976 3 ret = show_program(tfc, ifile, program);
1977
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (ret < 0)
1978 break;
1979 }
1980 55 avtext_print_section_footer(tfc);
1981 55 return ret;
1982 }
1983
1984 3 static void print_tile_grid_params(AVTextFormatContext *tfc, const AVStreamGroup *stg,
1985 const AVStreamGroupTileGrid *tile_grid)
1986 {
1987 3 avtext_print_section_header(tfc, stg, SECTION_ID_STREAM_GROUP_COMPONENT);
1988 3 print_int("nb_tiles", tile_grid->nb_tiles);
1989 3 print_int("coded_width", tile_grid->coded_width);
1990 3 print_int("coded_height", tile_grid->coded_height);
1991 3 print_int("horizontal_offset", tile_grid->horizontal_offset);
1992 3 print_int("vertical_offset", tile_grid->vertical_offset);
1993 3 print_int("width", tile_grid->width);
1994 3 print_int("height", tile_grid->height);
1995 3 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_SUBCOMPONENTS);
1996
2/2
✓ Branch 0 taken 8 times.
✓ Branch 1 taken 3 times.
11 for (int i = 0; i < tile_grid->nb_tiles; i++) {
1997 8 avtext_print_section_header(tfc, "tile_offset", SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
1998 8 print_int("stream_index", tile_grid->offsets[i].idx);
1999 8 print_int("tile_horizontal_offset", tile_grid->offsets[i].horizontal);
2000 8 print_int("tile_vertical_offset", tile_grid->offsets[i].vertical);
2001 8 avtext_print_section_footer(tfc);
2002 }
2003 3 avtext_print_section_footer(tfc);
2004 3 avtext_print_section_footer(tfc);
2005 3 }
2006
2007 40 static void print_iamf_param_definition(AVTextFormatContext *tfc, const char *name,
2008 const AVIAMFParamDefinition *param, SectionID section_id)
2009 {
2010 SectionID subsection_id, parameter_section_id;
2011 40 subsection_id = sections[section_id].children_ids[0];
2012
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 40 times.
40 av_assert0(subsection_id != -1);
2013 40 parameter_section_id = sections[subsection_id].children_ids[0];
2014
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 40 times.
40 av_assert0(parameter_section_id != -1);
2015 40 avtext_print_section_header(tfc, "IAMF Param Definition", section_id);
2016 40 print_str("name", name);
2017 40 print_int("nb_subblocks", param->nb_subblocks);
2018 40 print_int("type", param->type);
2019 40 print_int("parameter_id", param->parameter_id);
2020 40 print_int("parameter_rate", param->parameter_rate);
2021 40 print_int("duration", param->duration);
2022 40 print_int("constant_subblock_duration", param->constant_subblock_duration);
2023
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 31 times.
40 if (param->nb_subblocks > 0)
2024 9 avtext_print_section_header(tfc, NULL, subsection_id);
2025
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 40 times.
49 for (int i = 0; i < param->nb_subblocks; i++) {
2026 9 const void *subblock = av_iamf_param_definition_get_subblock(param, i);
2027
2/4
✗ Branch 0 not taken.
✓ Branch 1 taken 7 times.
✓ Branch 2 taken 2 times.
✗ Branch 3 not taken.
9 switch(param->type) {
2028 case AV_IAMF_PARAMETER_DEFINITION_MIX_GAIN: {
2029 const AVIAMFMixGain *mix = subblock;
2030 avtext_print_section_header(tfc, "IAMF Mix Gain Parameters", parameter_section_id);
2031 print_int("subblock_duration", mix->subblock_duration);
2032 print_int("animation_type", mix->animation_type);
2033 print_q("start_point_value", mix->start_point_value, '/');
2034 print_q("end_point_value", mix->end_point_value, '/');
2035 print_q("control_point_value", mix->control_point_value, '/');
2036 print_q("control_point_relative_time", mix->control_point_relative_time, '/');
2037 avtext_print_section_footer(tfc); // parameter_section_id
2038 break;
2039 }
2040 7 case AV_IAMF_PARAMETER_DEFINITION_DEMIXING: {
2041 7 const AVIAMFDemixingInfo *demix = subblock;
2042 7 avtext_print_section_header(tfc, "IAMF Demixing Info", parameter_section_id);
2043 7 print_int("subblock_duration", demix->subblock_duration);
2044 7 print_int("dmixp_mode", demix->dmixp_mode);
2045 7 avtext_print_section_footer(tfc); // parameter_section_id
2046 7 break;
2047 }
2048 2 case AV_IAMF_PARAMETER_DEFINITION_RECON_GAIN: {
2049 2 const AVIAMFReconGain *recon = subblock;
2050 2 avtext_print_section_header(tfc, "IAMF Recon Gain", parameter_section_id);
2051 2 print_int("subblock_duration", recon->subblock_duration);
2052 2 avtext_print_section_footer(tfc); // parameter_section_id
2053 2 break;
2054 }
2055 }
2056 }
2057
2/2
✓ Branch 0 taken 9 times.
✓ Branch 1 taken 31 times.
40 if (param->nb_subblocks > 0)
2058 9 avtext_print_section_footer(tfc); // subsection_id
2059 40 avtext_print_section_footer(tfc); // section_id
2060 40 }
2061
2062 14 static void print_iamf_audio_element_params(AVTextFormatContext *tfc, const AVStreamGroup *stg,
2063 const AVIAMFAudioElement *audio_element)
2064 {
2065 14 avtext_print_section_header(tfc, stg, SECTION_ID_STREAM_GROUP_COMPONENT);
2066 14 print_int("nb_layers", audio_element->nb_layers);
2067 14 print_int("audio_element_type", audio_element->audio_element_type);
2068 14 print_int("default_w", audio_element->default_w);
2069 14 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_SUBCOMPONENTS);
2070
2/2
✓ Branch 0 taken 31 times.
✓ Branch 1 taken 14 times.
45 for (int i = 0; i < audio_element->nb_layers; i++) {
2071 31 const AVIAMFLayer *layer = audio_element->layers[i];
2072 char val_str[128];
2073 31 avtext_print_section_header(tfc, "IAMF Audio Layer", SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
2074 31 av_channel_layout_describe(&layer->ch_layout, val_str, sizeof(val_str));
2075 31 print_str("channel_layout", val_str);
2076
2/2
✓ Branch 0 taken 29 times.
✓ Branch 1 taken 2 times.
31 if (audio_element->audio_element_type == AV_IAMF_AUDIO_ELEMENT_TYPE_CHANNEL) {
2077 29 print_int("output_gain_flags", layer->output_gain_flags);
2078 29 print_q("output_gain", layer->output_gain, '/');
2079
1/2
✓ Branch 0 taken 2 times.
✗ Branch 1 not taken.
2 } else if (audio_element->audio_element_type == AV_IAMF_AUDIO_ELEMENT_TYPE_SCENE)
2080 2 print_int("ambisonics_mode", layer->ambisonics_mode);
2081 31 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBCOMPONENT
2082 }
2083
2/2
✓ Branch 0 taken 7 times.
✓ Branch 1 taken 7 times.
14 if (audio_element->demixing_info)
2084 7 print_iamf_param_definition(tfc, "demixing_info", audio_element->demixing_info,
2085 SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
2086
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 12 times.
14 if (audio_element->recon_gain_info)
2087 2 print_iamf_param_definition(tfc, "recon_gain_info", audio_element->recon_gain_info,
2088 SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
2089 14 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBCOMPONENTS
2090 14 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_COMPONENT
2091 14 }
2092
2093 15 static void print_iamf_submix_params(AVTextFormatContext *tfc, const AVIAMFSubmix *submix)
2094 {
2095 15 avtext_print_section_header(tfc, "IAMF Submix", SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
2096 15 print_int("nb_elements", submix->nb_elements);
2097 15 print_int("nb_layouts", submix->nb_layouts);
2098 15 print_q("default_mix_gain", submix->default_mix_gain, '/');
2099 15 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_PIECES);
2100
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 15 times.
31 for (int i = 0; i < submix->nb_elements; i++) {
2101 16 const AVIAMFSubmixElement *element = submix->elements[i];
2102 16 avtext_print_section_header(tfc, "IAMF Submix Element", SECTION_ID_STREAM_GROUP_PIECE);
2103 16 print_int("stream_id", element->audio_element_id);
2104 16 print_q("default_mix_gain", element->default_mix_gain, '/');
2105 16 print_int("headphones_rendering_mode", element->headphones_rendering_mode);
2106 16 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_SUBPIECES);
2107
1/2
✓ Branch 0 taken 16 times.
✗ Branch 1 not taken.
16 if (element->annotations) {
2108 16 const AVDictionaryEntry *annotation = NULL;
2109 16 avtext_print_section_header(tfc, "IAMF Annotations", SECTION_ID_STREAM_GROUP_SUBPIECE);
2110
2/2
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 16 times.
32 while (annotation = av_dict_iterate(element->annotations, annotation))
2111 16 print_str(annotation->key, annotation->value);
2112 16 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBPIECE
2113 }
2114
1/2
✓ Branch 0 taken 16 times.
✗ Branch 1 not taken.
16 if (element->element_mix_config)
2115 16 print_iamf_param_definition(tfc, "element_mix_config", element->element_mix_config,
2116 SECTION_ID_STREAM_GROUP_SUBPIECE);
2117 16 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBPIECES
2118 16 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_PIECE
2119 }
2120
1/2
✓ Branch 0 taken 15 times.
✗ Branch 1 not taken.
15 if (submix->output_mix_config)
2121 15 print_iamf_param_definition(tfc, "output_mix_config", submix->output_mix_config,
2122 SECTION_ID_STREAM_GROUP_PIECE);
2123
2/2
✓ Branch 0 taken 33 times.
✓ Branch 1 taken 15 times.
48 for (int i = 0; i < submix->nb_layouts; i++) {
2124 33 const AVIAMFSubmixLayout *layout = submix->layouts[i];
2125 char val_str[128];
2126 33 avtext_print_section_header(tfc, "IAMF Submix Layout", SECTION_ID_STREAM_GROUP_PIECE);
2127 33 av_channel_layout_describe(&layout->sound_system, val_str, sizeof(val_str));
2128 33 print_str("sound_system", val_str);
2129 33 print_q("integrated_loudness", layout->integrated_loudness, '/');
2130 33 print_q("digital_peak", layout->digital_peak, '/');
2131 33 print_q("true_peak", layout->true_peak, '/');
2132 33 print_q("dialogue_anchored_loudness", layout->dialogue_anchored_loudness, '/');
2133 33 print_q("album_anchored_loudness", layout->album_anchored_loudness, '/');
2134 33 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_PIECE
2135 }
2136 15 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_PIECES
2137 15 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBCOMPONENT
2138 15 }
2139
2140 13 static void print_iamf_mix_presentation_params(AVTextFormatContext *tfc, const AVStreamGroup *stg,
2141 const AVIAMFMixPresentation *mix_presentation)
2142 {
2143 13 avtext_print_section_header(tfc, stg, SECTION_ID_STREAM_GROUP_COMPONENT);
2144 13 print_int("nb_submixes", mix_presentation->nb_submixes);
2145 13 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_SUBCOMPONENTS);
2146
1/2
✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
13 if (mix_presentation->annotations) {
2147 13 const AVDictionaryEntry *annotation = NULL;
2148 13 avtext_print_section_header(tfc, "IAMF Annotations", SECTION_ID_STREAM_GROUP_SUBCOMPONENT);
2149
2/2
✓ Branch 1 taken 13 times.
✓ Branch 2 taken 13 times.
26 while (annotation = av_dict_iterate(mix_presentation->annotations, annotation))
2150 13 print_str(annotation->key, annotation->value);
2151 13 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBCOMPONENT
2152 }
2153
2/2
✓ Branch 0 taken 15 times.
✓ Branch 1 taken 13 times.
28 for (int i = 0; i < mix_presentation->nb_submixes; i++)
2154 15 print_iamf_submix_params(tfc, mix_presentation->submixes[i]);
2155 13 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_SUBCOMPONENTS
2156 13 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_COMPONENT
2157 13 }
2158
2159 30 static void print_stream_group_params(AVTextFormatContext *tfc, AVStreamGroup *stg)
2160 {
2161 30 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_COMPONENTS);
2162
2/2
✓ Branch 0 taken 3 times.
✓ Branch 1 taken 27 times.
30 if (stg->type == AV_STREAM_GROUP_PARAMS_TILE_GRID)
2163 3 print_tile_grid_params(tfc, stg, stg->params.tile_grid);
2164
2/2
✓ Branch 0 taken 14 times.
✓ Branch 1 taken 13 times.
27 else if (stg->type == AV_STREAM_GROUP_PARAMS_IAMF_AUDIO_ELEMENT)
2165 14 print_iamf_audio_element_params(tfc, stg, stg->params.iamf_audio_element);
2166
1/2
✓ Branch 0 taken 13 times.
✗ Branch 1 not taken.
13 else if (stg->type == AV_STREAM_GROUP_PARAMS_IAMF_MIX_PRESENTATION)
2167 13 print_iamf_mix_presentation_params(tfc, stg, stg->params.iamf_mix_presentation);
2168 30 avtext_print_section_footer(tfc); // SECTION_ID_STREAM_GROUP_COMPONENTS
2169 30 }
2170
2171 30 static int show_stream_group(AVTextFormatContext *tfc, InputFile *ifile, AVStreamGroup *stg)
2172 {
2173 30 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2174 AVBPrint pbuf;
2175 30 int i, ret = 0;
2176
2177 30 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
2178 30 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP);
2179 30 print_int("index", stg->index);
2180
1/2
✓ Branch 0 taken 30 times.
✗ Branch 1 not taken.
30 if (fmt_ctx->iformat->flags & AVFMT_SHOW_IDS) print_fmt ("id", "0x%"PRIx64, stg->id);
2181 else print_str_opt("id", "N/A");
2182 30 print_int("nb_streams", stg->nb_streams);
2183
1/2
✓ Branch 0 taken 30 times.
✗ Branch 1 not taken.
30 if (stg->type != AV_STREAM_GROUP_PARAMS_NONE)
2184 30 print_str("type", av_x_if_null(avformat_stream_group_name(stg->type), "unknown"));
2185 else
2186 print_str_opt("type", "unknown");
2187
1/2
✓ Branch 0 taken 30 times.
✗ Branch 1 not taken.
30 if (do_show_stream_group_components)
2188 30 print_stream_group_params(tfc, stg);
2189
2190 /* Print disposition information */
2191
2/2
✓ Branch 0 taken 13 times.
✓ Branch 1 taken 17 times.
30 if (do_show_stream_group_disposition)
2192 13 print_dispositions(tfc, stg->disposition, SECTION_ID_STREAM_GROUP_DISPOSITION);
2193
2194
2/2
✓ Branch 0 taken 13 times.
✓ Branch 1 taken 17 times.
30 if (do_show_stream_group_tags)
2195 13 ret = show_tags(tfc, stg->metadata, SECTION_ID_STREAM_GROUP_TAGS);
2196
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 30 times.
30 if (ret < 0)
2197 goto end;
2198
2199 30 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUP_STREAMS);
2200
2/2
✓ Branch 0 taken 131 times.
✓ Branch 1 taken 30 times.
161 for (i = 0; i < stg->nb_streams; i++) {
2201
1/2
✓ Branch 0 taken 131 times.
✗ Branch 1 not taken.
131 if (selected_streams[stg->streams[i]->index]) {
2202 131 ret = show_stream(tfc, fmt_ctx, stg->streams[i]->index, &ifile->streams[stg->streams[i]->index], IN_STREAM_GROUP);
2203
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 131 times.
131 if (ret < 0)
2204 break;
2205 }
2206 }
2207 30 avtext_print_section_footer(tfc);
2208
2209 30 end:
2210 30 av_bprint_finalize(&pbuf, NULL);
2211 30 avtext_print_section_footer(tfc);
2212 30 return ret;
2213 }
2214
2215 70 static int show_stream_groups(AVTextFormatContext *tfc, InputFile *ifile)
2216 {
2217 70 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2218 70 int i, ret = 0;
2219
2220 70 avtext_print_section_header(tfc, NULL, SECTION_ID_STREAM_GROUPS);
2221
2/2
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 70 times.
100 for (i = 0; i < fmt_ctx->nb_stream_groups; i++) {
2222 30 AVStreamGroup *stg = fmt_ctx->stream_groups[i];
2223
2224 30 ret = show_stream_group(tfc, ifile, stg);
2225
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 30 times.
30 if (ret < 0)
2226 break;
2227 }
2228 70 avtext_print_section_footer(tfc);
2229 70 return ret;
2230 }
2231
2232 5 static int show_chapters(AVTextFormatContext *tfc, InputFile *ifile)
2233 {
2234 5 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2235 5 int i, ret = 0;
2236
2237 5 avtext_print_section_header(tfc, NULL, SECTION_ID_CHAPTERS);
2238
2/2
✓ Branch 0 taken 22 times.
✓ Branch 1 taken 5 times.
27 for (i = 0; i < fmt_ctx->nb_chapters; i++) {
2239 22 AVChapter *chapter = fmt_ctx->chapters[i];
2240
2241 22 avtext_print_section_header(tfc, NULL, SECTION_ID_CHAPTER);
2242 22 print_int("id", chapter->id);
2243 22 print_q ("time_base", chapter->time_base, '/');
2244 22 print_int("start", chapter->start);
2245 22 print_time("start_time", chapter->start, &chapter->time_base);
2246 22 print_int("end", chapter->end);
2247 22 print_time("end_time", chapter->end, &chapter->time_base);
2248
1/2
✓ Branch 0 taken 22 times.
✗ Branch 1 not taken.
22 if (do_show_chapter_tags)
2249 22 ret = show_tags(tfc, chapter->metadata, SECTION_ID_CHAPTER_TAGS);
2250 22 avtext_print_section_footer(tfc);
2251 }
2252 5 avtext_print_section_footer(tfc);
2253
2254 5 return ret;
2255 }
2256
2257 42 static int show_format(AVTextFormatContext *tfc, InputFile *ifile)
2258 {
2259 42 AVFormatContext *fmt_ctx = ifile->fmt_ctx;
2260
1/2
✓ Branch 0 taken 42 times.
✗ Branch 1 not taken.
42 int64_t size = fmt_ctx->pb ? avio_size(fmt_ctx->pb) : -1;
2261 42 int ret = 0;
2262
2263 42 avtext_print_section_header(tfc, NULL, SECTION_ID_FORMAT);
2264 42 print_str_validate("filename", fmt_ctx->url);
2265 42 print_int("nb_streams", fmt_ctx->nb_streams);
2266 42 print_int("nb_programs", fmt_ctx->nb_programs);
2267 42 print_int("nb_stream_groups", fmt_ctx->nb_stream_groups);
2268 42 print_str("format_name", fmt_ctx->iformat->name);
2269
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 42 times.
42 if (!do_bitexact) {
2270 if (fmt_ctx->iformat->long_name) print_str ("format_long_name", fmt_ctx->iformat->long_name);
2271 else print_str_opt("format_long_name", "unknown");
2272 }
2273 42 print_time("start_time", fmt_ctx->start_time, &AV_TIME_BASE_Q);
2274 42 print_time("duration", fmt_ctx->duration, &AV_TIME_BASE_Q);
2275
1/2
✓ Branch 0 taken 42 times.
✗ Branch 1 not taken.
42 if (size >= 0) print_val ("size", size, unit_byte_str);
2276 else print_str_opt("size", "N/A");
2277
2/2
✓ Branch 0 taken 41 times.
✓ Branch 1 taken 1 times.
42 if (fmt_ctx->bit_rate > 0) print_val ("bit_rate", fmt_ctx->bit_rate, unit_bit_per_second_str);
2278 1 else print_str_opt("bit_rate", "N/A");
2279 42 print_int("probe_score", fmt_ctx->probe_score);
2280
2/2
✓ Branch 0 taken 34 times.
✓ Branch 1 taken 8 times.
42 if (do_show_format_tags)
2281 34 ret = show_tags(tfc, fmt_ctx->metadata, SECTION_ID_FORMAT_TAGS);
2282
2283 42 avtext_print_section_footer(tfc);
2284 42 fflush(stdout);
2285 42 return ret;
2286 }
2287
2288 static void show_error(AVTextFormatContext *tfc, int err)
2289 {
2290 avtext_print_section_header(tfc, NULL, SECTION_ID_ERROR);
2291 print_int("code", err);
2292 print_str("string", av_err2str(err));
2293 avtext_print_section_footer(tfc);
2294 }
2295
2296 159 static int open_input_file(InputFile *ifile, const char *filename,
2297 const char *print_filename)
2298 {
2299 int err, i;
2300 159 AVFormatContext *fmt_ctx = NULL;
2301 159 const AVDictionaryEntry *t = NULL;
2302 159 int scan_all_pmts_set = 0;
2303
2304 159 fmt_ctx = avformat_alloc_context();
2305
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!fmt_ctx)
2306 return AVERROR(ENOMEM);
2307
2308
1/2
✓ Branch 1 taken 159 times.
✗ Branch 2 not taken.
159 if (!av_dict_get(format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE)) {
2309 159 av_dict_set(&format_opts, "scan_all_pmts", "1", AV_DICT_DONT_OVERWRITE);
2310 159 scan_all_pmts_set = 1;
2311 }
2312
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 if ((err = avformat_open_input(&fmt_ctx, filename,
2313 iformat, &format_opts)) < 0) {
2314 print_error(filename, err);
2315 return err;
2316 }
2317
2/2
✓ Branch 0 taken 16 times.
✓ Branch 1 taken 143 times.
159 if (print_filename) {
2318 16 av_freep(&fmt_ctx->url);
2319 16 fmt_ctx->url = av_strdup(print_filename);
2320 }
2321 159 ifile->fmt_ctx = fmt_ctx;
2322
1/2
✓ Branch 0 taken 159 times.
✗ Branch 1 not taken.
159 if (scan_all_pmts_set)
2323 159 av_dict_set(&format_opts, "scan_all_pmts", NULL, AV_DICT_MATCH_CASE);
2324
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 while ((t = av_dict_iterate(format_opts, t)))
2325 av_log(NULL, AV_LOG_WARNING, "Option %s skipped - not known to demuxer.\n", t->key);
2326
2327
1/2
✓ Branch 0 taken 159 times.
✗ Branch 1 not taken.
159 if (find_stream_info) {
2328 AVDictionary **opts;
2329 159 int orig_nb_streams = fmt_ctx->nb_streams;
2330
2331 159 err = setup_find_stream_info_opts(fmt_ctx, codec_opts, &opts);
2332
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (err < 0)
2333 return err;
2334
2335 159 err = avformat_find_stream_info(fmt_ctx, opts);
2336
2337
2/2
✓ Branch 0 taken 302 times.
✓ Branch 1 taken 159 times.
461 for (i = 0; i < orig_nb_streams; i++)
2338 302 av_dict_free(&opts[i]);
2339 159 av_freep(&opts);
2340
2341
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (err < 0) {
2342 print_error(filename, err);
2343 return err;
2344 }
2345 }
2346
2347 159 av_dump_format(fmt_ctx, 0, filename, 0);
2348
2349 159 ifile->streams = av_calloc(fmt_ctx->nb_streams, sizeof(*ifile->streams));
2350
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!ifile->streams)
2351 exit(1);
2352 159 ifile->nb_streams = fmt_ctx->nb_streams;
2353
2354 /* bind a decoder to each input stream */
2355
2/2
✓ Branch 0 taken 324 times.
✓ Branch 1 taken 159 times.
483 for (i = 0; i < fmt_ctx->nb_streams; i++) {
2356 324 InputStream *ist = &ifile->streams[i];
2357 324 AVStream *stream = fmt_ctx->streams[i];
2358 const AVCodec *codec;
2359
2360 324 ist->st = stream;
2361
2362
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 324 times.
324 if (stream->codecpar->codec_id == AV_CODEC_ID_PROBE) {
2363 av_log(NULL, AV_LOG_WARNING,
2364 "Failed to probe codec for input stream %d\n",
2365 stream->index);
2366 continue;
2367 }
2368
2369 324 codec = avcodec_find_decoder(stream->codecpar->codec_id);
2370
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 307 times.
324 if (!codec) {
2371 17 av_log(NULL, AV_LOG_WARNING,
2372 "Unsupported codec with id %d for input stream %d\n",
2373 17 stream->codecpar->codec_id, stream->index);
2374 17 continue;
2375 }
2376 {
2377 AVDictionary *opts;
2378
2379 307 err = filter_codec_opts(codec_opts, stream->codecpar->codec_id,
2380 fmt_ctx, stream, codec, &opts, NULL);
2381
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
307 if (err < 0)
2382 exit(1);
2383
2384 307 ist->dec_ctx = avcodec_alloc_context3(codec);
2385
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
307 if (!ist->dec_ctx)
2386 exit(1);
2387
2388 307 err = avcodec_parameters_to_context(ist->dec_ctx, stream->codecpar);
2389
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
307 if (err < 0)
2390 exit(1);
2391
2392
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 307 times.
307 if (do_show_log) {
2393 // For loging it is needed to disable at least frame threads as otherwise
2394 // the log information would need to be reordered and matches up to contexts and frames
2395 // That is in fact possible but not trivial
2396 av_dict_set(&codec_opts, "threads", "1", 0);
2397 }
2398
2399 307 av_dict_set(&opts, "flags", "+copy_opaque", AV_DICT_MULTIKEY);
2400
2401 307 ist->dec_ctx->pkt_timebase = stream->time_base;
2402
2403
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 307 times.
307 if (avcodec_open2(ist->dec_ctx, codec, &opts) < 0) {
2404 av_log(NULL, AV_LOG_WARNING, "Could not open codec for input stream %d\n",
2405 stream->index);
2406 exit(1);
2407 }
2408
2409
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 307 times.
307 if ((t = av_dict_iterate(opts, NULL))) {
2410 av_log(NULL, AV_LOG_ERROR, "Option %s for input stream %d not found\n",
2411 t->key, stream->index);
2412 return AVERROR_OPTION_NOT_FOUND;
2413 }
2414 }
2415 }
2416
2417 159 ifile->fmt_ctx = fmt_ctx;
2418 159 return 0;
2419 }
2420
2421 159 static void close_input_file(InputFile *ifile)
2422 {
2423 int i;
2424
2425 /* close decoder for each stream */
2426
2/2
✓ Branch 0 taken 324 times.
✓ Branch 1 taken 159 times.
483 for (i = 0; i < ifile->nb_streams; i++)
2427 324 avcodec_free_context(&ifile->streams[i].dec_ctx);
2428
2429 159 av_freep(&ifile->streams);
2430 159 ifile->nb_streams = 0;
2431
2432 159 avformat_close_input(&ifile->fmt_ctx);
2433 159 }
2434
2435 159 static int probe_file(AVTextFormatContext *tfc, const char *filename,
2436 const char *print_filename)
2437 {
2438 159 InputFile ifile = { 0 };
2439 int ret, i;
2440 int section_id;
2441
2442
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
159 do_analyze_frames = do_analyze_frames && do_show_streams;
2443
4/6
✓ Branch 0 taken 109 times.
✓ Branch 1 taken 50 times.
✓ Branch 2 taken 109 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 109 times.
159 do_read_frames = do_show_frames || do_count_frames || do_analyze_frames;
2444
3/4
✓ Branch 0 taken 118 times.
✓ Branch 1 taken 41 times.
✗ Branch 2 not taken.
✓ Branch 3 taken 118 times.
159 do_read_packets = do_show_packets || do_count_packets;
2445
2446 159 ret = open_input_file(&ifile, filename, print_filename);
2447
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (ret < 0)
2448 goto end;
2449
2450 #define CHECK_END if (ret < 0) goto end
2451
2452 159 nb_streams = ifile.fmt_ctx->nb_streams;
2453
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 REALLOCZ_ARRAY_STREAM(nb_streams_frames,0,ifile.fmt_ctx->nb_streams);
2454
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 REALLOCZ_ARRAY_STREAM(nb_streams_packets,0,ifile.fmt_ctx->nb_streams);
2455
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 REALLOCZ_ARRAY_STREAM(selected_streams,0,ifile.fmt_ctx->nb_streams);
2456
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 REALLOCZ_ARRAY_STREAM(streams_with_closed_captions,0,ifile.fmt_ctx->nb_streams);
2457
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 REALLOCZ_ARRAY_STREAM(streams_with_film_grain,0,ifile.fmt_ctx->nb_streams);
2458
2459
2/2
✓ Branch 0 taken 324 times.
✓ Branch 1 taken 159 times.
483 for (i = 0; i < ifile.fmt_ctx->nb_streams; i++) {
2460
2/2
✓ Branch 0 taken 47 times.
✓ Branch 1 taken 277 times.
324 if (stream_specifier) {
2461 47 ret = avformat_match_stream_specifier(ifile.fmt_ctx,
2462 47 ifile.fmt_ctx->streams[i],
2463 stream_specifier);
2464
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 47 times.
47 CHECK_END;
2465 else
2466 47 selected_streams[i] = ret;
2467 47 ret = 0;
2468 } else {
2469 277 selected_streams[i] = 1;
2470 }
2471
2/2
✓ Branch 0 taken 17 times.
✓ Branch 1 taken 307 times.
324 if (!selected_streams[i])
2472 17 ifile.fmt_ctx->streams[i]->discard = AVDISCARD_ALL;
2473 }
2474
2475
4/4
✓ Branch 0 taken 109 times.
✓ Branch 1 taken 50 times.
✓ Branch 2 taken 30 times.
✓ Branch 3 taken 79 times.
159 if (do_read_frames || do_read_packets) {
2476
4/4
✓ Branch 0 taken 50 times.
✓ Branch 1 taken 30 times.
✓ Branch 2 taken 11 times.
✓ Branch 3 taken 39 times.
80 if (do_show_frames && do_show_packets &&
2477
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 6 times.
11 tfc->formatter->flags & AV_TEXTFORMAT_FLAG_SUPPORTS_MIXED_ARRAY_CONTENT)
2478 5 section_id = SECTION_ID_PACKETS_AND_FRAMES;
2479
4/4
✓ Branch 0 taken 36 times.
✓ Branch 1 taken 39 times.
✓ Branch 2 taken 30 times.
✓ Branch 3 taken 6 times.
75 else if (do_show_packets && !do_show_frames)
2480 30 section_id = SECTION_ID_PACKETS;
2481 else // (!do_show_packets && do_show_frames)
2482 45 section_id = SECTION_ID_FRAMES;
2483
3/4
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 50 times.
✓ Branch 2 taken 30 times.
✗ Branch 3 not taken.
80 if (do_show_frames || do_show_packets)
2484 80 avtext_print_section_header(tfc, NULL, section_id);
2485 80 ret = read_packets(tfc, &ifile);
2486
3/4
✓ Branch 0 taken 30 times.
✓ Branch 1 taken 50 times.
✓ Branch 2 taken 30 times.
✗ Branch 3 not taken.
80 if (do_show_frames || do_show_packets)
2487 80 avtext_print_section_footer(tfc);
2488
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 80 times.
80 CHECK_END;
2489 }
2490
2491
2/2
✓ Branch 0 taken 55 times.
✓ Branch 1 taken 104 times.
159 if (do_show_programs) {
2492 55 ret = show_programs(tfc, &ifile);
2493
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 55 times.
55 CHECK_END;
2494 }
2495
2496
2/2
✓ Branch 0 taken 70 times.
✓ Branch 1 taken 89 times.
159 if (do_show_stream_groups) {
2497 70 ret = show_stream_groups(tfc, &ifile);
2498
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 70 times.
70 CHECK_END;
2499 }
2500
2501
2/2
✓ Branch 0 taken 91 times.
✓ Branch 1 taken 68 times.
159 if (do_show_streams) {
2502 91 ret = show_streams(tfc, &ifile);
2503
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 91 times.
91 CHECK_END;
2504 }
2505
2/2
✓ Branch 0 taken 5 times.
✓ Branch 1 taken 154 times.
159 if (do_show_chapters) {
2506 5 ret = show_chapters(tfc, &ifile);
2507
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 5 times.
5 CHECK_END;
2508 }
2509
2/2
✓ Branch 0 taken 117 times.
✓ Branch 1 taken 42 times.
159 if (do_show_format) {
2510 42 ret = show_format(tfc, &ifile);
2511
1/2
✓ Branch 0 taken 42 times.
✗ Branch 1 not taken.
42 CHECK_END;
2512 }
2513
2514 159 end:
2515
1/2
✓ Branch 0 taken 159 times.
✗ Branch 1 not taken.
159 if (ifile.fmt_ctx)
2516 159 close_input_file(&ifile);
2517 159 av_freep(&nb_streams_frames);
2518 159 av_freep(&nb_streams_packets);
2519 159 av_freep(&selected_streams);
2520 159 av_freep(&streams_with_closed_captions);
2521 159 av_freep(&streams_with_film_grain);
2522
2523 159 return ret;
2524 }
2525
2526 static void show_usage(void)
2527 {
2528 av_log(NULL, AV_LOG_INFO, "Simple multimedia streams analyzer\n");
2529 av_log(NULL, AV_LOG_INFO, "usage: %s [OPTIONS] INPUT_FILE\n", program_name);
2530 av_log(NULL, AV_LOG_INFO, "\n");
2531 }
2532
2533 static void ffprobe_show_program_version(AVTextFormatContext *tfc)
2534 {
2535 AVBPrint pbuf;
2536 av_bprint_init(&pbuf, 1, AV_BPRINT_SIZE_UNLIMITED);
2537
2538 avtext_print_section_header(tfc, NULL, SECTION_ID_PROGRAM_VERSION);
2539 print_str("version", FFMPEG_VERSION);
2540 print_fmt("copyright", "Copyright (c) %d-%d the FFmpeg developers",
2541 program_birth_year, CONFIG_THIS_YEAR);
2542 print_str("compiler_ident", CC_IDENT);
2543 print_str("configuration", FFMPEG_CONFIGURATION);
2544 avtext_print_section_footer(tfc);
2545
2546 av_bprint_finalize(&pbuf, NULL);
2547 }
2548
2549 #define SHOW_LIB_VERSION(libname, LIBNAME) \
2550 do { \
2551 if (CONFIG_##LIBNAME) { \
2552 unsigned int version = libname##_version(); \
2553 avtext_print_section_header(tfc, NULL, SECTION_ID_LIBRARY_VERSION); \
2554 print_str("name", "lib" #libname); \
2555 print_int("major", LIB##LIBNAME##_VERSION_MAJOR); \
2556 print_int("minor", LIB##LIBNAME##_VERSION_MINOR); \
2557 print_int("micro", LIB##LIBNAME##_VERSION_MICRO); \
2558 print_int("version", version); \
2559 print_str("ident", LIB##LIBNAME##_IDENT); \
2560 avtext_print_section_footer(tfc); \
2561 } \
2562 } while (0)
2563
2564 static void ffprobe_show_library_versions(AVTextFormatContext *tfc)
2565 {
2566 avtext_print_section_header(tfc, NULL, SECTION_ID_LIBRARY_VERSIONS);
2567 SHOW_LIB_VERSION(avutil, AVUTIL);
2568 SHOW_LIB_VERSION(avcodec, AVCODEC);
2569 SHOW_LIB_VERSION(avformat, AVFORMAT);
2570 SHOW_LIB_VERSION(avdevice, AVDEVICE);
2571 SHOW_LIB_VERSION(avfilter, AVFILTER);
2572 SHOW_LIB_VERSION(swscale, SWSCALE);
2573 SHOW_LIB_VERSION(swresample, SWRESAMPLE);
2574 avtext_print_section_footer(tfc);
2575 }
2576
2577 #define PRINT_PIX_FMT_FLAG(flagname, name) \
2578 do { \
2579 print_int(name, !!(pixdesc->flags & AV_PIX_FMT_FLAG_##flagname)); \
2580 } while (0)
2581
2582 static void ffprobe_show_pixel_formats(AVTextFormatContext *tfc)
2583 {
2584 const AVPixFmtDescriptor *pixdesc = NULL;
2585 int i, n;
2586
2587 avtext_print_section_header(tfc, NULL, SECTION_ID_PIXEL_FORMATS);
2588 while (pixdesc = av_pix_fmt_desc_next(pixdesc)) {
2589 avtext_print_section_header(tfc, NULL, SECTION_ID_PIXEL_FORMAT);
2590 print_str("name", pixdesc->name);
2591 print_int("nb_components", pixdesc->nb_components);
2592 if ((pixdesc->nb_components >= 3) && !(pixdesc->flags & AV_PIX_FMT_FLAG_RGB)) {
2593 print_int ("log2_chroma_w", pixdesc->log2_chroma_w);
2594 print_int ("log2_chroma_h", pixdesc->log2_chroma_h);
2595 } else {
2596 print_str_opt("log2_chroma_w", "N/A");
2597 print_str_opt("log2_chroma_h", "N/A");
2598 }
2599 n = av_get_bits_per_pixel(pixdesc);
2600 if (n) print_int ("bits_per_pixel", n);
2601 else print_str_opt("bits_per_pixel", "N/A");
2602 if (do_show_pixel_format_flags) {
2603 avtext_print_section_header(tfc, NULL, SECTION_ID_PIXEL_FORMAT_FLAGS);
2604 PRINT_PIX_FMT_FLAG(BE, "big_endian");
2605 PRINT_PIX_FMT_FLAG(PAL, "palette");
2606 PRINT_PIX_FMT_FLAG(BITSTREAM, "bitstream");
2607 PRINT_PIX_FMT_FLAG(HWACCEL, "hwaccel");
2608 PRINT_PIX_FMT_FLAG(PLANAR, "planar");
2609 PRINT_PIX_FMT_FLAG(RGB, "rgb");
2610 PRINT_PIX_FMT_FLAG(ALPHA, "alpha");
2611 avtext_print_section_footer(tfc);
2612 }
2613 if (do_show_pixel_format_components && (pixdesc->nb_components > 0)) {
2614 avtext_print_section_header(tfc, NULL, SECTION_ID_PIXEL_FORMAT_COMPONENTS);
2615 for (i = 0; i < pixdesc->nb_components; i++) {
2616 avtext_print_section_header(tfc, NULL, SECTION_ID_PIXEL_FORMAT_COMPONENT);
2617 print_int("index", i + 1);
2618 print_int("bit_depth", pixdesc->comp[i].depth);
2619 avtext_print_section_footer(tfc);
2620 }
2621 avtext_print_section_footer(tfc);
2622 }
2623 avtext_print_section_footer(tfc);
2624 }
2625 avtext_print_section_footer(tfc);
2626 }
2627
2628 static int opt_show_optional_fields(void *optctx, const char *opt, const char *arg)
2629 {
2630 if (!av_strcasecmp(arg, "always")) show_optional_fields = SHOW_OPTIONAL_FIELDS_ALWAYS;
2631 else if (!av_strcasecmp(arg, "never")) show_optional_fields = SHOW_OPTIONAL_FIELDS_NEVER;
2632 else if (!av_strcasecmp(arg, "auto")) show_optional_fields = SHOW_OPTIONAL_FIELDS_AUTO;
2633
2634 if (show_optional_fields == SHOW_OPTIONAL_FIELDS_AUTO && av_strcasecmp(arg, "auto")) {
2635 double num;
2636 int ret = parse_number("show_optional_fields", arg, OPT_TYPE_INT,
2637 SHOW_OPTIONAL_FIELDS_AUTO, SHOW_OPTIONAL_FIELDS_ALWAYS, &num);
2638 if (ret < 0)
2639 return ret;
2640 show_optional_fields = num;
2641 }
2642 return 0;
2643 }
2644
2645 14 static int opt_format(void *optctx, const char *opt, const char *arg)
2646 {
2647 14 iformat = av_find_input_format(arg);
2648
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 14 times.
14 if (!iformat) {
2649 av_log(NULL, AV_LOG_ERROR, "Unknown input format: %s\n", arg);
2650 return AVERROR(EINVAL);
2651 }
2652 14 return 0;
2653 }
2654
2655 1389 static inline void mark_section_show_entries(SectionID section_id,
2656 int show_all_entries, AVDictionary *entries)
2657 {
2658 1389 struct AVTextFormatSection *section = &sections[section_id];
2659
2660 1389 section->show_all_entries = show_all_entries;
2661
2/2
✓ Branch 0 taken 1151 times.
✓ Branch 1 taken 238 times.
1389 if (show_all_entries) {
2662
2/2
✓ Branch 0 taken 903 times.
✓ Branch 1 taken 1151 times.
2054 for (const int *id = section->children_ids; *id != -1; id++)
2663 903 mark_section_show_entries(*id, show_all_entries, entries);
2664 } else {
2665 238 av_dict_copy(&section->entries_to_show, entries, 0);
2666 }
2667 1389 }
2668
2669 267 static int match_section(const char *section_name,
2670 int show_all_entries, AVDictionary *entries)
2671 {
2672 267 int i, ret = 0;
2673
2674
2/2
✓ Branch 0 taken 17622 times.
✓ Branch 1 taken 267 times.
17889 for (i = 0; i < FF_ARRAY_ELEMS(sections); i++) {
2675 17622 const struct AVTextFormatSection *section = &sections[i];
2676
2/2
✓ Branch 0 taken 17388 times.
✓ Branch 1 taken 234 times.
17622 if (!strcmp(section_name, section->name) ||
2677
4/4
✓ Branch 0 taken 8698 times.
✓ Branch 1 taken 8690 times.
✓ Branch 2 taken 145 times.
✓ Branch 3 taken 8553 times.
17388 (section->unique_name && !strcmp(section_name, section->unique_name))) {
2678 379 av_log(NULL, AV_LOG_DEBUG,
2679 "'%s' matches section with unique name '%s'\n", section_name,
2680 379 (char *)av_x_if_null(section->unique_name, section->name));
2681 379 ret++;
2682 379 mark_section_show_entries(section->id, show_all_entries, entries);
2683 }
2684 }
2685 267 return ret;
2686 }
2687
2688 116 static int opt_show_entries(void *optctx, const char *opt, const char *arg)
2689 {
2690 116 const char *p = arg;
2691 116 int ret = 0;
2692
2693
2/2
✓ Branch 0 taken 267 times.
✓ Branch 1 taken 116 times.
383 while (*p) {
2694 267 AVDictionary *entries = NULL;
2695 267 char *section_name = av_get_token(&p, "=:");
2696 267 int show_all_entries = 0;
2697
2698
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 267 times.
267 if (!section_name) {
2699 av_log(NULL, AV_LOG_ERROR,
2700 "Missing section name for option '%s'\n", opt);
2701 return AVERROR(EINVAL);
2702 }
2703
2704
2/2
✓ Branch 0 taken 138 times.
✓ Branch 1 taken 129 times.
267 if (*p == '=') {
2705 138 p++;
2706
4/4
✓ Branch 0 taken 406 times.
✓ Branch 1 taken 53 times.
✓ Branch 2 taken 321 times.
✓ Branch 3 taken 85 times.
597 while (*p && *p != ':') {
2707 321 char *entry = av_get_token(&p, ",:");
2708
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 321 times.
321 if (!entry)
2709 break;
2710 321 av_log(NULL, AV_LOG_VERBOSE,
2711 "Adding '%s' to the entries to show in section '%s'\n",
2712 entry, section_name);
2713 321 av_dict_set(&entries, entry, "", AV_DICT_DONT_STRDUP_KEY);
2714
2/2
✓ Branch 0 taken 138 times.
✓ Branch 1 taken 183 times.
321 if (*p == ',')
2715 183 p++;
2716 }
2717 } else {
2718 129 show_all_entries = 1;
2719 }
2720
2721 267 ret = match_section(section_name, show_all_entries, entries);
2722
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 267 times.
267 if (ret == 0) {
2723 av_log(NULL, AV_LOG_ERROR, "No match for section '%s'\n", section_name);
2724 ret = AVERROR(EINVAL);
2725 }
2726 267 av_dict_free(&entries);
2727 267 av_free(section_name);
2728
2729
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 267 times.
267 if (ret <= 0)
2730 break;
2731
2/2
✓ Branch 0 taken 151 times.
✓ Branch 1 taken 116 times.
267 if (*p)
2732 151 p++;
2733 }
2734
2735 116 return ret;
2736 }
2737
2738 159 static int opt_input_file(void *optctx, const char *arg)
2739 {
2740
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (input_filename) {
2741 av_log(NULL, AV_LOG_ERROR,
2742 "Argument '%s' provided as input filename, but '%s' was already specified.\n",
2743 arg, input_filename);
2744 return AVERROR(EINVAL);
2745 }
2746
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!strcmp(arg, "-"))
2747 arg = "fd:";
2748 159 input_filename = av_strdup(arg);
2749
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!input_filename)
2750 return AVERROR(ENOMEM);
2751
2752 159 return 0;
2753 }
2754
2755 10 static int opt_input_file_i(void *optctx, const char *opt, const char *arg)
2756 {
2757 10 opt_input_file(optctx, arg);
2758 10 return 0;
2759 }
2760
2761 static int opt_output_file_o(void *optctx, const char *opt, const char *arg)
2762 {
2763 if (output_filename) {
2764 av_log(NULL, AV_LOG_ERROR,
2765 "Argument '%s' provided as output filename, but '%s' was already specified.\n",
2766 arg, output_filename);
2767 return AVERROR(EINVAL);
2768 }
2769 if (!strcmp(arg, "-"))
2770 arg = "fd:";
2771 output_filename = av_strdup(arg);
2772 if (!output_filename)
2773 return AVERROR(ENOMEM);
2774
2775 return 0;
2776 }
2777
2778 16 static int opt_print_filename(void *optctx, const char *opt, const char *arg)
2779 {
2780 16 av_freep(&print_input_filename);
2781 16 print_input_filename = av_strdup(arg);
2782
1/2
✓ Branch 0 taken 16 times.
✗ Branch 1 not taken.
16 return print_input_filename ? 0 : AVERROR(ENOMEM);
2783 }
2784
2785 void show_help_default(const char *opt, const char *arg)
2786 {
2787 av_log_set_callback(log_callback_help);
2788 show_usage();
2789 show_help_options(options, "Main options:", 0, 0);
2790 printf("\n");
2791
2792 show_help_children(avformat_get_class(), AV_OPT_FLAG_DECODING_PARAM);
2793 show_help_children(avcodec_get_class(), AV_OPT_FLAG_DECODING_PARAM);
2794 }
2795
2796 /**
2797 * Parse interval specification, according to the format:
2798 * INTERVAL ::= [START|+START_OFFSET][%[END|+END_OFFSET]]
2799 * INTERVALS ::= INTERVAL[,INTERVALS]
2800 */
2801 4 static int parse_read_interval(const char *interval_spec,
2802 ReadInterval *interval)
2803 {
2804 4 int ret = 0;
2805 4 char *next, *p, *spec = av_strdup(interval_spec);
2806
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!spec)
2807 return AVERROR(ENOMEM);
2808
2809
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!*spec) {
2810 av_log(NULL, AV_LOG_ERROR, "Invalid empty interval specification\n");
2811 ret = AVERROR(EINVAL);
2812 goto end;
2813 }
2814
2815 4 p = spec;
2816 4 next = strchr(spec, '%');
2817
1/2
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
4 if (next)
2818 4 *next++ = 0;
2819
2820 /* parse first part */
2821
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (*p) {
2822 interval->has_start = 1;
2823
2824 if (*p == '+') {
2825 interval->start_is_offset = 1;
2826 p++;
2827 } else {
2828 interval->start_is_offset = 0;
2829 }
2830
2831 ret = av_parse_time(&interval->start, p, 1);
2832 if (ret < 0) {
2833 av_log(NULL, AV_LOG_ERROR, "Invalid interval start specification '%s'\n", p);
2834 goto end;
2835 }
2836 } else {
2837 4 interval->has_start = 0;
2838 }
2839
2840 /* parse second part */
2841 4 p = next;
2842
2/4
✓ Branch 0 taken 4 times.
✗ Branch 1 not taken.
✓ Branch 2 taken 4 times.
✗ Branch 3 not taken.
8 if (p && *p) {
2843 int64_t us;
2844 4 interval->has_end = 1;
2845
2846
2/2
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 3 times.
4 if (*p == '+') {
2847 1 interval->end_is_offset = 1;
2848 1 p++;
2849 } else {
2850 3 interval->end_is_offset = 0;
2851 }
2852
2853
3/4
✓ Branch 0 taken 1 times.
✓ Branch 1 taken 3 times.
✓ Branch 2 taken 1 times.
✗ Branch 3 not taken.
4 if (interval->end_is_offset && *p == '#') {
2854 long long int lli;
2855 char *tail;
2856 1 interval->duration_frames = 1;
2857 1 p++;
2858 1 lli = strtoll(p, &tail, 10);
2859
2/4
✓ Branch 0 taken 1 times.
✗ Branch 1 not taken.
✗ Branch 2 not taken.
✓ Branch 3 taken 1 times.
1 if (*tail || lli < 0) {
2860 av_log(NULL, AV_LOG_ERROR,
2861 "Invalid or negative value '%s' for duration number of frames\n", p);
2862 goto end;
2863 }
2864 1 interval->end = lli;
2865 } else {
2866 3 interval->duration_frames = 0;
2867 3 ret = av_parse_time(&us, p, 1);
2868
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 3 times.
3 if (ret < 0) {
2869 av_log(NULL, AV_LOG_ERROR, "Invalid interval end/duration specification '%s'\n", p);
2870 goto end;
2871 }
2872 3 interval->end = us;
2873 }
2874 } else {
2875 interval->has_end = 0;
2876 }
2877
2878 4 end:
2879 4 av_free(spec);
2880 4 return ret;
2881 }
2882
2883 4 static int parse_read_intervals(const char *intervals_spec)
2884 {
2885 int ret, n, i;
2886 4 char *p, *spec = av_strdup(intervals_spec);
2887
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!spec)
2888 return AVERROR(ENOMEM);
2889
2890 /* preparse specification, get number of intervals */
2891
2/2
✓ Branch 0 taken 19 times.
✓ Branch 1 taken 4 times.
23 for (n = 0, p = spec; *p; p++)
2892
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 19 times.
19 if (*p == ',')
2893 n++;
2894 4 n++;
2895
2896 4 read_intervals = av_malloc_array(n, sizeof(*read_intervals));
2897
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (!read_intervals) {
2898 ret = AVERROR(ENOMEM);
2899 goto end;
2900 }
2901 4 read_intervals_nb = n;
2902
2903 /* parse intervals */
2904 4 p = spec;
2905
2/2
✓ Branch 0 taken 4 times.
✓ Branch 1 taken 4 times.
8 for (i = 0; p; i++) {
2906 char *next;
2907
2908
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 av_assert0(i < read_intervals_nb);
2909 4 next = strchr(p, ',');
2910
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (next)
2911 *next++ = 0;
2912
2913 4 read_intervals[i].id = i;
2914 4 ret = parse_read_interval(p, &read_intervals[i]);
2915
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 if (ret < 0) {
2916 av_log(NULL, AV_LOG_ERROR, "Error parsing read interval #%d '%s'\n",
2917 i, p);
2918 goto end;
2919 }
2920 4 av_log(NULL, AV_LOG_VERBOSE, "Parsed log interval ");
2921 4 log_read_interval(&read_intervals[i], NULL, AV_LOG_VERBOSE);
2922 4 p = next;
2923 }
2924
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 4 times.
4 av_assert0(i == read_intervals_nb);
2925
2926 4 end:
2927 4 av_free(spec);
2928 4 return ret;
2929 }
2930
2931 4 static int opt_read_intervals(void *optctx, const char *opt, const char *arg)
2932 {
2933 4 return parse_read_intervals(arg);
2934 }
2935
2936 static int opt_pretty(void *optctx, const char *opt, const char *arg)
2937 {
2938 show_value_unit = 1;
2939 use_value_prefix = 1;
2940 use_byte_value_binary_prefix = 1;
2941 use_value_sexagesimal_format = 1;
2942 return 0;
2943 }
2944
2945 static void print_section(SectionID id, int level)
2946 {
2947 const int *pid;
2948 const struct AVTextFormatSection *section = &sections[id];
2949 printf("%c%c%c%c",
2950 section->flags & AV_TEXTFORMAT_SECTION_FLAG_IS_WRAPPER ? 'W' : '.',
2951 section->flags & AV_TEXTFORMAT_SECTION_FLAG_IS_ARRAY ? 'A' : '.',
2952 section->flags & AV_TEXTFORMAT_SECTION_FLAG_HAS_VARIABLE_FIELDS ? 'V' : '.',
2953 section->flags & AV_TEXTFORMAT_SECTION_FLAG_HAS_TYPE ? 'T' : '.');
2954 printf("%*c %s", level * 4, ' ', section->name);
2955 if (section->unique_name)
2956 printf("/%s", section->unique_name);
2957 printf("\n");
2958
2959 for (pid = section->children_ids; *pid != -1; pid++)
2960 print_section(*pid, level+1);
2961 }
2962
2963 static int opt_sections(void *optctx, const char *opt, const char *arg)
2964 {
2965 printf("Sections:\n"
2966 "W... = Section is a wrapper (contains other sections, no local entries)\n"
2967 ".A.. = Section contains an array of elements of the same type\n"
2968 "..V. = Section may contain a variable number of fields with variable keys\n"
2969 "...T = Section contain a unique type\n"
2970 "FLAGS NAME/UNIQUE_NAME\n"
2971 "----\n");
2972 print_section(SECTION_ID_ROOT, 0);
2973 return 0;
2974 }
2975
2976 static int opt_show_versions(void *optctx, const char *opt, const char *arg)
2977 {
2978 mark_section_show_entries(SECTION_ID_PROGRAM_VERSION, 1, NULL);
2979 mark_section_show_entries(SECTION_ID_LIBRARY_VERSION, 1, NULL);
2980 return 0;
2981 }
2982
2983 #define DEFINE_OPT_SHOW_SECTION(section, target_section_id) \
2984 static int opt_show_##section(void *optctx, const char *opt, const char *arg) \
2985 { \
2986 mark_section_show_entries(SECTION_ID_##target_section_id, 1, NULL); \
2987 return 0; \
2988 }
2989
2990 4 DEFINE_OPT_SHOW_SECTION(chapters, CHAPTERS)
2991 DEFINE_OPT_SHOW_SECTION(error, ERROR)
2992 16 DEFINE_OPT_SHOW_SECTION(format, FORMAT)
2993 28 DEFINE_OPT_SHOW_SECTION(frames, FRAMES)
2994 DEFINE_OPT_SHOW_SECTION(library_versions, LIBRARY_VERSIONS)
2995 33 DEFINE_OPT_SHOW_SECTION(packets, PACKETS)
2996 DEFINE_OPT_SHOW_SECTION(pixel_formats, PIXEL_FORMATS)
2997 DEFINE_OPT_SHOW_SECTION(program_version, PROGRAM_VERSION)
2998 26 DEFINE_OPT_SHOW_SECTION(streams, STREAMS)
2999 DEFINE_OPT_SHOW_SECTION(programs, PROGRAMS)
3000 DEFINE_OPT_SHOW_SECTION(stream_groups, STREAM_GROUPS)
3001
3002 static const OptionDef real_options[] = {
3003 CMDUTILS_COMMON_OPTIONS
3004 { "f", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_format}, "force format", "format" },
3005 { "unit", OPT_TYPE_BOOL, 0, {&show_value_unit}, "show unit of the displayed values" },
3006 { "prefix", OPT_TYPE_BOOL, 0, {&use_value_prefix}, "use SI prefixes for the displayed values" },
3007 { "byte_binary_prefix", OPT_TYPE_BOOL, 0, {&use_byte_value_binary_prefix},
3008 "use binary prefixes for byte units" },
3009 { "sexagesimal", OPT_TYPE_BOOL, 0, {&use_value_sexagesimal_format},
3010 "use sexagesimal format HOURS:MM:SS.MICROSECONDS for time units" },
3011 { "pretty", OPT_TYPE_FUNC, 0, {.func_arg = opt_pretty},
3012 "prettify the format of displayed values, make it more human readable" },
3013 { "output_format", OPT_TYPE_STRING, 0, { &output_format },
3014 "set the output printing format (available formats are: default, compact, csv, flat, ini, json, xml)", "format" },
3015 { "print_format", OPT_TYPE_STRING, 0, { &output_format }, "alias for -output_format (deprecated)" },
3016 { "of", OPT_TYPE_STRING, 0, { &output_format }, "alias for -output_format", "format" },
3017 { "select_streams", OPT_TYPE_STRING, 0, { &stream_specifier }, "select the specified streams", "stream_specifier" },
3018 { "sections", OPT_TYPE_FUNC, OPT_EXIT, {.func_arg = opt_sections}, "print sections structure and section information, and exit" },
3019 { "show_data", OPT_TYPE_BOOL, 0, { &do_show_data }, "show packets data" },
3020 { "show_data_hash", OPT_TYPE_STRING, 0, { &show_data_hash }, "show packets data hash" },
3021 { "show_error", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_error }, "show probing error" },
3022 { "show_format", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_format }, "show format/container info" },
3023 { "show_frames", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_frames }, "show frames info" },
3024 { "show_entries", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_show_entries},
3025 "show a set of specified entries", "entry_list" },
3026 #if HAVE_THREADS
3027 { "show_log", OPT_TYPE_INT, 0, { &do_show_log }, "show log" },
3028 #endif
3029 { "show_packets", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_packets }, "show packets info" },
3030 { "show_programs", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_programs }, "show programs info" },
3031 { "show_stream_groups", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_stream_groups }, "show stream groups info" },
3032 { "show_streams", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_streams }, "show streams info" },
3033 { "show_chapters", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_chapters }, "show chapters info" },
3034 { "count_frames", OPT_TYPE_BOOL, 0, { &do_count_frames }, "count the number of frames per stream" },
3035 { "count_packets", OPT_TYPE_BOOL, 0, { &do_count_packets }, "count the number of packets per stream" },
3036 { "show_program_version", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_program_version }, "show ffprobe version" },
3037 { "show_library_versions", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_library_versions }, "show library versions" },
3038 { "show_versions", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_versions }, "show program and library versions" },
3039 { "show_pixel_formats", OPT_TYPE_FUNC, 0, { .func_arg = &opt_show_pixel_formats }, "show pixel format descriptions" },
3040 { "show_optional_fields", OPT_TYPE_FUNC, OPT_FUNC_ARG, { .func_arg = &opt_show_optional_fields }, "show optional fields" },
3041 { "show_private_data", OPT_TYPE_BOOL, 0, { &show_private_data }, "show private data" },
3042 { "private", OPT_TYPE_BOOL, 0, { &show_private_data }, "same as show_private_data" },
3043 { "analyze_frames", OPT_TYPE_BOOL, 0, { &do_analyze_frames }, "analyze frames to provide additional stream-level information" },
3044 { "bitexact", OPT_TYPE_BOOL, 0, {&do_bitexact}, "force bitexact output" },
3045 { "read_intervals", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_read_intervals}, "set read intervals", "read_intervals" },
3046 { "i", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_input_file_i}, "read specified file", "input_file"},
3047 { "o", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_output_file_o}, "write to specified output", "output_file"},
3048 { "print_filename", OPT_TYPE_FUNC, OPT_FUNC_ARG, {.func_arg = opt_print_filename}, "override the printed input filename", "print_file"},
3049 { "find_stream_info", OPT_TYPE_BOOL, OPT_INPUT | OPT_EXPERT, { &find_stream_info },
3050 "read and decode the streams to fill missing information with heuristics" },
3051 { NULL, },
3052 };
3053
3054 12479 static inline int check_section_show_entries(int section_id)
3055 {
3056 12479 struct AVTextFormatSection *section = &sections[section_id];
3057
4/4
✓ Branch 0 taken 12065 times.
✓ Branch 1 taken 414 times.
✓ Branch 2 taken 210 times.
✓ Branch 3 taken 11855 times.
12479 if (sections[section_id].show_all_entries || sections[section_id].entries_to_show)
3058 624 return 1;
3059
2/2
✓ Branch 0 taken 8186 times.
✓ Branch 1 taken 11403 times.
19589 for (const int *id = section->children_ids; *id != -1; id++)
3060
2/2
✓ Branch 1 taken 452 times.
✓ Branch 2 taken 7734 times.
8186 if (check_section_show_entries(*id))
3061 452 return 1;
3062 11403 return 0;
3063 }
3064
3065 #define SET_DO_SHOW(id, varname) do { \
3066 if (check_section_show_entries(SECTION_ID_##id)) \
3067 do_show_##varname = 1; \
3068 } while (0)
3069
3070 159 int main(int argc, char **argv)
3071 {
3072 const AVTextFormatter *f;
3073 AVTextFormatContext *tctx;
3074 AVTextWriterContext *wctx;
3075 char *buf;
3076 159 char *f_name = NULL, *f_args = NULL;
3077 int ret, input_ret, i;
3078
3079 159 init_dynload();
3080
3081 159 setvbuf(stderr, NULL, _IONBF, 0); /* win32 runtime needs this */
3082
3083 159 av_log_set_flags(AV_LOG_SKIP_REPEATED);
3084
3085 159 options = real_options;
3086 159 parse_loglevel(argc, argv, options);
3087 159 avformat_network_init();
3088 #if CONFIG_AVDEVICE
3089 159 avdevice_register_all();
3090 #endif
3091
3092 159 show_banner(argc, argv, options);
3093 159 ret = parse_options(NULL, argc, argv, options, opt_input_file);
3094
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (ret < 0) {
3095 ret = (ret == AVERROR_EXIT) ? 0 : ret;
3096 goto end;
3097 }
3098
3099
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (do_show_log)
3100 av_log_set_callback(log_callback);
3101
3102 /* mark things to show, based on -show_entries */
3103
2/2
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 154 times.
159 SET_DO_SHOW(CHAPTERS, chapters);
3104
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(ERROR, error);
3105
2/2
✓ Branch 1 taken 42 times.
✓ Branch 2 taken 117 times.
159 SET_DO_SHOW(FORMAT, format);
3106
2/2
✓ Branch 1 taken 50 times.
✓ Branch 2 taken 109 times.
159 SET_DO_SHOW(FRAMES, frames);
3107
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(LIBRARY_VERSIONS, library_versions);
3108
2/2
✓ Branch 1 taken 41 times.
✓ Branch 2 taken 118 times.
159 SET_DO_SHOW(PACKETS, packets);
3109
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(PIXEL_FORMATS, pixel_formats);
3110
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(PIXEL_FORMAT_FLAGS, pixel_format_flags);
3111
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(PIXEL_FORMAT_COMPONENTS, pixel_format_components);
3112
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(PROGRAM_VERSION, program_version);
3113
2/2
✓ Branch 1 taken 55 times.
✓ Branch 2 taken 104 times.
159 SET_DO_SHOW(PROGRAMS, programs);
3114
2/2
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 151 times.
159 SET_DO_SHOW(STREAM_GROUP_DISPOSITION, stream_group_disposition);
3115
2/2
✓ Branch 1 taken 70 times.
✓ Branch 2 taken 89 times.
159 SET_DO_SHOW(STREAM_GROUPS, stream_groups);
3116
2/2
✓ Branch 1 taken 17 times.
✓ Branch 2 taken 142 times.
159 SET_DO_SHOW(STREAM_GROUP_COMPONENTS, stream_group_components);
3117
2/2
✓ Branch 1 taken 91 times.
✓ Branch 2 taken 68 times.
159 SET_DO_SHOW(STREAMS, streams);
3118
2/2
✓ Branch 1 taken 43 times.
✓ Branch 2 taken 116 times.
159 SET_DO_SHOW(STREAM_DISPOSITION, stream_disposition);
3119
2/2
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 154 times.
159 SET_DO_SHOW(PROGRAM_STREAM_DISPOSITION, stream_disposition);
3120
2/2
✓ Branch 1 taken 21 times.
✓ Branch 2 taken 138 times.
159 SET_DO_SHOW(STREAM_GROUP_STREAM_DISPOSITION, stream_disposition);
3121
3122
2/2
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 154 times.
159 SET_DO_SHOW(CHAPTER_TAGS, chapter_tags);
3123
2/2
✓ Branch 1 taken 34 times.
✓ Branch 2 taken 125 times.
159 SET_DO_SHOW(FORMAT_TAGS, format_tags);
3124
2/2
✓ Branch 1 taken 43 times.
✓ Branch 2 taken 116 times.
159 SET_DO_SHOW(FRAME_TAGS, frame_tags);
3125
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 SET_DO_SHOW(PROGRAM_TAGS, program_tags);
3126
2/2
✓ Branch 1 taken 8 times.
✓ Branch 2 taken 151 times.
159 SET_DO_SHOW(STREAM_GROUP_TAGS, stream_group_tags);
3127
2/2
✓ Branch 1 taken 41 times.
✓ Branch 2 taken 118 times.
159 SET_DO_SHOW(STREAM_TAGS, stream_tags);
3128
2/2
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 154 times.
159 SET_DO_SHOW(PROGRAM_STREAM_TAGS, stream_tags);
3129
2/2
✓ Branch 1 taken 5 times.
✓ Branch 2 taken 154 times.
159 SET_DO_SHOW(STREAM_GROUP_STREAM_TAGS, stream_tags);
3130
2/2
✓ Branch 1 taken 35 times.
✓ Branch 2 taken 124 times.
159 SET_DO_SHOW(PACKET_TAGS, packet_tags);
3131
3132
4/6
✓ Branch 0 taken 143 times.
✓ Branch 1 taken 16 times.
✓ Branch 2 taken 143 times.
✗ Branch 3 not taken.
✗ Branch 4 not taken.
✓ Branch 5 taken 143 times.
159 if (do_bitexact && (do_show_program_version || do_show_library_versions)) {
3133 av_log(NULL, AV_LOG_ERROR,
3134 "-bitexact and -show_program_version or -show_library_versions "
3135 "options are incompatible\n");
3136 ret = AVERROR(EINVAL);
3137 goto end;
3138 }
3139
3140
2/2
✓ Branch 0 taken 95 times.
✓ Branch 1 taken 64 times.
159 if (!output_format)
3141 95 output_format = av_strdup("default");
3142
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!output_format) {
3143 ret = AVERROR(ENOMEM);
3144 goto end;
3145 }
3146 159 f_name = av_strtok(output_format, "=", &buf);
3147
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!f_name) {
3148 av_log(NULL, AV_LOG_ERROR,
3149 "No name specified for the output format\n");
3150 ret = AVERROR(EINVAL);
3151 goto end;
3152 }
3153 159 f_args = buf;
3154
3155 159 f = avtext_get_formatter_by_name(f_name);
3156
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!f) {
3157 av_log(NULL, AV_LOG_ERROR, "Unknown output format with name '%s'\n", f_name);
3158 ret = AVERROR(EINVAL);
3159 goto end;
3160 }
3161
3162
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (output_filename) {
3163 ret = avtextwriter_create_file(&wctx, output_filename);
3164 } else
3165 159 ret = avtextwriter_create_stdout(&wctx);
3166
3167
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (ret < 0)
3168 goto end;
3169
3170 159 AVTextFormatOptions tf_options = {
3171 .show_optional_fields = show_optional_fields,
3172 .show_value_unit = show_value_unit,
3173 .use_value_prefix = use_value_prefix,
3174 .use_byte_value_binary_prefix = use_byte_value_binary_prefix,
3175 .use_value_sexagesimal_format = use_value_sexagesimal_format,
3176 };
3177
3178
1/2
✗ Branch 1 not taken.
✓ Branch 2 taken 159 times.
159 if ((ret = avtext_context_open(&tctx, f, wctx, f_args, sections, FF_ARRAY_ELEMS(sections), tf_options, show_data_hash)) >= 0) {
3179
2/2
✓ Branch 0 taken 2 times.
✓ Branch 1 taken 157 times.
159 if (f == &avtextformatter_xml)
3180 2 tctx->string_validation_utf8_flags |= AV_UTF8_FLAG_EXCLUDE_XML_INVALID_CONTROL_CODES;
3181
3182 159 avtext_print_section_header(tctx, NULL, SECTION_ID_ROOT);
3183
3184
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (do_show_program_version)
3185 ffprobe_show_program_version(tctx);
3186
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (do_show_library_versions)
3187 ffprobe_show_library_versions(tctx);
3188
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (do_show_pixel_formats)
3189 ffprobe_show_pixel_formats(tctx);
3190
3191
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (!input_filename &&
3192 ((do_show_format || do_show_programs || do_show_stream_groups || do_show_streams || do_show_chapters || do_show_packets || do_show_error) ||
3193 (!do_show_program_version && !do_show_library_versions && !do_show_pixel_formats))) {
3194 show_usage();
3195 av_log(NULL, AV_LOG_ERROR, "You have to specify one input file.\n");
3196 av_log(NULL, AV_LOG_ERROR, "Use -h to get full help or, even better, run 'man %s'.\n", program_name);
3197 ret = AVERROR(EINVAL);
3198
1/2
✓ Branch 0 taken 159 times.
✗ Branch 1 not taken.
159 } else if (input_filename) {
3199 159 ret = probe_file(tctx, input_filename, print_input_filename);
3200
1/4
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
✗ Branch 2 not taken.
✗ Branch 3 not taken.
159 if (ret < 0 && do_show_error)
3201 show_error(tctx, ret);
3202 }
3203
3204 159 input_ret = ret;
3205
3206 159 avtext_print_section_footer(tctx);
3207
3208 159 ret = avtextwriter_context_close(&wctx);
3209
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (ret < 0)
3210 av_log(NULL, AV_LOG_ERROR, "Writing output failed (closing writer): %s\n", av_err2str(ret));
3211
3212 159 ret = avtext_context_close(&tctx);
3213
1/2
✗ Branch 0 not taken.
✓ Branch 1 taken 159 times.
159 if (ret < 0)
3214 av_log(NULL, AV_LOG_ERROR, "Writing output failed (closing formatter): %s\n", av_err2str(ret));
3215
3216 159 ret = FFMIN(ret, input_ret);
3217 }
3218
3219 end:
3220 159 av_freep(&output_format);
3221 159 av_freep(&output_filename);
3222 159 av_freep(&input_filename);
3223 159 av_freep(&print_input_filename);
3224 159 av_freep(&read_intervals);
3225
3226 159 uninit_opts();
3227
2/2
✓ Branch 0 taken 10494 times.
✓ Branch 1 taken 159 times.
10653 for (i = 0; i < FF_ARRAY_ELEMS(sections); i++)
3228 10494 av_dict_free(&(sections[i].entries_to_show));
3229
3230 159 avformat_network_deinit();
3231
3232 159 return ret < 0;
3233 }
3234