]> git.sesse.net Git - ffmpeg/commitdiff
Fix typo.
authorJai Menon <jmenon86@gmail.com>
Wed, 21 Apr 2010 17:51:37 +0000 (17:51 +0000)
committerJai Menon <jmenon86@gmail.com>
Wed, 21 Apr 2010 17:51:37 +0000 (17:51 +0000)
Originally committed as revision 22936 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavcodec/parser.c

index 8f5c77afa7b25f1671f9c43bf2f685ceb4955043..864b5f2d2ae1e0cd10c030cc2727785a438b18b4 100644 (file)
@@ -91,7 +91,7 @@ void ff_fetch_timestamp(AVCodecParserContext *s, int off, int remove){
         if (   s->cur_offset + off >= s->cur_frame_offset[i]
             && (s->frame_offset < s->cur_frame_offset[i] ||
               (!s->frame_offset && !s->next_frame_offset)) // first field/frame
-            //check is disabled  becausue mpeg-ts doesnt send complete PES packets
+            //check is disabled  because mpeg-ts doesnt send complete PES packets
             && /*s->next_frame_offset + off <*/  s->cur_frame_end[i]){
             s->dts= s->cur_frame_dts[i];
             s->pts= s->cur_frame_pts[i];