From 1beb670a2d63da271cb259c12dffb85903a14ed2 Mon Sep 17 00:00:00 2001 From: Benoit Fouet Date: Thu, 17 Apr 2008 07:38:30 +0000 Subject: [PATCH] fix a typo Originally committed as revision 12879 to svn://svn.ffmpeg.org/ffmpeg/trunk --- libavcodec/avcodec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/avcodec.h b/libavcodec/avcodec.h index fceda82cf3..00c35c0b63 100644 --- a/libavcodec/avcodec.h +++ b/libavcodec/avcodec.h @@ -2239,7 +2239,7 @@ typedef struct AVCodec { */ void (*flush)(AVCodecContext *); const AVRational *supported_framerates; ///< array of supported framerates, or NULL if any, array is terminated by {0,0} - const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminanted by -1 + const enum PixelFormat *pix_fmts; ///< array of supported pixel formats, or NULL if unknown, array is terminated by -1 const char *long_name; ///< descriptive name for the codec, meant to be more human readable than \p name } AVCodec;