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
a5d4e94a
Commit
a5d4e94a
authored
Nov 19, 2012
by
Carl Eugen Hoyos
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support iLBC in caf.
parent
ba353436
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
0 deletions
+2
-0
caf.c
libavformat/caf.c
+1
-0
cafenc.c
libavformat/cafenc.c
+1
-0
No files found.
libavformat/caf.c
View file @
a5d4e94a
...
@@ -44,6 +44,7 @@ const AVCodecTag ff_codec_caf_tags[] = {
...
@@ -44,6 +44,7 @@ const AVCodecTag ff_codec_caf_tags[] = {
/*{ AV_CODEC_ID_DVAUDIO, MKTAG('d','v','c','a') },*/
/*{ AV_CODEC_ID_DVAUDIO, MKTAG('d','v','c','a') },*/
{
AV_CODEC_ID_GSM
,
MKTAG
(
'a'
,
'g'
,
's'
,
'm'
)
},
{
AV_CODEC_ID_GSM
,
MKTAG
(
'a'
,
'g'
,
's'
,
'm'
)
},
{
AV_CODEC_ID_GSM_MS
,
MKTAG
(
'm'
,
's'
,
0
,
'1'
)
},
{
AV_CODEC_ID_GSM_MS
,
MKTAG
(
'm'
,
's'
,
0
,
'1'
)
},
{
AV_CODEC_ID_ILBC
,
MKTAG
(
'i'
,
'l'
,
'b'
,
'c'
)
},
{
AV_CODEC_ID_MACE3
,
MKTAG
(
'M'
,
'A'
,
'C'
,
'3'
)
},
{
AV_CODEC_ID_MACE3
,
MKTAG
(
'M'
,
'A'
,
'C'
,
'3'
)
},
{
AV_CODEC_ID_MACE6
,
MKTAG
(
'M'
,
'A'
,
'C'
,
'6'
)
},
{
AV_CODEC_ID_MACE6
,
MKTAG
(
'M'
,
'A'
,
'C'
,
'6'
)
},
{
AV_CODEC_ID_MP1
,
MKTAG
(
'.'
,
'm'
,
'p'
,
'1'
)
},
{
AV_CODEC_ID_MP1
,
MKTAG
(
'.'
,
'm'
,
'p'
,
'1'
)
},
...
...
libavformat/cafenc.c
View file @
a5d4e94a
...
@@ -75,6 +75,7 @@ static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels) {
...
@@ -75,6 +75,7 @@ static uint32_t samples_per_packet(enum AVCodecID codec_id, int channels) {
return
64
;
return
64
;
case
AV_CODEC_ID_AMR_NB
:
case
AV_CODEC_ID_AMR_NB
:
case
AV_CODEC_ID_GSM
:
case
AV_CODEC_ID_GSM
:
case
AV_CODEC_ID_ILBC
:
case
AV_CODEC_ID_QCELP
:
case
AV_CODEC_ID_QCELP
:
return
160
;
return
160
;
case
AV_CODEC_ID_GSM_MS
:
case
AV_CODEC_ID_GSM_MS
:
...
...
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