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
25a00dad
Commit
25a00dad
authored
Mar 03, 2003
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Fixed a bug in LPCM codec.
* Changed an error into a warning.
parent
2130ab44
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
7 deletions
+9
-7
modules/codec/lpcm.c
modules/codec/lpcm.c
+7
-5
modules/demux/mpeg/ps.c
modules/demux/mpeg/ps.c
+2
-2
No files found.
modules/codec/lpcm.c
View file @
25a00dad
...
...
@@ -2,7 +2,7 @@
* lpcm.c: lpcm decoder module
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: lpcm.c,v 1.1
1 2003/02/11 11:16:04
massiot Exp $
* $Id: lpcm.c,v 1.1
2 2003/03/03 14:19:09
massiot Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Henri Fallon <henri@videolan.org>
...
...
@@ -202,12 +202,14 @@ static void DecodeFrame( dec_thread_t * p_dec )
i_rate
=
48000
;
break
;
case
1
:
i_rate
=
96000
;
break
;
case
2
:
i_rate
=
44100
;
break
;
case
3
:
i_rate
=
32000
;
break
;
default:
msg_Err
(
p_dec
->
p_fifo
,
"unsupported LPCM rate (0x%x)"
,
i_header
);
p_dec
->
p_fifo
->
b_error
=
1
;
return
;
}
switch
(
i_header
&
0x7
)
...
...
modules/demux/mpeg/ps.c
View file @
25a00dad
...
...
@@ -2,7 +2,7 @@
* ps.c : Program Stream input module for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: ps.c,v 1.
7 2002/12/06 16:34:07 sam
Exp $
* $Id: ps.c,v 1.
8 2003/03/03 14:19:09 massiot
Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
...
...
@@ -95,7 +95,7 @@ static int Activate( vlc_object_t * p_this )
if
(
*
p_input
->
psz_demux
&&
!
strncmp
(
p_input
->
psz_demux
,
"ps"
,
3
)
)
{
/* User forced */
msg_
Err
(
p_input
,
"this does not look like an MPEG PS stream, continuing"
);
msg_
Warn
(
p_input
,
"this does not look like an MPEG PS stream, continuing"
);
}
else
{
...
...
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