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
d58ed01e
Commit
d58ed01e
authored
Oct 21, 2014
by
Hugo Beauzée-Luyssen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modules: Don't use gcc specific binary constant prefix
parent
fd1f428e
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
modules/codec/lpcm.c
modules/codec/lpcm.c
+2
-2
modules/demux/ogg.c
modules/demux/ogg.c
+1
-1
modules/demux/ts.c
modules/demux/ts.c
+1
-1
No files found.
modules/codec/lpcm.c
View file @
d58ed01e
...
...
@@ -1012,10 +1012,10 @@ static int WidiHeader( unsigned *pi_rate,
switch
(
(
p_header
[
3
]
&
0x38
)
>>
3
)
{
case
0
b001
:
case
0
x01
:
//0b001
*
pi_rate
=
44100
;
break
;
case
0
b010
:
case
0
x02
:
//0b010
*
pi_rate
=
48000
;
break
;
default:
...
...
modules/demux/ogg.c
View file @
d58ed01e
...
...
@@ -111,7 +111,7 @@ typedef struct
#define VORBIS_HEADER_SETUP 3
#define VORBIS_HEADER_TO_FLAG(i) (1 << (i - 1))
#define VORBIS_HEADERS_VALID(p_stream) \
((p_stream->special.vorbis.i_headers_flags & 0
b111) == 0b111)
((p_stream->special.vorbis.i_headers_flags & 0
x07) == 0x07) // 0b111
/*****************************************************************************
* Local prototypes
...
...
modules/demux/ts.c
View file @
d58ed01e
...
...
@@ -4497,7 +4497,7 @@ static void PMTCallBack( void *data, dvbpsi_pmt_t *p_pmt )
break
;
}
}
if
(
i_arib_flags
==
0
b111
)
if
(
i_arib_flags
==
0
x07
)
//0b111
p_sys
->
arib
.
e_mode
=
ARIBMODE_ENABLED
;
}
...
...
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