Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d4df0213
Commit
d4df0213
authored
Nov 22, 2013
by
Tim Walker
Committed by
Diego Biurrun
Nov 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ac3dec: Remove write-only channel_layout field from AC3DecodeContext
Signed-off-by:
Diego Biurrun
<
diego@biurrun.de
>
parent
b5328546
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
2 deletions
+0
-2
ac3dec.c
libavcodec/ac3dec.c
+0
-1
ac3dec.h
libavcodec/ac3dec.h
+0
-1
No files found.
libavcodec/ac3dec.c
View file @
d4df0213
...
@@ -261,7 +261,6 @@ static int parse_frame_header(AC3DecodeContext *s)
...
@@ -261,7 +261,6 @@ static int parse_frame_header(AC3DecodeContext *s)
s
->
bit_alloc_params
.
sr_code
=
hdr
.
sr_code
;
s
->
bit_alloc_params
.
sr_code
=
hdr
.
sr_code
;
s
->
bitstream_mode
=
hdr
.
bitstream_mode
;
s
->
bitstream_mode
=
hdr
.
bitstream_mode
;
s
->
channel_mode
=
hdr
.
channel_mode
;
s
->
channel_mode
=
hdr
.
channel_mode
;
s
->
channel_layout
=
hdr
.
channel_layout
;
s
->
lfe_on
=
hdr
.
lfe_on
;
s
->
lfe_on
=
hdr
.
lfe_on
;
s
->
bit_alloc_params
.
sr_shift
=
hdr
.
sr_shift
;
s
->
bit_alloc_params
.
sr_shift
=
hdr
.
sr_shift
;
s
->
sample_rate
=
hdr
.
sample_rate
;
s
->
sample_rate
=
hdr
.
sample_rate
;
...
...
libavcodec/ac3dec.h
View file @
d4df0213
...
@@ -81,7 +81,6 @@ typedef struct AC3DecodeContext {
...
@@ -81,7 +81,6 @@ typedef struct AC3DecodeContext {
int
num_blocks
;
///< number of audio blocks
int
num_blocks
;
///< number of audio blocks
int
bitstream_mode
;
///< bitstream mode (bsmod)
int
bitstream_mode
;
///< bitstream mode (bsmod)
int
channel_mode
;
///< channel mode (acmod)
int
channel_mode
;
///< channel mode (acmod)
int
channel_layout
;
///< channel layout
int
lfe_on
;
///< lfe channel in use
int
lfe_on
;
///< lfe channel in use
int
channel_map
;
///< custom channel map
int
channel_map
;
///< custom channel map
int
center_mix_level
;
///< Center mix level index
int
center_mix_level
;
///< Center mix level index
...
...
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