Mercurial > libavformat.hg
changeset 1885:3ffb9763dfc2 libavformat
Fix UNKOWN --> UNKNOWN typo
author | diego |
---|---|
date | Wed, 07 Mar 2007 00:49:49 +0000 |
parents | 1792b6c5387b |
children | cf8db4fe9efa |
files | au.c sol.c |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/au.c Wed Mar 07 00:29:51 2007 +0000 +++ b/au.c Wed Mar 07 00:49:49 2007 +0000 @@ -32,7 +32,7 @@ #include "riff.h" /* if we don't know the size in advance */ -#define AU_UNKOWN_SIZE ((uint32_t)(~0)) +#define AU_UNKNOWN_SIZE ((uint32_t)(~0)) /* The ffmpeg codecs we support, and the IDs they have in the file */ static const AVCodecTag codec_au_tags[] = { @@ -50,7 +50,7 @@ return -1; put_tag(pb, ".snd"); /* magic number */ put_be32(pb, 24); /* header size */ - put_be32(pb, AU_UNKOWN_SIZE); /* data size */ + put_be32(pb, AU_UNKNOWN_SIZE); /* data size */ put_be32(pb, (uint32_t)enc->codec_tag); /* codec ID */ put_be32(pb, enc->sample_rate); put_be32(pb, (uint32_t)enc->channels);