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
20da3179
Commit
20da3179
authored
Apr 29, 2004
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
>2 channels decoding fix
Originally committed as revision 3086 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
8aedc51d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
parser.c
libavcodec/parser.c
+6
-3
No files found.
libavcodec/parser.c
View file @
20da3179
...
...
@@ -877,9 +877,12 @@ static int ac3_parse(AVCodecParserContext *s1,
s
->
frame_size
=
len
;
/* update codec info */
avctx
->
sample_rate
=
sample_rate
;
avctx
->
channels
=
ac3_channels
[
s
->
flags
&
7
];
if
(
s
->
flags
&
A52_LFE
)
avctx
->
channels
++
;
/* set channels,except if the user explicitly requests 1 or 2 channels, XXX/FIXME this is a bit ugly */
if
(
avctx
->
channels
!=
1
&&
avctx
->
channels
!=
2
){
avctx
->
channels
=
ac3_channels
[
s
->
flags
&
7
];
if
(
s
->
flags
&
A52_LFE
)
avctx
->
channels
++
;
}
avctx
->
bit_rate
=
bit_rate
;
avctx
->
frame_size
=
6
*
256
;
}
...
...
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