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
98e8a9e2
Commit
98e8a9e2
authored
Nov 27, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: Print a debug message if the frame parameters mismatch the context
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
57e58121
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
ffmpeg.c
ffmpeg.c
+14
-0
No files found.
ffmpeg.c
View file @
98e8a9e2
...
...
@@ -1948,6 +1948,20 @@ static int decode_video(InputStream *ist, AVPacket *pkt, int *got_output)
if
(
*
got_output
||
ret
<
0
||
pkt
->
size
)
decode_error_stat
[
ret
<
0
]
++
;
if
(
*
got_output
&&
ret
>=
0
)
{
if
(
ist
->
dec_ctx
->
width
!=
decoded_frame
->
width
||
ist
->
dec_ctx
->
height
!=
decoded_frame
->
height
||
ist
->
dec_ctx
->
pix_fmt
!=
decoded_frame
->
format
)
{
av_log
(
NULL
,
AV_LOG_DEBUG
,
"Frame parameters mismatch context %d,%d,%d != %d,%d,%d
\n
"
,
decoded_frame
->
width
,
decoded_frame
->
height
,
decoded_frame
->
format
,
ist
->
dec_ctx
->
width
,
ist
->
dec_ctx
->
height
,
ist
->
dec_ctx
->
pix_fmt
);
}
}
if
(
!*
got_output
||
ret
<
0
)
{
if
(
!
pkt
->
size
)
{
for
(
i
=
0
;
i
<
ist
->
nb_filters
;
i
++
)
...
...
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