Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
19457f20
Commit
19457f20
authored
Aug 11, 2002
by
Christophe Massiot
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Ported fix from STABLE.
parent
63d7e3c2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
5 deletions
+18
-5
modules/codec/lpcm/lpcm.c
modules/codec/lpcm/lpcm.c
+18
-5
No files found.
modules/codec/lpcm/lpcm.c
View file @
19457f20
...
...
@@ -2,7 +2,7 @@
* lpcm.c: lpcm decoder module
*****************************************************************************
* Copyright (C) 1999-2001 VideoLAN
* $Id: lpcm.c,v 1.
1 2002/08/04 17:23:42 sam
Exp $
* $Id: lpcm.c,v 1.
2 2002/08/11 21:59:46 massiot
Exp $
*
* Authors: Samuel Hocevar <sam@zoy.org>
* Henri Fallon <henri@videolan.org>
...
...
@@ -145,7 +145,10 @@ static int InitThread (lpcmdec_thread_t * p_lpcmdec)
*****************************************************************************/
void
DecodeFrame
(
lpcmdec_thread_t
*
p_lpcmdec
)
{
byte_t
*
buffer
,
p_temp
[
LPCMDEC_FRAME_SIZE
];
byte_t
*
buffer
;
#ifndef WORDS_BIGENDIAN
byte_t
*
p_temp
[
LPCMDEC_FRAME_SIZE
];
#endif
vlc_bool_t
b_sync
;
int
i_loop
;
...
...
@@ -168,8 +171,8 @@ void DecodeFrame( lpcmdec_thread_t * p_lpcmdec )
/* I only have 2 test streams. As far as I understand
* after the RemoveBits and the 2 GetBits, we should be exactly
* where we w
h
ant : the sync word : 0x0180.
* If not, we go
t
and find it. */
* where we want : the sync word : 0x0180.
* If not, we go and find it. */
while( ( byte1 != 0x01 || byte2 != 0x80 ) && (!p_lpcmdec->p_fifo->b_die)
&& (!p_lpcmdec->p_fifo->b_error) )
{
...
...
@@ -190,15 +193,25 @@ void DecodeFrame( lpcmdec_thread_t * p_lpcmdec )
RemoveBits
(
&
p_lpcmdec
->
bit_stream
,
8
);
#endif
#ifndef WORDS_BIGENDIAN
GetChunk
(
&
p_lpcmdec
->
bit_stream
,
p_temp
,
LPCMDEC_FRAME_SIZE
);
if
(
p_lpcmdec
->
p_fifo
->
b_die
||
p_lpcmdec
->
p_fifo
->
b_error
)
return
;
# ifdef HAVE_SWAB
swab
(
buffer
,
p_temp
,
LPCMDEC_FRAME_SIZE
);
# else
for
(
i_loop
=
0
;
i_loop
<
LPCMDEC_FRAME_SIZE
/
2
;
i_loop
++
)
{
buffer
[
2
*
i_loop
]
=
p_temp
[
2
*
i_loop
+
1
];
buffer
[
2
*
i_loop
+
1
]
=
p_temp
[
2
*
i_loop
];
}
# endif
#else
GetChunk
(
&
p_lpcmdec
->
bit_stream
,
buffer
,
LPCMDEC_FRAME_SIZE
);
if
(
p_lpcmdec
->
p_fifo
->
b_die
)
return
;
#endif
vlc_mutex_lock
(
&
p_lpcmdec
->
p_aout_fifo
->
data_lock
);
p_lpcmdec
->
p_aout_fifo
->
i_end_frame
=
(
p_lpcmdec
->
p_aout_fifo
->
i_end_frame
+
1
)
&
AOUT_FIFO_SIZE
;
...
...
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