mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-29 10:52:20 +00:00
mpeg4video: use ff_dlog instead of av_log under debug&FF_DEBUG_PTS.
This fixes compilation with FF_API_UNUSED_MEMBERS=0.
This commit is contained in:
parent
c5308eea29
commit
9468207e1c
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user