Browse code

avformat/rmdec: english typos

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>

Michael Niedermayer authored on 2013/10/26 02:14:36
Showing 1 changed files
... ...
@@ -681,7 +681,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
681 681
         pic_num = avio_r8(pb); len--;
682 682
     }
683 683
     if(len<0) {
684
-        av_log(s, AV_LOG_ERROR, "Insuffient data\n");
684
+        av_log(s, AV_LOG_ERROR, "Insufficient data\n");
685 685
         return -1;
686 686
     }
687 687
     rm->remaining_len = len;
... ...
@@ -691,7 +691,7 @@ static int rm_assemble_video_frame(AVFormatContext *s, AVIOContext *pb,
691 691
             *timestamp = pos;
692 692
         }
693 693
         if(rm->remaining_len < len) {
694
-            av_log(s, AV_LOG_ERROR, "Insuffient remaining len\n");
694
+            av_log(s, AV_LOG_ERROR, "Insufficient remaining len\n");
695 695
             return -1;
696 696
         }
697 697
         rm->remaining_len -= len;