Replace dprintf with av_dlog
dprintf clashes with POSIX.1-2008
This commit is contained in:
@@ -55,7 +55,7 @@ static int dvbsub_parse(AVCodecParserContext *s,
|
||||
uint8_t *p, *p_end;
|
||||
int len, buf_pos = 0;
|
||||
|
||||
dprintf(avctx, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n",
|
||||
av_dlog(avctx, "DVB parse packet pts=%"PRIx64", lpts=%"PRIx64", cpts=%"PRIx64":\n",
|
||||
s->pts, s->last_pts, s->cur_frame_pts[s->cur_frame_start_index]);
|
||||
|
||||
#ifdef DEBUG_PACKET_CONTENTS
|
||||
@@ -82,7 +82,7 @@ static int dvbsub_parse(AVCodecParserContext *s,
|
||||
{
|
||||
if (pc->packet_index != pc->packet_start)
|
||||
{
|
||||
dprintf(avctx, "Discarding %d bytes\n",
|
||||
av_dlog(avctx, "Discarding %d bytes\n",
|
||||
pc->packet_index - pc->packet_start);
|
||||
}
|
||||
|
||||
@@ -90,7 +90,7 @@ static int dvbsub_parse(AVCodecParserContext *s,
|
||||
pc->packet_index = 0;
|
||||
|
||||
if (buf_size < 2 || buf[0] != 0x20 || buf[1] != 0x00) {
|
||||
dprintf(avctx, "Bad packet header\n");
|
||||
av_dlog(avctx, "Bad packet header\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -147,7 +147,7 @@ static int dvbsub_parse(AVCodecParserContext *s,
|
||||
} else if (*p == 0xff) {
|
||||
if (p + 1 < p_end)
|
||||
{
|
||||
dprintf(avctx, "Junk at end of packet\n");
|
||||
av_dlog(avctx, "Junk at end of packet\n");
|
||||
}
|
||||
pc->packet_index = p - pc->packet_buf;
|
||||
pc->in_packet = 0;
|
||||
|
Reference in New Issue
Block a user