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
2fb65d3e
Commit
2fb65d3e
authored
Jan 18, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lavc: when w/h changes in reget buffer, print the values.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
e191f1f4
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
utils.c
libavcodec/utils.c
+2
-1
No files found.
libavcodec/utils.c
View file @
2fb65d3e
...
...
@@ -603,7 +603,8 @@ int avcodec_default_reget_buffer(AVCodecContext *s, AVFrame *pic){
assert
(
s
->
codec_type
==
AVMEDIA_TYPE_VIDEO
);
if
(
pic
->
data
[
0
]
&&
(
pic
->
width
!=
s
->
width
||
pic
->
height
!=
s
->
height
||
pic
->
format
!=
s
->
pix_fmt
))
{
av_log
(
s
,
AV_LOG_WARNING
,
"Width/height/fmt changing with reget buffer
\n
"
);
av_log
(
s
,
AV_LOG_WARNING
,
"Picture changed from size:%dx%d fmt:%s to size:%dx%d fmt:%s in reget buffer()
\n
"
,
pic
->
width
,
pic
->
height
,
av_get_pix_fmt_name
(
pic
->
format
),
s
->
width
,
s
->
height
,
av_get_pix_fmt_name
(
s
->
pix_fmt
));
s
->
release_buffer
(
s
,
pic
);
}
...
...
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