1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

lavf/mpegtsenc: fix missing word in error message.

This commit is contained in:
Clément Bœsch
2013-01-03 00:04:41 +01:00
parent f263426eed
commit 43adc62e70

View File

@@ -1081,7 +1081,7 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
} }
if (ts_st->first_pts_check && pts == AV_NOPTS_VALUE) { if (ts_st->first_pts_check && pts == AV_NOPTS_VALUE) {
av_log(s, AV_LOG_ERROR, "first pts value must set\n"); av_log(s, AV_LOG_ERROR, "first pts value must be set\n");
return AVERROR_INVALIDDATA; return AVERROR_INVALIDDATA;
} }
ts_st->first_pts_check = 0; ts_st->first_pts_check = 0;