Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
48340bbb
Commit
48340bbb
authored
Dec 30, 2012
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
aiffenc: metadata support
Signed-off-by:
Paul B Mahol
<
onemda@gmail.com
>
parent
0c894393
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
2 deletions
+23
-2
aiffenc.c
libavformat/aiffenc.c
+21
-0
aiff
tests/ref/lavf/aiff
+2
-2
No files found.
libavformat/aiffenc.c
View file @
48340bbb
...
@@ -33,6 +33,22 @@ typedef struct {
...
@@ -33,6 +33,22 @@ typedef struct {
int64_t
ssnd
;
int64_t
ssnd
;
}
AIFFOutputContext
;
}
AIFFOutputContext
;
static
void
put_meta
(
AVFormatContext
*
s
,
const
char
*
key
,
uint32_t
id
)
{
AVDictionaryEntry
*
tag
;
AVIOContext
*
pb
=
s
->
pb
;
if
(
tag
=
av_dict_get
(
s
->
metadata
,
key
,
NULL
,
0
))
{
int
size
=
strlen
(
tag
->
value
);
avio_wl32
(
pb
,
id
);
avio_wb32
(
pb
,
FFALIGN
(
size
,
2
));
avio_write
(
pb
,
tag
->
value
,
size
);
if
(
size
&
1
)
avio_w8
(
pb
,
0
);
}
}
static
int
aiff_write_header
(
AVFormatContext
*
s
)
static
int
aiff_write_header
(
AVFormatContext
*
s
)
{
{
AIFFOutputContext
*
aiff
=
s
->
priv_data
;
AIFFOutputContext
*
aiff
=
s
->
priv_data
;
...
@@ -70,6 +86,11 @@ static int aiff_write_header(AVFormatContext *s)
...
@@ -70,6 +86,11 @@ static int aiff_write_header(AVFormatContext *s)
ff_mov_write_chan
(
pb
,
enc
->
channel_layout
);
ff_mov_write_chan
(
pb
,
enc
->
channel_layout
);
}
}
put_meta
(
s
,
"title"
,
MKTAG
(
'N'
,
'A'
,
'M'
,
'E'
));
put_meta
(
s
,
"author"
,
MKTAG
(
'A'
,
'U'
,
'T'
,
'H'
));
put_meta
(
s
,
"copyright"
,
MKTAG
(
'('
,
'c'
,
')'
,
' '
));
put_meta
(
s
,
"comment"
,
MKTAG
(
'A'
,
'N'
,
'N'
,
'O'
));
/* Common chunk */
/* Common chunk */
ffio_wfourcc
(
pb
,
"COMM"
);
ffio_wfourcc
(
pb
,
"COMM"
);
avio_wb32
(
pb
,
aifc
?
24
:
18
);
/* size */
avio_wb32
(
pb
,
aifc
?
24
:
18
);
/* size */
...
...
tests/ref/lavf/aiff
View file @
48340bbb
379908755146d4ead062abe9c3b5c582
*./tests/data/lavf/lavf.aif
b0d42747a6fc99a5cd1ab0e861671f3a
*./tests/data/lavf/lavf.aif
901
66
./tests/data/lavf/lavf.aif
901
82
./tests/data/lavf/lavf.aif
./tests/data/lavf/lavf.aif CRC=0xf1ae5536
./tests/data/lavf/lavf.aif CRC=0xf1ae5536
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