mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/rmdec: english typos
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
2e7a1fdd6d
commit
d04ec6ffc5
@ -681,7 +681,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
|
|||||||
pic_num = avio_r8(pb); len--;
|
pic_num = avio_r8(pb); len--;
|
||||||
}
|
}
|
||||||
if(len<0) {
|
if(len<0) {
|
||||||
av_log(s, AV_LOG_ERROR, "Insuffient data\n");
|
av_log(s, AV_LOG_ERROR, "Insufficient data\n");
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
rm->remaining_len = len;
|
rm->remaining_len = len;
|
||||||
@ -691,7 +691,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
|
|||||||
*timestamp = pos;
|
*timestamp = pos;
|
||||||
}
|
}
|
||||||
if(rm->remaining_len < len) {
|
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;
|
return -1;
|
||||||
}
|
}
|
||||||
rm->remaining_len -= len;
|
rm->remaining_len -= len;
|
||||||
|
Loading…
Reference in New Issue
Block a user