]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/parser.c
cavsdec: switch to av_assert
[ffmpeg] / libavcodec / parser.c
index 58be89f349f44eac783b925a35a301b9b3cb45b4..9d1d2aba94357faa36398dac6504008ba2540d21 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  because mpeg-ts doesnt send complete PES packets
+            //check is disabled because mpeg-ts doesn't 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];