Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
9882bcc3
Commit
9882bcc3
authored
Oct 04, 2007
by
Rémi Denis-Courmont
Browse files
Export bitrate for the benefit of stream output
parent
66626226
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/araw.c
View file @
9882bcc3
...
...
@@ -1442,6 +1442,11 @@ static int EncoderOpen( vlc_object_t *p_this )
p_sys
->
i_s16tolog
=
ULAW
;
}
p_enc
->
fmt_out
.
i_bitrate
=
p_enc
->
fmt_in
.
audio
.
i_channels
*
p_enc
->
fmt_in
.
audio
.
i_rate
*
p_enc
->
fmt_in
.
audio
.
i_bitspersample
;
msg_Dbg
(
p_enc
,
"samplerate:%dHz channels:%d bits/sample:%d"
,
p_enc
->
fmt_out
.
audio
.
i_rate
,
p_enc
->
fmt_out
.
audio
.
i_channels
,
p_enc
->
fmt_out
.
audio
.
i_bitspersample
);
...
...
Write
Preview
Supports
Markdown
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