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
4f5454d2
Commit
4f5454d2
authored
Aug 30, 2013
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/mpegvideo: reduce log level for messages about allocating frames.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
b05cd1ea
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
mpegvideo.c
libavcodec/mpegvideo.c
+2
-2
No files found.
libavcodec/mpegvideo.c
View file @
4f5454d2
...
@@ -1594,13 +1594,13 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
...
@@ -1594,13 +1594,13 @@ int ff_MPV_frame_start(MpegEncContext *s, AVCodecContext *avctx)
av_pix_fmt_get_chroma_sub_sample
(
s
->
avctx
->
pix_fmt
,
av_pix_fmt_get_chroma_sub_sample
(
s
->
avctx
->
pix_fmt
,
&
h_chroma_shift
,
&
v_chroma_shift
);
&
h_chroma_shift
,
&
v_chroma_shift
);
if
(
s
->
pict_type
==
AV_PICTURE_TYPE_B
&&
s
->
next_picture_ptr
&&
s
->
next_picture_ptr
->
f
.
data
[
0
])
if
(
s
->
pict_type
==
AV_PICTURE_TYPE_B
&&
s
->
next_picture_ptr
&&
s
->
next_picture_ptr
->
f
.
data
[
0
])
av_log
(
avctx
,
AV_LOG_
INFO
,
av_log
(
avctx
,
AV_LOG_
DEBUG
,
"allocating dummy last picture for B frame
\n
"
);
"allocating dummy last picture for B frame
\n
"
);
else
if
(
s
->
pict_type
!=
AV_PICTURE_TYPE_I
)
else
if
(
s
->
pict_type
!=
AV_PICTURE_TYPE_I
)
av_log
(
avctx
,
AV_LOG_ERROR
,
av_log
(
avctx
,
AV_LOG_ERROR
,
"warning: first frame is no keyframe
\n
"
);
"warning: first frame is no keyframe
\n
"
);
else
if
(
s
->
picture_structure
!=
PICT_FRAME
)
else
if
(
s
->
picture_structure
!=
PICT_FRAME
)
av_log
(
avctx
,
AV_LOG_
INFO
,
av_log
(
avctx
,
AV_LOG_
DEBUG
,
"allocate dummy last picture for field based first keyframe
\n
"
);
"allocate dummy last picture for field based first keyframe
\n
"
);
/* Allocate a dummy frame */
/* Allocate a dummy frame */
...
...
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