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
a5278b67
Commit
a5278b67
authored
Sep 02, 2018
by
Paul B Mahol
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: add RemotelyAnywhere Screen Capture decoder
parent
af71a3ff
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
827 additions
and
2 deletions
+827
-2
Changelog
Changelog
+1
-0
configure
configure
+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
rasc.c
libavcodec/rasc.c
+812
-0
version.h
libavcodec/version.h
+2
-2
riff.c
libavformat/riff.c
+1
-0
No files found.
Changelog
View file @
a5278b67
...
...
@@ -22,6 +22,7 @@ version <next>:
- MatchWare Screen Capture Codec decoder
- WinCam Motion Video decoder
- 1D LUT filter (lut1d)
- RemotelyAnywhere Screen Capture decoder
version 4.0:
...
...
configure
View file @
a5278b67
...
...
@@ -2719,6 +2719,7 @@ qdm2_decoder_select="mdct rdft mpegaudiodsp"
ra_144_decoder_select
=
"audiodsp"
ra_144_encoder_select
=
"audio_frame_queue lpc audiodsp"
ralf_decoder_select
=
"golomb"
rasc_decoder_deps
=
"zlib"
rawvideo_decoder_select
=
"bswapdsp"
rscc_decoder_deps
=
"zlib"
rtjpeg_decoder_select
=
"me_cmp"
...
...
libavcodec/Makefile
View file @
a5278b67
...
...
@@ -536,6 +536,7 @@ OBJS-$(CONFIG_RA_144_DECODER) += ra144dec.o ra144.o celp_filters.o
OBJS-$(CONFIG_RA_144_ENCODER)
+=
ra144enc.o
ra144.o
celp_filters.o
OBJS-$(CONFIG_RA_288_DECODER)
+=
ra288.o
celp_filters.o
OBJS-$(CONFIG_RALF_DECODER)
+=
ralf.o
OBJS-$(CONFIG_RASC_DECODER)
+=
rasc.o
OBJS-$(CONFIG_RAWVIDEO_DECODER)
+=
rawdec.o
OBJS-$(CONFIG_RAWVIDEO_ENCODER)
+=
rawenc.o
OBJS-$(CONFIG_REALTEXT_DECODER)
+=
realtextdec.o
ass.o
...
...
libavcodec/allcodecs.c
View file @
a5278b67
...
...
@@ -248,6 +248,7 @@ extern AVCodec ff_r10k_encoder;
extern
AVCodec
ff_r10k_decoder
;
extern
AVCodec
ff_r210_encoder
;
extern
AVCodec
ff_r210_decoder
;
extern
AVCodec
ff_rasc_decoder
;
extern
AVCodec
ff_rawvideo_encoder
;
extern
AVCodec
ff_rawvideo_decoder
;
extern
AVCodec
ff_rl2_decoder
;
...
...
libavcodec/avcodec.h
View file @
a5278b67
...
...
@@ -451,6 +451,7 @@ enum AVCodecID {
AV_CODEC_ID_PROSUMER
,
AV_CODEC_ID_MWSC
,
AV_CODEC_ID_WCMV
,
AV_CODEC_ID_RASC
,
/* 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 @
a5278b67
...
...
@@ -1682,6 +1682,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"WinCAM Motion Video"
),
.
props
=
AV_CODEC_PROP_LOSSLESS
,
},
{
.
id
=
AV_CODEC_ID_RASC
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"rasc"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"RemotelyAnywhere Screen Capture"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
/* various PCM "codecs" */
{
...
...
libavcodec/rasc.c
0 → 100644
View file @
a5278b67
This diff is collapsed.
Click to expand it.
libavcodec/version.h
View file @
a5278b67
...
...
@@ -28,8 +28,8 @@
#include "libavutil/version.h"
#define LIBAVCODEC_VERSION_MAJOR 58
#define LIBAVCODEC_VERSION_MINOR 2
7
#define LIBAVCODEC_VERSION_MICRO 10
1
#define LIBAVCODEC_VERSION_MINOR 2
8
#define LIBAVCODEC_VERSION_MICRO 10
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
libavformat/riff.c
View file @
a5278b67
...
...
@@ -474,6 +474,7 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{
AV_CODEC_ID_PROSUMER
,
MKTAG
(
'B'
,
'T'
,
'2'
,
'0'
)
},
{
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_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