Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
jami-daemon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
savoirfairelinux
jami-daemon
Commits
7df421b2
Commit
7df421b2
authored
6 years ago
by
Philippe Gorley
Committed by
Philippe Gorley
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
decoder: don't warn about format if none was given
Change-Id: I24421c2645e2fd919f54b9fd499592fc0d2b2ac3
parent
46fdc9d9
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/media/media_decoder.cpp
+1
-1
1 addition, 1 deletion
src/media/media_decoder.cpp
with
1 addition
and
1 deletion
src/media/media_decoder.cpp
+
1
−
1
View file @
7df421b2
...
...
@@ -76,7 +76,7 @@ int MediaDecoder::openInput(const DeviceParams& params)
inputParams_
=
params
;
AVInputFormat
*
iformat
=
av_find_input_format
(
params
.
format
.
c_str
());
if
(
!
iformat
)
if
(
!
iformat
&&
!
params
.
format
.
empty
()
)
RING_WARN
(
"Cannot find format
\"
%s
\"
"
,
params
.
format
.
c_str
());
if
(
params
.
width
and
params
.
height
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment