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
8812c97b
Commit
8812c97b
authored
Feb 15, 2012
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
proresenc: Rename for incoming NIH-syndrom.
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
60991ad6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
1 deletion
+16
-1
Makefile
libavcodec/Makefile
+2
-1
allcodecs.c
libavcodec/allcodecs.c
+1
-0
proresenc_anatoliy.c
libavcodec/proresenc_anatoliy.c
+13
-0
No files found.
libavcodec/Makefile
View file @
8812c97b
...
...
@@ -331,7 +331,8 @@ OBJS-$(CONFIG_PPM_DECODER) += pnmdec.o pnm.o
OBJS-$(CONFIG_PPM_ENCODER)
+=
pnmenc.o
pnm.o
OBJS-$(CONFIG_PRORES_DECODER)
+=
proresdec2.o
OBJS-$(CONFIG_PRORES_LGPL_DECODER)
+=
proresdec_lgpl.o
proresdsp.o
OBJS-$(CONFIG_PRORES_ENCODER)
+=
proresenc.o
OBJS-$(CONFIG_PRORES_ENCODER)
+=
proresenc_anatoliy.o
OBJS-$(CONFIG_PRORES_ANATOLIY_ENCODER)
+=
proresenc_anatoliy.o
OBJS-$(CONFIG_PTX_DECODER)
+=
ptx.o
OBJS-$(CONFIG_QCELP_DECODER)
+=
qcelpdec.o
celp_math.o
\
celp_filters.o
acelp_vectors.o
\
...
...
libavcodec/allcodecs.c
View file @
8812c97b
...
...
@@ -181,6 +181,7 @@ void avcodec_register_all(void)
REGISTER_ENCDEC
(
PNG
,
png
);
REGISTER_ENCDEC
(
PPM
,
ppm
);
REGISTER_ENCDEC
(
PRORES
,
prores
);
REGISTER_ENCODER
(
PRORES_ANATOLIY
,
prores_anatoliy
);
REGISTER_DECODER
(
PRORES_LGPL
,
prores_lgpl
);
REGISTER_DECODER
(
PTX
,
ptx
);
REGISTER_DECODER
(
QDRAW
,
qdraw
);
...
...
libavcodec/proresenc.c
→
libavcodec/proresenc
_anatoliy
.c
View file @
8812c97b
...
...
@@ -584,6 +584,19 @@ static av_cold int prores_encode_close(AVCodecContext *avctx)
return
0
;
}
AVCodec
ff_prores_anatoliy_encoder
=
{
.
name
=
"prores_anatoliy"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
id
=
CODEC_ID_PRORES
,
.
priv_data_size
=
sizeof
(
ProresContext
),
.
init
=
prores_encode_init
,
.
close
=
prores_encode_close
,
.
encode
=
prores_encode_frame
,
.
pix_fmts
=
(
const
enum
PixelFormat
[]){
PIX_FMT_YUV422P10
,
PIX_FMT_NONE
},
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Apple ProRes"
),
.
profiles
=
profiles
};
AVCodec
ff_prores_encoder
=
{
.
name
=
"prores"
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
...
...
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