Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
9ff85412
Commit
9ff85412
authored
Mar 07, 2007
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix UNKOWN --> UNKNOWN typo
Originally committed as revision 8276 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
fd9a71ac
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
au.c
libavformat/au.c
+2
-2
sol.c
libavformat/sol.c
+1
-1
No files found.
libavformat/au.c
View file @
9ff85412
...
...
@@ -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_UNK
N
OWN_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_UNK
N
OWN_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
);
...
...
libavformat/sol.c
View file @
9ff85412
...
...
@@ -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_UNK
N
OWN_SIZE ((uint32_t)(~0))
static
int
sol_probe
(
AVProbeData
*
p
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment