diff options
author | Jai Menon | 2010-05-27 04:25:50 +0000 |
---|---|---|
committer | Jai Menon | 2010-05-27 04:25:50 +0000 |
commit | 3491a9b266a96dd3243ad8daf059af25049d39fa (patch) | |
tree | 080b8905f0ab5bfc871c053bf6c695e364bc9be0 /libavcodec/utils.c | |
parent | 71dab7be9124f93e0c811b40ac209cc010a6b3e5 (diff) |
Cosmetics : Fix typo.
Originally committed as revision 23345 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/utils.c')
-rw-r--r-- | libavcodec/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/utils.c b/libavcodec/utils.c index 54db3daec0..60f52ac366 100644 --- a/libavcodec/utils.c +++ b/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 |