Browse Source

nutenc: verbosely report unsupported negative pts

Additionally use the correct error number.
tags/n1.1
Luca Barbato 12 years ago
parent
commit
07585ffa62
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      libavformat/nutenc.c

+ 6
- 2
libavformat/nutenc.c View File

@@ -767,8 +767,12 @@ static int nut_write_packet(AVFormatContext *s, AVPacket *pkt)
int store_sp = 0;
int ret;

if (pkt->pts < 0)
return -1;
if (pkt->pts < 0) {
av_log(s, AV_LOG_ERROR,
"Negative pts not supported stream %d, pts %"PRId64"\n",
pkt->stream_index, pkt->pts);
return AVERROR_INVALIDDATA;
}

if (1LL << (20 + 3 * nut->header_count) <= avio_tell(bc))
write_headers(s, bc);


Loading…
Cancel
Save