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
a1b3ffae
Commit
a1b3ffae
authored
Sep 30, 2003
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* include/vlc_block_helper.h, modules/codec/a52.c: same as thedj ;)
parent
a4ee4477
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
17 deletions
+4
-17
include/vlc_block_helper.h
include/vlc_block_helper.h
+1
-14
modules/codec/a52.c
modules/codec/a52.c
+3
-3
No files found.
include/vlc_block_helper.h
View file @
a1b3ffae
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* vlc_block_helper.h: Helper functions for data blocks management.
* vlc_block_helper.h: Helper functions for data blocks management.
*****************************************************************************
*****************************************************************************
* Copyright (C) 2003 VideoLAN
* Copyright (C) 2003 VideoLAN
* $Id: vlc_block_helper.h,v 1.
1 2003/09/30 20:23:03
gbazin Exp $
* $Id: vlc_block_helper.h,v 1.
2 2003/09/30 20:36:46
gbazin Exp $
*
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
*
...
@@ -61,19 +61,6 @@ static inline block_t *block_BytestreamFlush( block_bytestream_t *p_bytestream)
...
@@ -61,19 +61,6 @@ static inline block_t *block_BytestreamFlush( block_bytestream_t *p_bytestream)
return
p_bytestream
->
p_chain
;
return
p_bytestream
->
p_chain
;
}
}
static
inline
mtime_t
block_BytestreamPTS
(
block_bytestream_t
*
p_bytestream
)
{
while
(
p_bytestream
->
p_chain
!=
p_bytestream
->
p_block
)
{
block_t
*
p_next
;
p_next
=
p_bytestream
->
p_chain
->
p_next
;
p_bytestream
->
p_chain
->
pf_release
(
p_bytestream
->
p_chain
);
p_bytestream
->
p_chain
=
p_next
;
}
return
p_bytestream
->
p_chain
;
}
static
inline
int
block_SkipByte
(
block_bytestream_t
*
p_bytestream
)
static
inline
int
block_SkipByte
(
block_bytestream_t
*
p_bytestream
)
{
{
/* Most common case first */
/* Most common case first */
...
...
modules/codec/a52.c
View file @
a1b3ffae
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
* a52.c: A/52 basic parser
* a52.c: A/52 basic parser
*****************************************************************************
*****************************************************************************
* Copyright (C) 2001-2002 VideoLAN
* Copyright (C) 2001-2002 VideoLAN
* $Id: a52.c,v 1.2
4 2003/09/30 20:23:03
gbazin Exp $
* $Id: a52.c,v 1.2
5 2003/09/30 20:36:46
gbazin Exp $
*
*
* Authors: Stphane Borel <stef@via.ecp.fr>
* Authors: Stphane Borel <stef@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
* Christophe Massiot <massiot@via.ecp.fr>
...
@@ -361,7 +361,7 @@ static int EndDecoder( decoder_t *p_dec )
...
@@ -361,7 +361,7 @@ static int EndDecoder( decoder_t *p_dec )
sout_InputDelete
(
p_dec
->
p_sys
->
p_sout_input
);
sout_InputDelete
(
p_dec
->
p_sys
->
p_sout_input
);
}
}
if
(
p_dec
->
p_sys
->
p_chain
)
block_ChainRelease
(
p_sys
->
p_chain
);
if
(
p_dec
->
p_sys
->
p_chain
)
block_ChainRelease
(
p_
dec
->
p_
sys
->
p_chain
);
free
(
p_dec
->
p_sys
);
free
(
p_dec
->
p_sys
);
...
@@ -534,7 +534,7 @@ static int SendOutBuffer( decoder_t *p_dec )
...
@@ -534,7 +534,7 @@ static int SendOutBuffer( decoder_t *p_dec )
p_sys
->
p_aout_buffer
=
NULL
;
p_sys
->
p_aout_buffer
=
NULL
;
}
}
p_
dec
->
p_
sys
->
p_out_buffer
=
NULL
;
p_sys
->
p_out_buffer
=
NULL
;
return
VLC_SUCCESS
;
return
VLC_SUCCESS
;
}
}
...
...
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