Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
f6287174
Commit
f6287174
authored
Jan 03, 2012
by
Jean-Baptiste Kempf
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Denote warnings in demuxer that can happen in normal situations
parent
6a0131da
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/demux/mod.c
modules/demux/mod.c
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+1
-1
No files found.
modules/demux/mod.c
View file @
f6287174
...
...
@@ -149,7 +149,7 @@ static int Open( vlc_object_t *p_this )
if
(
Validate
(
p_demux
,
psz_ext
)
)
{
msg_
Warn
(
p_demux
,
"MOD validation failed (ext=%s)"
,
psz_ext
?
psz_ext
:
""
);
msg_
Dbg
(
p_demux
,
"MOD validation failed (ext=%s)"
,
psz_ext
?
psz_ext
:
""
);
return
VLC_EGENERIC
;
}
}
...
...
modules/demux/ts.c
View file @
f6287174
...
...
@@ -555,7 +555,7 @@ static int DetectPacketSize( demux_t *p_demux )
msg_Warn
(
p_demux
,
"this does not look like a TS stream, continuing"
);
return
TS_PACKET_SIZE_188
;
}
msg_
Warn
(
p_demux
,
"TS module discarded (lost sync)"
);
msg_
Dbg
(
p_demux
,
"TS module discarded (lost sync)"
);
return
-
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