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
6beb8b26
Commit
6beb8b26
authored
Dec 20, 2008
by
Kostya Shishkov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
RV30 decoder
Originally committed as revision 16247 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
52476c1b
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
2 deletions
+13
-2
Changelog
Changelog
+1
-1
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
-1
dsputil.c
libavcodec/dsputil.c
+7
-0
No files found.
Changelog
View file @
6beb8b26
...
@@ -140,7 +140,7 @@ version <next>
...
@@ -140,7 +140,7 @@ version <next>
- liba52 wrapper removed
- liba52 wrapper removed
- Speex decoding via libspeex
- Speex decoding via libspeex
- Electronic Arts TGQ decoder
- Electronic Arts TGQ decoder
- RV40 decoder
- RV
30 and RV
40 decoder
- QCELP / PureVoice decoder
- QCELP / PureVoice decoder
version 0.4.9-pre1:
version 0.4.9-pre1:
...
...
doc/general.texi
View file @
6beb8b26
...
@@ -288,6 +288,8 @@ following image formats are supported:
...
@@ -288,6 +288,8 @@ following image formats are supported:
@tab fourccs: QPEG, Q1.0, Q1.1
@tab fourccs: QPEG, Q1.0, Q1.1
@item RealVideo 1.0 @tab X @tab X
@item RealVideo 1.0 @tab X @tab X
@item RealVideo 2.0 @tab X @tab X
@item RealVideo 2.0 @tab X @tab X
@item RealVideo 3.0 @tab @tab X
@tab still far from ideal
@item RealVideo 4.0 @tab @tab X
@item RealVideo 4.0 @tab @tab X
@item Renderware TXD @tab @tab X
@item Renderware TXD @tab @tab X
@tab Texture dictionaries used by the Renderware Engine.
@tab Texture dictionaries used by the Renderware Engine.
...
...
libavcodec/Makefile
View file @
6beb8b26
...
@@ -178,6 +178,7 @@ OBJS-$(CONFIG_RV10_DECODER) += rv10.o h263.o mpeg12data.o mpegvideo.o
...
@@ -178,6 +178,7 @@ OBJS-$(CONFIG_RV10_DECODER) += rv10.o h263.o mpeg12data.o mpegvideo.o
OBJS-$(CONFIG_RV10_ENCODER)
+=
rv10.o
mpegvideo_enc.o
motion_est.o
ratecontrol.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV10_ENCODER)
+=
rv10.o
mpegvideo_enc.o
motion_est.o
ratecontrol.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV20_DECODER)
+=
rv10.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV20_DECODER)
+=
rv10.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV20_ENCODER)
+=
rv10.o
mpegvideo_enc.o
motion_est.o
ratecontrol.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV20_ENCODER)
+=
rv10.o
mpegvideo_enc.o
motion_est.o
ratecontrol.o
h263.o
mpeg12data.o
mpegvideo.o
error_resilience.o
OBJS-$(CONFIG_RV30_DECODER)
+=
rv30.o
rv34.o
h264pred.o
rv30dsp.o
OBJS-$(CONFIG_RV40_DECODER)
+=
rv40.o
rv34.o
h264pred.o
rv40dsp.o
OBJS-$(CONFIG_RV40_DECODER)
+=
rv40.o
rv34.o
h264pred.o
rv40dsp.o
OBJS-$(CONFIG_SGI_DECODER)
+=
sgidec.o
OBJS-$(CONFIG_SGI_DECODER)
+=
sgidec.o
OBJS-$(CONFIG_SGI_ENCODER)
+=
sgienc.o
rle.o
OBJS-$(CONFIG_SGI_ENCODER)
+=
sgienc.o
rle.o
...
...
libavcodec/allcodecs.c
View file @
6beb8b26
...
@@ -132,6 +132,7 @@ void avcodec_register_all(void)
...
@@ -132,6 +132,7 @@ void avcodec_register_all(void)
REGISTER_DECODER
(
RPZA
,
rpza
);
REGISTER_DECODER
(
RPZA
,
rpza
);
REGISTER_ENCDEC
(
RV10
,
rv10
);
REGISTER_ENCDEC
(
RV10
,
rv10
);
REGISTER_ENCDEC
(
RV20
,
rv20
);
REGISTER_ENCDEC
(
RV20
,
rv20
);
REGISTER_DECODER
(
RV30
,
rv30
);
REGISTER_DECODER
(
RV40
,
rv40
);
REGISTER_DECODER
(
RV40
,
rv40
);
REGISTER_ENCDEC
(
SGI
,
sgi
);
REGISTER_ENCDEC
(
SGI
,
sgi
);
REGISTER_DECODER
(
SMACKER
,
smacker
);
REGISTER_DECODER
(
SMACKER
,
smacker
);
...
...
libavcodec/avcodec.h
View file @
6beb8b26
...
@@ -30,7 +30,7 @@
...
@@ -30,7 +30,7 @@
#include "libavutil/avutil.h"
#include "libavutil/avutil.h"
#define LIBAVCODEC_VERSION_MAJOR 52
#define LIBAVCODEC_VERSION_MAJOR 52
#define LIBAVCODEC_VERSION_MINOR
7
#define LIBAVCODEC_VERSION_MINOR
8
#define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_MICRO 0
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
#define LIBAVCODEC_VERSION_INT AV_VERSION_INT(LIBAVCODEC_VERSION_MAJOR, \
...
...
libavcodec/dsputil.c
View file @
6beb8b26
...
@@ -2743,6 +2743,10 @@ void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx);
...
@@ -2743,6 +2743,10 @@ void ff_intrax8dsp_init(DSPContext* c, AVCodecContext *avctx);
/* H264 specific */
/* H264 specific */
void
ff_h264dspenc_init
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
void
ff_h264dspenc_init
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#if defined(CONFIG_RV30_DECODER)
void
ff_rv30dsp_init
(
DSPContext
*
c
,
AVCodecContext
*
avctx
);
#endif
/* CONFIG_RV30_DECODER */
#if defined(CONFIG_RV40_DECODER)
#if defined(CONFIG_RV40_DECODER)
static
void
put_rv40_qpel16_mc33_c
(
uint8_t
*
dst
,
uint8_t
*
src
,
int
stride
){
static
void
put_rv40_qpel16_mc33_c
(
uint8_t
*
dst
,
uint8_t
*
src
,
int
stride
){
put_pixels16_xy2_c
(
dst
,
src
,
stride
,
16
);
put_pixels16_xy2_c
(
dst
,
src
,
stride
,
16
);
...
@@ -4495,6 +4499,9 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx)
...
@@ -4495,6 +4499,9 @@ void dsputil_init(DSPContext* c, AVCodecContext *avctx)
#if defined(CONFIG_H264_ENCODER)
#if defined(CONFIG_H264_ENCODER)
ff_h264dspenc_init
(
c
,
avctx
);
ff_h264dspenc_init
(
c
,
avctx
);
#endif
#endif
#if defined(CONFIG_RV30_DECODER)
ff_rv30dsp_init
(
c
,
avctx
);
#endif
#if defined(CONFIG_RV40_DECODER)
#if defined(CONFIG_RV40_DECODER)
ff_rv40dsp_init
(
c
,
avctx
);
ff_rv40dsp_init
(
c
,
avctx
);
c
->
put_rv40_qpel_pixels_tab
[
0
][
15
]
=
put_rv40_qpel16_mc33_c
;
c
->
put_rv40_qpel_pixels_tab
[
0
][
15
]
=
put_rv40_qpel16_mc33_c
;
...
...
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