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
1232a164
Commit
1232a164
authored
May 16, 2013
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apple Intermediate Codec decoder
parent
40bbbce7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
493 additions
and
1 deletion
+493
-1
Changelog
Changelog
+1
-0
configure
configure
+1
-0
general.texi
doc/general.texi
+1
-0
Makefile
libavcodec/Makefile
+1
-0
aic.c
libavcodec/aic.c
+477
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
codec_desc.c
libavcodec/codec_desc.c
+7
-0
version.h
libavcodec/version.h
+1
-1
isom.c
libavformat/isom.c
+2
-0
No files found.
Changelog
View file @
1232a164
...
...
@@ -18,6 +18,7 @@ version 10:
transcoding audio
- Matroska muxer can now put the index at the beginning of the file.
- avconv -deinterlace option removed, the yadif filter should be used instead
- Apple Intermediate Codec decoder
version 9:
...
...
configure
View file @
1232a164
...
...
@@ -1526,6 +1526,7 @@ aac_latm_decoder_select="aac_decoder aac_latm_parser"
ac3_decoder_select
=
"mdct ac3dsp ac3_parser dsputil"
ac3_encoder_select
=
"mdct ac3dsp dsputil"
ac3_fixed_encoder_select
=
"mdct ac3dsp dsputil"
aic_decoder_select
=
"dsputil golomb"
alac_encoder_select
=
"lpc"
als_decoder_select
=
"dsputil"
amrnb_decoder_select
=
"lsp"
...
...
doc/general.texi
View file @
1232a164
...
...
@@ -430,6 +430,7 @@ following image formats are supported:
@item AMV Video @tab @tab X
@tab Used in Chinese MP3 players.
@item ANSI/ASCII art @tab @tab X
@item Apple Intermediate Codec @tab @tab X
@item Apple MJPEG-B @tab @tab X
@item Apple ProRes @tab X @tab X
@item Apple QuickDraw @tab @tab X
...
...
libavcodec/Makefile
View file @
1232a164
...
...
@@ -83,6 +83,7 @@ OBJS-$(CONFIG_AC3_DECODER) += ac3dec.o ac3dec_data.o ac3.o kbdwin.o
OBJS-$(CONFIG_AC3_ENCODER)
+=
ac3enc_float.o
ac3enc.o
ac3tab.o
\
ac3.o
kbdwin.o
OBJS-$(CONFIG_AC3_FIXED_ENCODER)
+=
ac3enc_fixed.o
ac3enc.o
ac3tab.o
ac3.o
OBJS-$(CONFIG_AIC_DECODER)
+=
aic.o
OBJS-$(CONFIG_ALAC_DECODER)
+=
alac.o
alac_data.o
OBJS-$(CONFIG_ALAC_ENCODER)
+=
alacenc.o
alac_data.o
OBJS-$(CONFIG_ALS_DECODER)
+=
alsdec.o
bgmc.o
mpeg4audio.o
...
...
libavcodec/aic.c
0 → 100644
View file @
1232a164
This diff is collapsed.
Click to expand it.
libavcodec/allcodecs.c
View file @
1232a164
...
...
@@ -96,6 +96,7 @@ void avcodec_register_all(void)
REGISTER_ENCODER
(
A64MULTI
,
a64multi
);
REGISTER_ENCODER
(
A64MULTI5
,
a64multi5
);
REGISTER_DECODER
(
AASC
,
aasc
);
REGISTER_DECODER
(
AIC
,
aic
);
REGISTER_DECODER
(
AMV
,
amv
);
REGISTER_DECODER
(
ANM
,
anm
);
REGISTER_DECODER
(
ANSI
,
ansi
);
...
...
libavcodec/avcodec.h
View file @
1232a164
...
...
@@ -267,6 +267,7 @@ enum AVCodecID {
AV_CODEC_ID_CLLC
,
AV_CODEC_ID_MSS2
,
AV_CODEC_ID_VP9
,
AV_CODEC_ID_AIC
,
/* various PCM "codecs" */
AV_CODEC_ID_FIRST_AUDIO
=
0x10000
,
///< A dummy id pointing at the start of audio codecs
...
...
libavcodec/codec_desc.c
View file @
1232a164
...
...
@@ -1207,6 +1207,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"MS Windows Media Video V9 Screen"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSY
,
},
{
.
id
=
AV_CODEC_ID_AIC
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"aic"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Apple Intermediate Codec"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSY
,
},
/* various PCM "codecs" */
{
...
...
libavcodec/version.h
View file @
1232a164
...
...
@@ -27,7 +27,7 @@
*/
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR
4
#define LIBAVCODEC_VERSION_MINOR
5
#define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
...
...
libavformat/isom.c
View file @
1232a164
...
...
@@ -222,6 +222,8 @@ const AVCodecTag ff_codec_movvideo_tags[] = {
{
AV_CODEC_ID_PRORES
,
MKTAG
(
'a'
,
'p'
,
'c'
,
'o'
)
},
/* Apple ProRes 422 Proxy */
{
AV_CODEC_ID_PRORES
,
MKTAG
(
'a'
,
'p'
,
'4'
,
'h'
)
},
/* Apple ProRes 4444 */
{
AV_CODEC_ID_AIC
,
MKTAG
(
'i'
,
'c'
,
'o'
,
'd'
)
},
{
AV_CODEC_ID_NONE
,
0
},
};
...
...
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