[FFmpeg-cvslog] lavf/mpegtsenc: fix missing word in error message.

Clément Bœsch git at videolan.org
Thu Jan 3 00:16:54 CET 2013


ffmpeg | branch: master | Clément Bœsch <ubitux at gmail.com> | Thu Jan  3 00:04:41 2013 +0100| [43adc62e7022f912d48e08f8b94692f71d30826e] | committer: Clément Bœsch

lavf/mpegtsenc: fix missing word in error message.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=43adc62e7022f912d48e08f8b94692f71d30826e
---

 libavformat/mpegtsenc.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/mpegtsenc.c b/libavformat/mpegtsenc.c
index 1b66bab..56b9d85 100644
--- a/libavformat/mpegtsenc.c
+++ b/libavformat/mpegtsenc.c
@@ -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;



More information about the ffmpeg-cvslog mailing list