FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/fftools/ffprobe.c
Date: 2025-10-10 03:51:19
Exec Total Coverage
Lines: 1370 1911 71.7%
Functions: 65 90 72.2%
Branches: 735 1218 60.3%

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