Browse Source

Cosmetics : Fix typo.

Originally committed as revision 23345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Jai Menon 15 years ago
parent
commit
3491a9b266
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libavcodec/utils.c

+ 1 - 1
libavcodec/utils.c

@@ -323,7 +323,7 @@ int avcodec_default_get_buffer(AVCodecContext *s, AVFrame *pic){
             if(buf->base[i]==NULL) return -1;
             memset(buf->base[i], 128, size[i]);
 
-            // no edge if EDEG EMU or not planar YUV
+            // no edge if EDGE EMU or not planar YUV
             if((s->flags&CODEC_FLAG_EMU_EDGE) || !size[2])
                 buf->data[i] = buf->base[i];
             else