summaryrefslogtreecommitdiff
path: root/libavcodec/avcodec.h
diff options
context:
space:
mode:
authorBenoit Fouet <benoit.fouet@free.fr>2008-04-17 07:38:30 +0000
committerBenoit Fouet <benoit.fouet@free.fr>2008-04-17 07:38:30 +0000
commit1beb670a2d63da271cb259c12dffb85903a14ed2 (patch)
treefd5b7b8ca4d880fc9dedd09f6c807b3fc3885e9c /libavcodec/avcodec.h
parent716e31ea1a273065ab10bdd65e22a147da36a0ca (diff)
fix a typo
Originally committed as revision 12879 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavcodec/avcodec.h')
-rw-r--r--libavcodec/avcodec.h2
1 files changed, 1 insertions, 1 deletions
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;