summaryrefslogtreecommitdiff
path: root/libavcodec/parser.c
diff options
context:
space:
mode:
authorJai Menon <jmenon86@gmail.com>2010-04-21 17:51:37 +0000
committerJai Menon <jmenon86@gmail.com>2010-04-21 17:51:37 +0000
commit6858ce2ffc4c57a279b22ab6d8eb56ac3884796e (patch)
treea93a416e6b86b67bc782f5f0ecd4c309a7ce9221 /libavcodec/parser.c
parent805a83d506ff28aa3690b85851519fcb52b06169 (diff)
Fix typo.
Originally committed as revision 22936 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/parser.c')
-rw-r--r--libavcodec/parser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/parser.c b/libavcodec/parser.c
index 8f5c77afa7..864b5f2d2a 100644
--- a/libavcodec/parser.c
+++ b/libavcodec/parser.c
@@ -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];