Browse Source

avformat/rmdec: english typos

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
tags/n2.1
Michael Niedermayer 11 years ago
parent
commit
d04ec6ffc5
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      libavformat/rmdec.c

+ 2
- 2
libavformat/rmdec.c View File

@@ -681,7 +681,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
pic_num = avio_r8(pb); len--;
}
if(len<0) {
av_log(s, AV_LOG_ERROR, "Insuffient data\n");
av_log(s, AV_LOG_ERROR, "Insufficient data\n");
return -1;
}
rm->remaining_len = len;
@@ -691,7 +691,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
*timestamp = pos;
}
if(rm->remaining_len < len) {
av_log(s, AV_LOG_ERROR, "Insuffient remaining len\n");
av_log(s, AV_LOG_ERROR, "Insufficient remaining len\n");
return -1;
}
rm->remaining_len -= len;


Loading…
Cancel
Save