Mercurial > libavformat.hg
diff utils.c @ 3525:3fb9221edfe9 libavformat
give context to av_log
| author | bcoudurier |
|---|---|
| date | Fri, 27 Jun 2008 19:00:04 +0000 |
| parents | 0c989007b4f0 |
| children | 231f0db9672f |
line wrap: on
line diff
--- a/utils.c Fri Jun 27 11:55:25 2008 +0000 +++ b/utils.c Fri Jun 27 19:00:04 2008 +0000 @@ -2473,11 +2473,11 @@ } if(st->cur_dts && st->cur_dts != AV_NOPTS_VALUE && st->cur_dts >= pkt->dts){ - av_log(NULL, AV_LOG_ERROR, "error, non monotone timestamps %"PRId64" >= %"PRId64"\n", st->cur_dts, pkt->dts); + av_log(st->codec, AV_LOG_ERROR, "error, non monotone timestamps %"PRId64" >= %"PRId64"\n", st->cur_dts, pkt->dts); return -1; } if(pkt->dts != AV_NOPTS_VALUE && pkt->pts != AV_NOPTS_VALUE && pkt->pts < pkt->dts){ - av_log(NULL, AV_LOG_ERROR, "error, pts < dts\n"); + av_log(st->codec, AV_LOG_ERROR, "error, pts < dts\n"); return -1; }
