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
b7406e88
Commit
b7406e88
authored
Jan 30, 2016
by
Sebastian Ramacher
Committed by
Jean-Baptiste Kempf
Jan 30, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix spelling of "dependent" and variants
Signed-off-by:
Jean-Baptiste Kempf
<
jb@videolan.org
>
parent
9604e6dd
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
include/vlc_fourcc.h
include/vlc_fourcc.h
+1
-1
modules/codec/wmafixed/wmadeci.c
modules/codec/wmafixed/wmadeci.c
+1
-1
modules/demux/mp4/libmp4.c
modules/demux/mp4/libmp4.c
+2
-2
modules/mux/mp4/libmp4mux.c
modules/mux/mp4/libmp4mux.c
+3
-3
No files found.
include/vlc_fourcc.h
View file @
b7406e88
...
...
@@ -513,7 +513,7 @@
#define VLC_CODEC_XYZ12 VLC_FOURCC('X','Y','1','2')
/* Special endian depend
a
nt values
/* Special endian depend
e
nt values
* The suffic N means Native
* The suffix I means Inverted (ie non native) */
#ifdef WORDS_BIGENDIAN
...
...
modules/codec/wmafixed/wmadeci.c
View file @
b7406e88
...
...
@@ -383,7 +383,7 @@ int wma_decode_init(WMADecodeContext* s, asf_waveformatex_t *wfx)
s
->
nb_block_sizes
=
1
;
}
/* init rate depend
a
nt parameters */
/* init rate depend
e
nt parameters */
s
->
use_noise_coding
=
1
;
high_freq
=
itofix64
(
s
->
sample_rate
)
>>
1
;
...
...
modules/demux/mp4/libmp4.c
View file @
b7406e88
...
...
@@ -1761,13 +1761,13 @@ static int MP4_ReadBox_dec3( stream_t *p_stream, MP4_Box_t *p_box )
#ifdef MP4_VERBOSE
msg_Dbg
(
p_stream
,
"read box:
\"
dec3
\"
bitrate %dkbps %d independ
a
nt substreams"
,
"read box:
\"
dec3
\"
bitrate %dkbps %d independ
e
nt substreams"
,
p_dec3
->
i_data_rate
,
p_dec3
->
i_num_ind_sub
);
for
(
uint8_t
i
=
0
;
i
<
p_dec3
->
i_num_ind_sub
;
i
++
)
msg_Dbg
(
p_stream
,
"
\t
stream %d: bsid=0x%x bsmod=0x%x acmod=0x%x lfeon=0x%x "
"num depend
a
nt subs=%d chan_loc=0x%x"
,
"num depend
e
nt subs=%d chan_loc=0x%x"
,
i
,
p_dec3
->
stream
[
i
].
i_bsid
,
p_dec3
->
stream
[
i
].
i_bsmod
,
p_dec3
->
stream
[
i
].
i_acmod
,
p_dec3
->
stream
[
i
].
i_lfeon
,
p_dec3
->
stream
[
i
].
i_num_dep_sub
,
p_dec3
->
stream
[
i
].
i_chan_loc
);
#endif
...
...
modules/mux/mp4/libmp4mux.c
View file @
b7406e88
...
...
@@ -313,7 +313,7 @@ static bo_t *GetDec3Tag(es_format_t *p_fmt, block_t *a52_frame)
strmtyp
=
bs_read
(
&
s
,
2
);
if
(
strmtyp
&
0x1
)
// depend
a
nt or reserved stream
if
(
strmtyp
&
0x1
)
// depend
e
nt or reserved stream
return
NULL
;
if
(
bs_read
(
&
s
,
3
)
!=
0x0
)
// substreamid: we don't support more than 1 stream
...
...
@@ -344,7 +344,7 @@ static bo_t *GetDec3Tag(es_format_t *p_fmt, block_t *a52_frame)
bs_skip
(
&
s
,
8
);
// compr2
}
if
(
strmtyp
==
0x1
)
// depend
a
nt stream XXX: unsupported
if
(
strmtyp
==
0x1
)
// depend
e
nt stream XXX: unsupported
if
(
bs_read1
(
&
s
))
// chanmape
bs_skip
(
&
s
,
16
);
// chanmap
...
...
@@ -359,7 +359,7 @@ static bo_t *GetDec3Tag(es_format_t *p_fmt, block_t *a52_frame)
if
(
lfeon
)
if
(
bs_read1
(
&
s
))
bs_skip
(
&
s
,
5
);
// lfemixlevcod
if
(
strmtyp
==
0
)
{
// independ
a
nt stream
if
(
strmtyp
==
0
)
{
// independ
e
nt stream
if
(
bs_read1
(
&
s
))
// pgmscle
bs_skip
(
&
s
,
6
);
// pgmscl
if
(
acmod
==
0x0
)
// dual mono
...
...
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