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
43dbdee2
Commit
43dbdee2
authored
Jan 06, 2019
by
Peter Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
VP4 video decoder
parent
a212c8da
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
1903 additions
and
36 deletions
+1903
-36
Changelog
Changelog
+1
-0
configure
configure
+1
-0
general.texi
doc/general.texi
+2
-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
+2
-2
vp3.c
libavcodec/vp3.c
+702
-34
vp4data.h
libavcodec/vp4data.h
+1186
-0
No files found.
Changelog
View file @
43dbdee2
...
...
@@ -31,6 +31,7 @@ version <next>:
- xmedian filter
- asr filter
- showspatial multimedia filter
- VP4 video decoder
version 4.1:
...
...
configure
View file @
43dbdee2
...
...
@@ -2825,6 +2825,7 @@ vc1image_decoder_select="vc1_decoder"
vorbis_decoder_select
=
"mdct"
vorbis_encoder_select
=
"audio_frame_queue mdct"
vp3_decoder_select
=
"hpeldsp vp3dsp videodsp"
vp4_decoder_select
=
"vp3_decoder"
vp5_decoder_select
=
"h264chroma hpeldsp videodsp vp3dsp vp56dsp"
vp6_decoder_select
=
"h264chroma hpeldsp huffman videodsp vp3dsp vp56dsp"
vp6a_decoder_select
=
"vp6_decoder"
...
...
doc/general.texi
View file @
43dbdee2
...
...
@@ -944,6 +944,8 @@ following image formats are supported:
@tab Video encoding used in NuppelVideo files.
@item On2 VP3 @tab @tab X
@tab still experimental
@item On2 VP4 @tab @tab X
@tab fourcc: VP40
@item On2 VP5 @tab @tab X
@tab fourcc: VP50
@item On2 VP6 @tab @tab X
...
...
libavcodec/allcodecs.c
View file @
43dbdee2
...
...
@@ -330,6 +330,7 @@ extern AVCodec ff_vcr1_decoder;
extern
AVCodec
ff_vmdvideo_decoder
;
extern
AVCodec
ff_vmnc_decoder
;
extern
AVCodec
ff_vp3_decoder
;
extern
AVCodec
ff_vp4_decoder
;
extern
AVCodec
ff_vp5_decoder
;
extern
AVCodec
ff_vp6_decoder
;
extern
AVCodec
ff_vp6a_decoder
;
...
...
libavcodec/avcodec.h
View file @
43dbdee2
...
...
@@ -456,6 +456,7 @@ enum AVCodecID {
AV_CODEC_ID_ARBC
,
AV_CODEC_ID_AGM
,
AV_CODEC_ID_LSCR
,
AV_CODEC_ID_VP4
,
/* 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 @
43dbdee2
...
...
@@ -1719,6 +1719,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"LEAD Screen Capture"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
{
.
id
=
AV_CODEC_ID_VP4
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"vp4"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"On2 VP4"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
/* various PCM "codecs" */
{
...
...
libavcodec/version.h
View file @
43dbdee2
...
...
@@ -28,8 +28,8 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 58
#define LIBAVCODEC_VERSION_MINOR 5
2
#define LIBAVCODEC_VERSION_MICRO 10
2
#define LIBAVCODEC_VERSION_MINOR 5
3
#define LIBAVCODEC_VERSION_MICRO 10
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
libavcodec/vp3.c
View file @
43dbdee2
This diff is collapsed.
Click to expand it.
libavcodec/vp4data.h
0 → 100644
View file @
43dbdee2
This diff is collapsed.
Click to expand it.
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