Commit 94bb456b authored by diego's avatar diego

Fix UNKOWN --> UNKNOWN typo


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@8276 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 7fdcedfe
......@@ -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 @@ static int put_au_header(ByteIOContext *pb, AVCodecContext *enc)
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);
......
......@@ -29,7 +29,7 @@
#include "bswap.h"
/* if we don't know the size in advance */
#define AU_UNKOWN_SIZE ((uint32_t)(~0))
#define AU_UNKNOWN_SIZE ((uint32_t)(~0))
static int sol_probe(AVProbeData *p)
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment