diff utils.c @ 2764:2b37bcabe608 libavcodec

spelling fixes patch by Peter Robinson pbrobinson @ at @ gmail . dot . com and myself
author diego
date Fri, 17 Jun 2005 15:02:53 +0000
parents d8874c8749ec
children f191093dc8fe
line wrap: on
line diff
--- a/utils.c	Fri Jun 17 08:24:35 2005 +0000
+++ b/utils.c	Fri Jun 17 15:02:53 2005 +0000
@@ -583,7 +583,7 @@
     if((avctx->codec->capabilities & CODEC_CAP_DELAY) || pict){
         int ret = avctx->codec->encode(avctx, buf, buf_size, (void *)pict);
         avctx->frame_number++;
-        emms_c(); //needed to avoid a emms_c() call before every return;
+        emms_c(); //needed to avoid an emms_c() call before every return;
     
         return ret;
     }else
@@ -621,7 +621,7 @@
         ret = avctx->codec->decode(avctx, picture, got_picture_ptr, 
                                 buf, buf_size);
 
-        emms_c(); //needed to avoid a emms_c() call before every return;
+        emms_c(); //needed to avoid an emms_c() call before every return;
     
         if (*got_picture_ptr)                           
             avctx->frame_number++;