Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
33f7f636
Commit
33f7f636
authored
Nov 18, 2016
by
Vittorio Giovara
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffprobe: Fix displaying side data list only
Signed-off-by:
Vittorio Giovara
<
vittorio.giovara@gmail.com
>
parent
7010ebdf
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
ffprobe.c
ffprobe.c
+3
-3
No files found.
ffprobe.c
View file @
33f7f636
...
...
@@ -188,7 +188,7 @@ static struct section sections[] = {
[
SECTION_ID_FRAMES
]
=
{
SECTION_ID_FRAMES
,
"frames"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_FRAME
,
SECTION_ID_SUBTITLE
,
-
1
}
},
[
SECTION_ID_FRAME
]
=
{
SECTION_ID_FRAME
,
"frame"
,
0
,
{
SECTION_ID_FRAME_TAGS
,
SECTION_ID_FRAME_SIDE_DATA_LIST
,
-
1
}
},
[
SECTION_ID_FRAME_TAGS
]
=
{
SECTION_ID_FRAME_TAGS
,
"tags"
,
SECTION_FLAG_HAS_VARIABLE_FIELDS
,
{
-
1
},
.
element_name
=
"tag"
,
.
unique_name
=
"frame_tags"
},
[
SECTION_ID_FRAME_SIDE_DATA_LIST
]
=
{
SECTION_ID_FRAME_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_FRAME_SIDE_DATA
,
-
1
}
},
[
SECTION_ID_FRAME_SIDE_DATA_LIST
]
=
{
SECTION_ID_FRAME_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_FRAME_SIDE_DATA
,
-
1
}
,
.
element_name
=
"side_data"
,
.
unique_name
=
"frame_side_data_list"
},
[
SECTION_ID_FRAME_SIDE_DATA
]
=
{
SECTION_ID_FRAME_SIDE_DATA
,
"side_data"
,
0
,
{
-
1
}
},
[
SECTION_ID_LIBRARY_VERSIONS
]
=
{
SECTION_ID_LIBRARY_VERSIONS
,
"library_versions"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_LIBRARY_VERSION
,
-
1
}
},
[
SECTION_ID_LIBRARY_VERSION
]
=
{
SECTION_ID_LIBRARY_VERSION
,
"library_version"
,
0
,
{
-
1
}
},
...
...
@@ -196,7 +196,7 @@ static struct section sections[] = {
[
SECTION_ID_PACKETS_AND_FRAMES
]
=
{
SECTION_ID_PACKETS_AND_FRAMES
,
"packets_and_frames"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_PACKET
,
-
1
}
},
[
SECTION_ID_PACKET
]
=
{
SECTION_ID_PACKET
,
"packet"
,
0
,
{
SECTION_ID_PACKET_TAGS
,
SECTION_ID_PACKET_SIDE_DATA_LIST
,
-
1
}
},
[
SECTION_ID_PACKET_TAGS
]
=
{
SECTION_ID_PACKET_TAGS
,
"tags"
,
SECTION_FLAG_HAS_VARIABLE_FIELDS
,
{
-
1
},
.
element_name
=
"tag"
,
.
unique_name
=
"packet_tags"
},
[
SECTION_ID_PACKET_SIDE_DATA_LIST
]
=
{
SECTION_ID_PACKET_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_PACKET_SIDE_DATA
,
-
1
}
},
[
SECTION_ID_PACKET_SIDE_DATA_LIST
]
=
{
SECTION_ID_PACKET_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_PACKET_SIDE_DATA
,
-
1
}
,
.
element_name
=
"side_data"
,
.
unique_name
=
"packet_side_data_list"
},
[
SECTION_ID_PACKET_SIDE_DATA
]
=
{
SECTION_ID_PACKET_SIDE_DATA
,
"side_data"
,
0
,
{
-
1
}
},
[
SECTION_ID_PIXEL_FORMATS
]
=
{
SECTION_ID_PIXEL_FORMATS
,
"pixel_formats"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_PIXEL_FORMAT
,
-
1
}
},
[
SECTION_ID_PIXEL_FORMAT
]
=
{
SECTION_ID_PIXEL_FORMAT
,
"pixel_format"
,
0
,
{
SECTION_ID_PIXEL_FORMAT_FLAGS
,
SECTION_ID_PIXEL_FORMAT_COMPONENTS
,
-
1
}
},
...
...
@@ -219,7 +219,7 @@ static struct section sections[] = {
[
SECTION_ID_STREAM
]
=
{
SECTION_ID_STREAM
,
"stream"
,
0
,
{
SECTION_ID_STREAM_DISPOSITION
,
SECTION_ID_STREAM_TAGS
,
SECTION_ID_STREAM_SIDE_DATA_LIST
,
-
1
}
},
[
SECTION_ID_STREAM_DISPOSITION
]
=
{
SECTION_ID_STREAM_DISPOSITION
,
"disposition"
,
0
,
{
-
1
},
.
unique_name
=
"stream_disposition"
},
[
SECTION_ID_STREAM_TAGS
]
=
{
SECTION_ID_STREAM_TAGS
,
"tags"
,
SECTION_FLAG_HAS_VARIABLE_FIELDS
,
{
-
1
},
.
element_name
=
"tag"
,
.
unique_name
=
"stream_tags"
},
[
SECTION_ID_STREAM_SIDE_DATA_LIST
]
=
{
SECTION_ID_STREAM_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_STREAM_SIDE_DATA
,
-
1
}
},
[
SECTION_ID_STREAM_SIDE_DATA_LIST
]
=
{
SECTION_ID_STREAM_SIDE_DATA_LIST
,
"side_data_list"
,
SECTION_FLAG_IS_ARRAY
,
{
SECTION_ID_STREAM_SIDE_DATA
,
-
1
}
,
.
element_name
=
"side_data"
,
.
unique_name
=
"stream_side_data_list"
},
[
SECTION_ID_STREAM_SIDE_DATA
]
=
{
SECTION_ID_STREAM_SIDE_DATA
,
"side_data"
,
0
,
{
-
1
}
},
[
SECTION_ID_SUBTITLE
]
=
{
SECTION_ID_SUBTITLE
,
"subtitle"
,
0
,
{
-
1
}
},
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment