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
9468207e
Commit
9468207e
authored
Aug 18, 2015
by
Ronald S. Bultje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4video: use ff_dlog instead of av_log under debug&FF_DEBUG_PTS.
This fixes compilation with FF_API_UNUSED_MEMBERS=0.
parent
c5308eea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
3 deletions
+2
-3
mpeg4videodec.c
libavcodec/mpeg4videodec.c
+2
-3
No files found.
libavcodec/mpeg4videodec.c
View file @
9468207e
...
...
@@ -22,6 +22,7 @@
#define UNCHECKED_BITSTREAM_READER 1
#include "libavutil/internal.h"
#include "libavutil/opt.h"
#include "error_resilience.h"
#include "idctdsp.h"
...
...
@@ -2320,9 +2321,7 @@ static int decode_vop_header(Mpeg4DecContext *ctx, GetBitContext *gb)
pts
=
ROUNDED_DIV
(
s
->
time
,
s
->
avctx
->
framerate
.
den
);
else
pts
=
AV_NOPTS_VALUE
;
if
(
s
->
avctx
->
debug
&
FF_DEBUG_PTS
)
av_log
(
s
->
avctx
,
AV_LOG_DEBUG
,
"MPEG4 PTS: %"
PRId64
"
\n
"
,
pts
);
ff_dlog
(
s
->
avctx
,
"MPEG4 PTS: %"
PRId64
"
\n
"
,
pts
);
check_marker
(
gb
,
"before vop_coded"
);
...
...
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