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
41c1643d
Commit
41c1643d
authored
Aug 22, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: add HYMT decoder
parent
8a8cce07
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
131 additions
and
59 deletions
+131
-59
Changelog
Changelog
+1
-0
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+1
-0
avcodec.h
libavcodec/avcodec.h
+1
-0
codec_desc.c
libavcodec/codec_desc.c
+7
-0
huffyuvdec.c
libavcodec/huffyuvdec.c
+117
-57
version.h
libavcodec/version.h
+2
-2
riff.c
libavformat/riff.c
+1
-0
No files found.
Changelog
View file @
41c1643d
...
...
@@ -12,6 +12,7 @@ version <next>:
- PCM-DVD encoder
- GIF parser
- vividas demuxer
- hymt decoder
version 4.1:
...
...
libavcodec/Makefile
View file @
41c1643d
...
...
@@ -383,6 +383,7 @@ OBJS-$(CONFIG_HQ_HQA_DECODER) += hq_hqa.o hq_hqadata.o hq_hqadsp.o \
OBJS-$(CONFIG_HQX_DECODER)
+=
hqx.o
hqxvlc.o
hqxdsp.o
canopus.o
OBJS-$(CONFIG_HUFFYUV_DECODER)
+=
huffyuv.o
huffyuvdec.o
OBJS-$(CONFIG_HUFFYUV_ENCODER)
+=
huffyuv.o
huffyuvenc.o
OBJS-$(CONFIG_HYMT_DECODER)
+=
huffyuv.o
huffyuvdec.o
OBJS-$(CONFIG_IDCIN_DECODER)
+=
idcinvideo.o
OBJS-$(CONFIG_IDF_DECODER)
+=
bintext.o
cga_data.o
OBJS-$(CONFIG_IFF_ILBM_DECODER)
+=
iff.o
...
...
libavcodec/allcodecs.c
View file @
41c1643d
...
...
@@ -152,6 +152,7 @@ extern AVCodec ff_hq_hqa_decoder;
extern
AVCodec
ff_hqx_decoder
;
extern
AVCodec
ff_huffyuv_encoder
;
extern
AVCodec
ff_huffyuv_decoder
;
extern
AVCodec
ff_hymt_decoder
;
extern
AVCodec
ff_idcin_decoder
;
extern
AVCodec
ff_iff_ilbm_decoder
;
extern
AVCodec
ff_imm4_decoder
;
...
...
libavcodec/avcodec.h
View file @
41c1643d
...
...
@@ -452,6 +452,7 @@ enum AVCodecID {
AV_CODEC_ID_MWSC
,
AV_CODEC_ID_WCMV
,
AV_CODEC_ID_RASC
,
AV_CODEC_ID_HYMT
,
/* 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 @
41c1643d
...
...
@@ -1691,6 +1691,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"RemotelyAnywhere Screen Capture"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
{
.
id
=
AV_CODEC_ID_HYMT
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"hymt"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"HuffYUV MT"
),
.
props
=
AV_CODEC_PROP_INTRA_ONLY
|
AV_CODEC_PROP_LOSSLESS
,
},
/* various PCM "codecs" */
{
...
...
libavcodec/huffyuvdec.c
View file @
41c1643d
This diff is collapsed.
Click to expand it.
libavcodec/version.h
View file @
41c1643d
...
...
@@ -28,8 +28,8 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 58
#define LIBAVCODEC_VERSION_MINOR 4
2
#define LIBAVCODEC_VERSION_MICRO 10
4
#define LIBAVCODEC_VERSION_MINOR 4
3
#define LIBAVCODEC_VERSION_MICRO 10
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
libavformat/riff.c
View file @
41c1643d
...
...
@@ -475,6 +475,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{
AV_CODEC_ID_MWSC
,
MKTAG
(
'M'
,
'W'
,
'S'
,
'C'
)
},
{
AV_CODEC_ID_WCMV
,
MKTAG
(
'W'
,
'C'
,
'M'
,
'V'
)
},
{
AV_CODEC_ID_RASC
,
MKTAG
(
'R'
,
'A'
,
'S'
,
'C'
)
},
{
AV_CODEC_ID_HYMT
,
MKTAG
(
'H'
,
'Y'
,
'M'
,
'T'
)
},
{
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