Mercurial > libavformat.hg
changeset 3525:3fb9221edfe9 libavformat
give context to av_log
author | bcoudurier |
---|---|
date | Fri, 27 Jun 2008 19:00:04 +0000 |
parents | 06579d9dbc72 |
children | ae0885c44048 |
files | utils.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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; }