Skip to content

Commit

Permalink
lavf/mpegtsenc: fix missing word in error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubitux committed Jan 2, 2013
1 parent f263426 commit 43adc62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libavformat/mpegtsenc.c
Original file line number Diff line number Diff line change
Expand Up @@ -1081,7 +1081,7 @@ static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
}

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;
}
ts_st->first_pts_check = 0;
Expand Down

0 comments on commit 43adc62

Please sign in to comment.