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
f48d6e1b
Commit
f48d6e1b
authored
Dec 07, 2006
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ZMBV encoder
Originally committed as revision 7242 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
f27a7268
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
5 deletions
+9
-5
Changelog
Changelog
+1
-1
ffmpeg-doc.texi
doc/ffmpeg-doc.texi
+1
-1
Makefile
libavcodec/Makefile
+1
-0
allcodecs.c
libavcodec/allcodecs.c
+3
-1
avcodec.h
libavcodec/avcodec.h
+3
-2
No files found.
Changelog
View file @
f48d6e1b
...
...
@@ -38,7 +38,7 @@ version <next>
- ADTS AAC file reading and writing
- Creative VOC file reading and writing
- American Laser Games multimedia (*.mm) playback system
- Zip Blocks Motion Video decoder
- Zip Blocks Motion Video decoder
and encoder
- Improved Theora/VP3 decoder
- True Audio (TTA) decoder
- AVS demuxer and video decoder
...
...
doc/ffmpeg-doc.texi
View file @
f48d6e1b
...
...
@@ -989,7 +989,7 @@ following image formats are supported:
@item Fraps FPS1 @tab @tab X @tab
@item CamStudio @tab @tab X @tab fourcc: CSCD
@item American Laser Games Video @tab @tab X @tab Used in games like Mad Dog McCree
@item ZMBV @tab
@tab X @tab
@item ZMBV @tab
X @tab X @tab Encoder works only on PAL8
@item AVS Video @tab @tab X @tab Video encoding used by the Creature Shock game.
@item Smacker Video @tab @tab X @tab Video encoding used in Smacker.
@item RTjpeg @tab @tab X @tab Video encoding used in NuppelVideo files.
...
...
libavcodec/Makefile
View file @
f48d6e1b
...
...
@@ -167,6 +167,7 @@ OBJS-$(CONFIG_XL_DECODER) += xl.o
OBJS-$(CONFIG_ZLIB_DECODER)
+=
lcl.o
OBJS-$(CONFIG_ZLIB_ENCODER)
+=
lcl.o
OBJS-$(CONFIG_ZMBV_DECODER)
+=
zmbv.o
OBJS-$(CONFIG_ZMBV_ENCODER)
+=
zmbvenc.o
OBJS-$(CONFIG_PCM_S32LE_DECODER)
+=
pcm.o
OBJS-$(CONFIG_PCM_S32LE_ENCODER)
+=
pcm.o
...
...
libavcodec/allcodecs.c
View file @
f48d6e1b
...
...
@@ -155,7 +155,9 @@ void avcodec_register_all(void)
REGISTER_ENCODER
(
XVID
,
xvid
);
#endif
REGISTER_ENCDEC
(
ZLIB
,
zlib
);
REGISTER_DECODER
(
ZMBV
,
zmbv
);
#ifdef CONFIG_ZLIB
REGISTER_ENCDEC
(
ZMBV
,
zmbv
);
#endif
/* audio codecs */
#ifdef CONFIG_FAAD
...
...
libavcodec/avcodec.h
View file @
f48d6e1b
...
...
@@ -37,8 +37,8 @@ extern "C" {
#define AV_STRINGIFY(s) AV_TOSTRING(s)
#define AV_TOSTRING(s) #s
#define LIBAVCODEC_VERSION_INT ((51<<16)+(2
5
<<8)+0)
#define LIBAVCODEC_VERSION 51.2
5
.0
#define LIBAVCODEC_VERSION_INT ((51<<16)+(2
6
<<8)+0)
#define LIBAVCODEC_VERSION 51.2
6
.0
#define LIBAVCODEC_BUILD LIBAVCODEC_VERSION_INT
#define LIBAVCODEC_IDENT "Lavc" AV_STRINGIFY(LIBAVCODEC_VERSION)
...
...
@@ -2303,6 +2303,7 @@ extern AVCodec libgsm_decoder;
extern
AVCodec
bmp_decoder
;
extern
AVCodec
mmvideo_decoder
;
extern
AVCodec
zmbv_decoder
;
extern
AVCodec
zmbv_encoder
;
extern
AVCodec
avs_decoder
;
extern
AVCodec
smacker_decoder
;
extern
AVCodec
smackaud_decoder
;
...
...
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