FFmpeg coverage


Directory: ../../../ffmpeg/
File: src/fftools/ffprobe.c
Date: 2026-09-19 08:35:40
Exec Total Coverage
Lines: 1432 2043 70.1%
Functions: 69 95 72.6%
Branches: 796 1330 59.8%

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