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
2d66a58c
Commit
2d66a58c
authored
Feb 25, 2013
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Go2Webinar decoder
parent
31980b6a
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
844 additions
and
2 deletions
+844
-2
Changelog
Changelog
+1
-0
configure
configure
+1
-0
general.texi
doc/general.texi
+2
-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
g2meet.c
libavcodec/g2meet.c
+825
-0
version.h
libavcodec/version.h
+2
-2
riff.c
libavformat/riff.c
+3
-0
No files found.
Changelog
View file @
2d66a58c
...
...
@@ -23,6 +23,7 @@ version 10:
- support for slice multithreading in libavfilter
- VC-1 interlaced B-frame support
- support for WavPack muxing (raw and in Matroska)
- Go2Webinar decoder
version 9:
...
...
configure
View file @
2d66a58c
...
...
@@ -1575,6 +1575,7 @@ flv_decoder_select="h263_decoder"
flv_encoder_select
=
"h263_encoder"
fourxm_decoder_select
=
"dsputil"
fraps_decoder_select
=
"dsputil huffman"
g2m_decoder_select
=
"dsputil zlib"
h261_decoder_select
=
"error_resilience mpegvideo"
h261_encoder_select
=
"aandcttables mpegvideoenc"
h263_decoder_select
=
"error_resilience h263_parser mpegvideo"
...
...
doc/general.texi
View file @
2d66a58c
...
...
@@ -507,6 +507,8 @@ following image formats are supported:
@tab Sorenson H.263 used in Flash
@item Forward Uncompressed @tab @tab X
@item Fraps @tab @tab X
@item Go2Webinar @tab @tab X
@tab fourcc: G2M4
@item H.261 @tab X @tab X
@item H.263 / H.263-1996 @tab X @tab X
@item H.263+ / H.263-1998 / H.263 version 2 @tab X @tab X
...
...
libavcodec/Makefile
View file @
2d66a58c
...
...
@@ -177,6 +177,7 @@ OBJS-$(CONFIG_FLIC_DECODER) += flicvideo.o
OBJS-$(CONFIG_FOURXM_DECODER)
+=
4xm.o
OBJS-$(CONFIG_FRAPS_DECODER)
+=
fraps.o
OBJS-$(CONFIG_FRWU_DECODER)
+=
frwu.o
OBJS-$(CONFIG_G2M_DECODER)
+=
g2meet.o
mjpeg.o
OBJS-$(CONFIG_G723_1_DECODER)
+=
g723_1.o
acelp_vectors.o
\
celp_filters.o
OBJS-$(CONFIG_GIF_DECODER)
+=
gifdec.o
lzw.o
...
...
libavcodec/allcodecs.c
View file @
2d66a58c
...
...
@@ -146,6 +146,7 @@ void avcodec_register_all(void)
REGISTER_DECODER
(
FOURXM
,
fourxm
);
REGISTER_DECODER
(
FRAPS
,
fraps
);
REGISTER_DECODER
(
FRWU
,
frwu
);
REGISTER_DECODER
(
G2M
,
g2m
);
REGISTER_ENCDEC
(
GIF
,
gif
);
REGISTER_ENCDEC
(
H261
,
h261
);
REGISTER_ENCDEC
(
H263
,
h263
);
...
...
libavcodec/avcodec.h
View file @
2d66a58c
...
...
@@ -270,6 +270,7 @@ enum AVCodecID {
AV_CODEC_ID_VP9
,
AV_CODEC_ID_AIC
,
AV_CODEC_ID_ESCAPE130
,
AV_CODEC_ID_G2M
,
/* 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 @
2d66a58c
...
...
@@ -1221,6 +1221,13 @@ static const AVCodecDescriptor codec_descriptors[] = {
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Escape 130"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
{
.
id
=
AV_CODEC_ID_G2M
,
.
type
=
AVMEDIA_TYPE_VIDEO
,
.
name
=
"g2m"
,
.
long_name
=
NULL_IF_CONFIG_SMALL
(
"Go2Meeting"
),
.
props
=
AV_CODEC_PROP_LOSSY
,
},
/* various PCM "codecs" */
{
...
...
libavcodec/g2meet.c
0 → 100644
View file @
2d66a58c
This diff is collapsed.
Click to expand it.
libavcodec/version.h
View file @
2d66a58c
...
...
@@ -27,8 +27,8 @@
*/
#define LIBAVCODEC_VERSION_MAJOR 55
#define LIBAVCODEC_VERSION_MINOR
7
#define LIBAVCODEC_VERSION_MICRO
2
#define LIBAVCODEC_VERSION_MINOR
8
#define LIBAVCODEC_VERSION_MICRO
0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
LIBAVCODEC_VERSION_MINOR, \
...
...
libavformat/riff.c
View file @
2d66a58c
...
...
@@ -312,6 +312,9 @@ const AVCodecTag ff_codec_bmp_tags[] = {
{
AV_CODEC_ID_CLLC
,
MKTAG
(
'C'
,
'L'
,
'L'
,
'C'
)
},
{
AV_CODEC_ID_MSS2
,
MKTAG
(
'M'
,
'S'
,
'S'
,
'2'
)
},
{
AV_CODEC_ID_SVQ3
,
MKTAG
(
'S'
,
'V'
,
'Q'
,
'3'
)
},
{
AV_CODEC_ID_G2M
,
MKTAG
(
'G'
,
'2'
,
'M'
,
'2'
)
},
{
AV_CODEC_ID_G2M
,
MKTAG
(
'G'
,
'2'
,
'M'
,
'3'
)
},
{
AV_CODEC_ID_G2M
,
MKTAG
(
'G'
,
'2'
,
'M'
,
'4'
)
},
{
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