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
80602ac2
Commit
80602ac2
authored
Feb 25, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* modules/packetizer/mpeg4audio.c, modules/packetizer/mpegvideo.c: compilation fix.
parent
b0315113
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
modules/packetizer/mpeg4audio.c
modules/packetizer/mpeg4audio.c
+2
-2
modules/packetizer/mpegvideo.c
modules/packetizer/mpegvideo.c
+2
-2
No files found.
modules/packetizer/mpeg4audio.c
View file @
80602ac2
...
...
@@ -2,7 +2,7 @@
* mpeg4audio.c: parse and packetize an MPEG 4 audio stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpeg4audio.c,v 1.1
6 2004/01/25 17:58:30 murray
Exp $
* $Id: mpeg4audio.c,v 1.1
7 2004/02/25 18:43:24 gbazin
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Gildas Bazin <gbazin@netcourrier.com>
...
...
@@ -253,7 +253,7 @@ static block_t *ADTSPacketizeBlock( decoder_t *p_dec, block_t **pp_block )
return
NULL
;
}
if
(
(
*
pp_block
)
->
b_discontinuity
)
if
(
(
*
pp_block
)
->
i_flags
&
BLOCK_FLAG_DISCONTINUITY
)
{
p_sys
->
i_state
=
STATE_NOSYNC
;
}
...
...
modules/packetizer/mpegvideo.c
View file @
80602ac2
...
...
@@ -2,7 +2,7 @@
* mpegvideo.c: parse and packetize an MPEG1/2 video stream
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
* $Id: mpegvideo.c,v 1.
29 2004/02/20 18:24:41 massiot
Exp $
* $Id: mpegvideo.c,v 1.
30 2004/02/25 18:43:24 gbazin
Exp $
*
* Authors: Laurent Aimar <fenrir@via.ecp.fr>
* Eric Petit <titer@videolan.org>
...
...
@@ -211,7 +211,7 @@ static block_t *Packetize( decoder_t *p_dec, block_t **pp_block )
return
NULL
;
}
if
(
(
*
pp_block
)
->
b_discontinuity
)
if
(
(
*
pp_block
)
->
i_flags
&
BLOCK_FLAG_DISCONTINUITY
)
{
p_sys
->
i_state
=
STATE_NOSYNC
;
if
(
p_sys
->
p_frame
)
block_ChainRelease
(
p_sys
->
p_frame
);
...
...
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