You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
lavf/mpegtsenc: fix missing word in error message.
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user