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
cb0add3c
Commit
cb0add3c
authored
Oct 20, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavf/flacenc: disallow creation of invalid files with -c copy
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
2d11ee4b
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
flacenc.c
libavformat/flacenc.c
+9
-0
No files found.
libavformat/flacenc.c
View file @
cb0add3c
...
@@ -69,6 +69,15 @@ static int flac_write_header(struct AVFormatContext *s)
...
@@ -69,6 +69,15 @@ static int flac_write_header(struct AVFormatContext *s)
int
ret
;
int
ret
;
AVCodecContext
*
codec
=
s
->
streams
[
0
]
->
codec
;
AVCodecContext
*
codec
=
s
->
streams
[
0
]
->
codec
;
if
(
s
->
nb_streams
>
1
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"only one stream is supported
\n
"
);
return
AVERROR
(
EINVAL
);
}
if
(
codec
->
codec_id
!=
AV_CODEC_ID_FLAC
)
{
av_log
(
s
,
AV_LOG_ERROR
,
"unsupported codec
\n
"
);
return
AVERROR
(
EINVAL
);
}
ret
=
ff_flac_write_header
(
s
->
pb
,
codec
,
0
);
ret
=
ff_flac_write_header
(
s
->
pb
,
codec
,
0
);
if
(
ret
)
if
(
ret
)
return
ret
;
return
ret
;
...
...
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