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
78093cf8
Commit
78093cf8
authored
Nov 23, 2014
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print a warning if vp6 is muxed into flv: The output is flipped.
Fixes ticket #4132.
parent
600e38f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
flvenc.c
libavformat/flvenc.c
+3
-0
No files found.
libavformat/flvenc.c
View file @
78093cf8
...
...
@@ -355,6 +355,9 @@ static int flv_write_header(AVFormatContext *s)
"use vstrict=-1 / -strict -1 to use it anyway.
\n
"
);
return
AVERROR
(
EINVAL
);
}
}
else
if
(
enc
->
codec_id
==
AV_CODEC_ID_VP6
)
{
av_log
(
s
,
AV_LOG_WARNING
,
"Muxing VP6 in flv will produce flipped video on playback.
\n
"
);
}
break
;
case
AVMEDIA_TYPE_AUDIO
:
...
...
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