Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Steve Lhomme
VLC
Commits
5fe7435e
Commit
5fe7435e
authored
Oct 18, 2009
by
Rafaël Carré
Browse files
avcodec encoder: sets last-metadata-block for FLAC streams
Closes #805
parent
22bfd4d8
Changes
1
Hide whitespace changes
Inline
Side-by-side
modules/codec/avcodec/encoder.c
View file @
5fe7435e
...
...
@@ -676,11 +676,11 @@ int OpenEncoder( vlc_object_t *p_this )
if
(
p_enc
->
fmt_out
.
p_extra
)
{
uint8_t
*
p
=
p_enc
->
fmt_out
.
p_extra
;
p
[
0
]
=
0x66
;
p
[
1
]
=
0x4C
;
p
[
2
]
=
0x61
;
p
[
3
]
=
0x43
;
p
[
4
]
=
0x
0
0
;
p
[
0
]
=
0x66
;
/* f */
p
[
1
]
=
0x4C
;
/* L */
p
[
2
]
=
0x61
;
/* a */
p
[
3
]
=
0x43
;
/* C */
p
[
4
]
=
0x
8
0
;
/* streaminfo block, last block before audio */
p
[
5
]
=
(
p_context
->
extradata_size
>>
16
)
&
0xff
;
p
[
6
]
=
(
p_context
->
extradata_size
>>
8
)
&
0xff
;
p
[
7
]
=
(
p_context
->
extradata_size
)
&
0xff
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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