Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
4bac8299
Commit
4bac8299
authored
May 20, 2005
by
Clément Stenac
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't print error on non-fatal problems
parent
a215cc39
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/demux/mpeg/m4v.c
modules/demux/mpeg/m4v.c
+1
-1
modules/packetizer/mpeg4video.c
modules/packetizer/mpeg4video.c
+1
-1
No files found.
modules/demux/mpeg/m4v.c
View file @
4bac8299
...
...
@@ -95,7 +95,7 @@ static int Open( vlc_object_t * p_this )
return
VLC_EGENERIC
;
}
msg_
Err
(
p_demux
,
"this doesn't look like an MPEG-4 ES stream, continuing
"
);
msg_
Warn
(
p_demux
,
"this doesn't look like an MPEG-4 ES stream, continuing anyway
"
);
}
p_demux
->
pf_demux
=
Demux
;
...
...
modules/packetizer/mpeg4video.c
View file @
4bac8299
...
...
@@ -213,7 +213,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
if
(
p_sys
->
i_buffer
>
10
*
1000000
)
{
msg_
Err
(
p_dec
,
"mmh
reseting context"
);
msg_
Warn
(
p_dec
,
"
reseting context"
);
p_sys
->
i_buffer
=
0
;
}
...
...
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