Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
5b775ca5
Commit
5b775ca5
authored
4 years ago
by
Sam Bazley
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/ffmpeg: check if long_name is not null
parent
ea95da3b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
FfmpegDecoderPlugin.cxx
src/decoder/plugins/FfmpegDecoderPlugin.cxx
+8
-0
No files found.
src/decoder/plugins/FfmpegDecoderPlugin.cxx
View file @
5b775ca5
...
...
@@ -602,6 +602,10 @@ ffmpeg_decode(DecoderClient &client, InputStream &input)
FfmpegOpenInput
(
stream
.
io
,
input
.
GetURI
(),
nullptr
);
const
auto
*
input_format
=
format_context
->
iformat
;
if
(
input_format
->
long_name
==
nullptr
)
FmtDebug
(
ffmpeg_domain
,
"detected input format '{}'"
,
input_format
->
name
);
else
FmtDebug
(
ffmpeg_domain
,
"detected input format '{}' ({})"
,
input_format
->
name
,
input_format
->
long_name
);
...
...
@@ -668,6 +672,10 @@ ffmpeg_uri_decode(DecoderClient &client, const char *uri)
FfmpegOpenInput
(
nullptr
,
uri
,
nullptr
);
const
auto
*
input_format
=
format_context
->
iformat
;
if
(
input_format
->
long_name
==
nullptr
)
FmtDebug
(
ffmpeg_domain
,
"detected input format '{}'"
,
input_format
->
name
);
else
FmtDebug
(
ffmpeg_domain
,
"detected input format '{}' ({})"
,
input_format
->
name
,
input_format
->
long_name
);
...
...
This diff is collapsed.
Click to expand it.
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