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
b86ab381
Commit
b86ab381
authored
Aug 10, 2011
by
Kostya Shishkov
Committed by
Ronald S. Bultje
Aug 11, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add weighted motion compensation for RV40 B-frames
Signed-off-by:
Ronald S. Bultje
<
rsbultje@gmail.com
>
parent
e5ec6869
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
189 additions
and
104 deletions
+189
-104
rv34.c
libavcodec/rv34.c
+65
-11
rv34.h
libavcodec/rv34.h
+5
-0
rv34dsp.h
libavcodec/rv34dsp.h
+6
-0
rv40dsp.c
libavcodec/rv40dsp.c
+20
-0
real-rv40
tests/ref/fate/real-rv40
+93
-93
No files found.
libavcodec/rv34.c
View file @
b86ab381
...
...
@@ -717,7 +717,7 @@ static const int chroma_coeffs[3] = { 0, 3, 5 };
static
inline
void
rv34_mc
(
RV34DecContext
*
r
,
const
int
block_type
,
const
int
xoff
,
const
int
yoff
,
int
mv_off
,
const
int
width
,
const
int
height
,
int
dir
,
const
int
thirdpel
,
const
int
thirdpel
,
int
weighted
,
qpel_mc_func
(
*
qpel_mc
)[
16
],
h264_chroma_mc_func
(
*
chroma_mc
))
{
...
...
@@ -781,9 +781,15 @@ static inline void rv34_mc(RV34DecContext *r, const int block_type,
srcU
=
uvbuf
;
srcV
=
uvbuf
+
16
;
}
if
(
!
weighted
){
Y
=
s
->
dest
[
0
]
+
xoff
+
yoff
*
s
->
linesize
;
U
=
s
->
dest
[
1
]
+
(
xoff
>>
1
)
+
(
yoff
>>
1
)
*
s
->
uvlinesize
;
V
=
s
->
dest
[
2
]
+
(
xoff
>>
1
)
+
(
yoff
>>
1
)
*
s
->
uvlinesize
;
}
else
{
Y
=
r
->
tmp_b_block_y
[
dir
]
+
xoff
+
yoff
*
s
->
linesize
;
U
=
r
->
tmp_b_block_uv
[
dir
*
2
]
+
(
xoff
>>
1
)
+
(
yoff
>>
1
)
*
s
->
uvlinesize
;
V
=
r
->
tmp_b_block_uv
[
dir
*
2
+
1
]
+
(
xoff
>>
1
)
+
(
yoff
>>
1
)
*
s
->
uvlinesize
;
}
if
(
block_type
==
RV34_MB_P_16x8
){
qpel_mc
[
1
][
dxy
](
Y
,
srcY
,
s
->
linesize
);
...
...
@@ -804,33 +810,70 @@ static void rv34_mc_1mv(RV34DecContext *r, const int block_type,
const
int
xoff
,
const
int
yoff
,
int
mv_off
,
const
int
width
,
const
int
height
,
int
dir
)
{
rv34_mc
(
r
,
block_type
,
xoff
,
yoff
,
mv_off
,
width
,
height
,
dir
,
r
->
rv30
,
rv34_mc
(
r
,
block_type
,
xoff
,
yoff
,
mv_off
,
width
,
height
,
dir
,
r
->
rv30
,
0
,
r
->
rdsp
.
put_pixels_tab
,
r
->
rdsp
.
put_chroma_pixels_tab
);
}
static
void
rv4_weight
(
RV34DecContext
*
r
)
{
r
->
rdsp
.
rv40_weight_pixels_tab
[
0
](
r
->
s
.
dest
[
0
],
r
->
tmp_b_block_y
[
0
],
r
->
tmp_b_block_y
[
1
],
r
->
weight1
,
r
->
weight2
,
r
->
s
.
linesize
);
r
->
rdsp
.
rv40_weight_pixels_tab
[
1
](
r
->
s
.
dest
[
1
],
r
->
tmp_b_block_uv
[
0
],
r
->
tmp_b_block_uv
[
2
],
r
->
weight1
,
r
->
weight2
,
r
->
s
.
uvlinesize
);
r
->
rdsp
.
rv40_weight_pixels_tab
[
1
](
r
->
s
.
dest
[
2
],
r
->
tmp_b_block_uv
[
1
],
r
->
tmp_b_block_uv
[
3
],
r
->
weight1
,
r
->
weight2
,
r
->
s
.
uvlinesize
);
}
static
void
rv34_mc_2mv
(
RV34DecContext
*
r
,
const
int
block_type
)
{
rv34_mc
(
r
,
block_type
,
0
,
0
,
0
,
2
,
2
,
0
,
r
->
rv30
,
int
weighted
=
!
r
->
rv30
&&
block_type
!=
RV34_MB_B_BIDIR
&&
r
->
weight1
!=
8192
;
rv34_mc
(
r
,
block_type
,
0
,
0
,
0
,
2
,
2
,
0
,
r
->
rv30
,
weighted
,
r
->
rdsp
.
put_pixels_tab
,
r
->
rdsp
.
put_chroma_pixels_tab
);
rv34_mc
(
r
,
block_type
,
0
,
0
,
0
,
2
,
2
,
1
,
r
->
rv30
,
if
(
!
weighted
){
rv34_mc
(
r
,
block_type
,
0
,
0
,
0
,
2
,
2
,
1
,
r
->
rv30
,
0
,
r
->
rdsp
.
avg_pixels_tab
,
r
->
rdsp
.
avg_chroma_pixels_tab
);
}
else
{
rv34_mc
(
r
,
block_type
,
0
,
0
,
0
,
2
,
2
,
1
,
r
->
rv30
,
1
,
r
->
rdsp
.
put_pixels_tab
,
r
->
rdsp
.
put_chroma_pixels_tab
);
rv4_weight
(
r
);
}
}
static
void
rv34_mc_2mv_skip
(
RV34DecContext
*
r
)
{
int
i
,
j
;
int
weighted
=
!
r
->
rv30
&&
r
->
weight1
!=
8192
;
for
(
j
=
0
;
j
<
2
;
j
++
)
for
(
i
=
0
;
i
<
2
;
i
++
){
rv34_mc
(
r
,
RV34_MB_P_8x8
,
i
*
8
,
j
*
8
,
i
+
j
*
r
->
s
.
b8_stride
,
1
,
1
,
0
,
r
->
rv30
,
weighted
,
r
->
rdsp
.
put_pixels_tab
,
r
->
rdsp
.
put_chroma_pixels_tab
);
rv34_mc
(
r
,
RV34_MB_P_8x8
,
i
*
8
,
j
*
8
,
i
+
j
*
r
->
s
.
b8_stride
,
1
,
1
,
1
,
r
->
rv30
,
r
->
rdsp
.
avg_pixels_tab
,
r
->
rdsp
.
avg_chroma_pixels_tab
);
weighted
,
weighted
?
r
->
rdsp
.
put_pixels_tab
:
r
->
rdsp
.
avg_pixels_tab
,
weighted
?
r
->
rdsp
.
put_chroma_pixels_tab
:
r
->
rdsp
.
avg_chroma_pixels_tab
);
}
if
(
weighted
)
rv4_weight
(
r
);
}
/** number of motion vectors in each macroblock type */
...
...
@@ -1265,6 +1308,16 @@ static int rv34_decode_slice(RV34DecContext *r, int end, const uint8_t* buf, int
if
(
MPV_frame_start
(
s
,
s
->
avctx
)
<
0
)
return
-
1
;
ff_er_frame_start
(
s
);
if
(
!
r
->
tmp_b_block_base
||
s
->
width
!=
r
->
si
.
width
||
s
->
height
!=
r
->
si
.
height
)
{
int
i
;
r
->
tmp_b_block_base
=
av_realloc
(
r
->
tmp_b_block_base
,
s
->
linesize
*
48
);
for
(
i
=
0
;
i
<
2
;
i
++
)
r
->
tmp_b_block_y
[
i
]
=
r
->
tmp_b_block_base
+
i
*
16
*
s
->
linesize
;
for
(
i
=
0
;
i
<
4
;
i
++
)
r
->
tmp_b_block_uv
[
i
]
=
r
->
tmp_b_block_base
+
32
*
s
->
linesize
+
(
i
>>
1
)
*
8
*
s
->
uvlinesize
+
(
i
&
1
)
*
16
;
}
r
->
cur_pts
=
r
->
si
.
pts
;
if
(
s
->
pict_type
!=
AV_PICTURE_TYPE_B
){
r
->
last_pts
=
r
->
next_pts
;
...
...
@@ -1500,6 +1553,7 @@ av_cold int ff_rv34_decode_end(AVCodecContext *avctx)
av_freep
(
&
r
->
intra_types_hist
);
r
->
intra_types
=
NULL
;
av_freep
(
&
r
->
tmp_b_block_base
);
av_freep
(
&
r
->
mb_type
);
av_freep
(
&
r
->
cbp_luma
);
av_freep
(
&
r
->
cbp_chroma
);
...
...
libavcodec/rv34.h
View file @
b86ab381
...
...
@@ -116,6 +116,11 @@ typedef struct RV34DecContext{
/** 8x8 block available flags (for MV prediction) */
DECLARE_ALIGNED
(
8
,
uint32_t
,
avail_cache
)[
3
*
4
];
/** temporary blocks for RV4 weighted MC */
uint8_t
*
tmp_b_block_y
[
2
];
uint8_t
*
tmp_b_block_uv
[
4
];
uint8_t
*
tmp_b_block_base
;
int
(
*
parse_slice_header
)(
struct
RV34DecContext
*
r
,
GetBitContext
*
gb
,
SliceInfo
*
si
);
int
(
*
decode_mb_info
)(
struct
RV34DecContext
*
r
);
int
(
*
decode_intra_types
)(
struct
RV34DecContext
*
r
,
GetBitContext
*
gb
,
int8_t
*
dst
);
...
...
libavcodec/rv34dsp.h
View file @
b86ab381
...
...
@@ -29,11 +29,17 @@
#include "dsputil.h"
typedef
void
(
*
rv40_weight_func
)(
uint8_t
*
dst
/*align width (8 or 16)*/
,
uint8_t
*
src1
/*align width (8 or 16)*/
,
uint8_t
*
src2
/*align width (8 or 16)*/
,
int
w1
,
int
w2
,
int
stride
);
typedef
struct
RV34DSPContext
{
qpel_mc_func
put_pixels_tab
[
4
][
16
];
qpel_mc_func
avg_pixels_tab
[
4
][
16
];
h264_chroma_mc_func
put_chroma_pixels_tab
[
3
];
h264_chroma_mc_func
avg_chroma_pixels_tab
[
3
];
rv40_weight_func
rv40_weight_pixels_tab
[
2
];
}
RV34DSPContext
;
void
ff_rv30dsp_init
(
RV34DSPContext
*
c
,
DSPContext
*
dsp
);
...
...
libavcodec/rv40dsp.c
View file @
b86ab381
...
...
@@ -285,6 +285,23 @@ static void OPNAME ## rv40_chroma_mc8_c(uint8_t *dst/*align 8*/, uint8_t *src/*a
RV40_CHROMA_MC
(
put_
,
op_put
)
RV40_CHROMA_MC
(
avg_
,
op_avg
)
#define RV40_WEIGHT_FUNC(size) \
static void rv40_weight_func_ ## size (uint8_t *dst, uint8_t *src1, uint8_t *src2, int w1, int w2, int stride)\
{\
int i, j;\
\
for (j = 0; j < size; j++) {\
for (i = 0; i < size; i++)\
dst[i] = (((w2 * src1[i]) >> 9) + ((w1 * src2[i]) >> 9) + 0x10) >> 5;\
src1 += stride;\
src2 += stride;\
dst += stride;\
}\
}
RV40_WEIGHT_FUNC
(
16
)
RV40_WEIGHT_FUNC
(
8
)
av_cold
void
ff_rv40dsp_init
(
RV34DSPContext
*
c
,
DSPContext
*
dsp
)
{
c
->
put_pixels_tab
[
0
][
0
]
=
dsp
->
put_h264_qpel_pixels_tab
[
0
][
0
];
c
->
put_pixels_tab
[
0
][
1
]
=
put_rv40_qpel16_mc10_c
;
...
...
@@ -356,6 +373,9 @@ av_cold void ff_rv40dsp_init(RV34DSPContext *c, DSPContext* dsp) {
c
->
avg_chroma_pixels_tab
[
0
]
=
avg_rv40_chroma_mc8_c
;
c
->
avg_chroma_pixels_tab
[
1
]
=
avg_rv40_chroma_mc4_c
;
c
->
rv40_weight_pixels_tab
[
0
]
=
rv40_weight_func_16
;
c
->
rv40_weight_pixels_tab
[
1
]
=
rv40_weight_func_8
;
if
(
HAVE_MMX
)
ff_rv40dsp_init_x86
(
c
,
dsp
);
}
tests/ref/fate/real-rv40
View file @
b86ab381
...
...
@@ -16,106 +16,106 @@
0, 112500, 276480, 0x5f7a0d4f
0, 120000, 276480, 0x5f7a0d4f
0, 127500, 276480, 0x5f7a0d4f
0, 135000, 276480, 0x
2d722f8a
0, 142500, 276480, 0x
ebbb3c8f
0, 150000, 276480, 0x
8574c8
68
0, 135000, 276480, 0x
75641594
0, 142500, 276480, 0x
32ee3526
0, 150000, 276480, 0x
5ce393
68
0, 157500, 276480, 0x4ec1e418
0, 165000, 276480, 0x
95f22651
0, 172500, 276480, 0x
071d897e
0, 180000, 276480, 0x
9f7623f9
0, 187500, 276480, 0x
86d4dedf
0, 195000, 276480, 0x
c0a0be22
0, 202500, 276480, 0x
c5902aec
0, 210000, 276480, 0x
e000f066
0, 217500, 276480, 0x
0b2a48d5
0, 225000, 276480, 0x
a1565256
0, 232500, 276480, 0x
8de3ceb3
0, 240000, 276480, 0x
654b564a
0, 165000, 276480, 0x
85cbc3b5
0, 172500, 276480, 0x
377c7b46
0, 180000, 276480, 0x
756a4a2e
0, 187500, 276480, 0x
cb379547
0, 195000, 276480, 0x
99c085be
0, 202500, 276480, 0x
e479ffed
0, 210000, 276480, 0x
1e4fae19
0, 217500, 276480, 0x
776412ef
0, 225000, 276480, 0x
58ce0f38
0, 232500, 276480, 0x
5ab69b27
0, 240000, 276480, 0x
c3db9706
0, 247500, 276480, 0xc9c57884
0, 255000, 276480, 0x
89cdcdd4
0, 262500, 276480, 0x
3594fe61
0, 270000, 276480, 0x
9d082a81
0, 277500, 276480, 0x
4e6cd0c3
0, 285000, 276480, 0x
c129765f
0, 292500, 276480, 0x
92a04c99
0, 300000, 276480, 0x5
ca62953
0, 307500, 276480, 0x
b7e478aa
0, 315000, 276480, 0x
932735d5
0, 322500, 276480, 0x
aaa2d7aa
0, 330000, 276480, 0x
d1329996
0, 255000, 276480, 0x
000b5269
0, 262500, 276480, 0x
27ff7a5d
0, 270000, 276480, 0x
70647530
0, 277500, 276480, 0x
97612c4b
0, 285000, 276480, 0x
df4e04d7
0, 292500, 276480, 0x
bd98f57c
0, 300000, 276480, 0x5
163b29b
0, 307500, 276480, 0x
99170e64
0, 315000, 276480, 0x
8a4e991f
0, 322500, 276480, 0x
6a45425f
0, 330000, 276480, 0x
7bf6b1ef
0, 337500, 276480, 0x6de1e34b
0, 345000, 276480, 0x
8c963c9b
0, 352500, 276480, 0x
ce6eff29
0, 360000, 276480, 0x
25412f7
e
0, 367500, 276480, 0x
11a5ad85
0, 375000, 276480, 0x
26ea3248
0, 382500, 276480, 0x
86c35fa4
0, 390000, 276480, 0x
a98a2d38
0, 397500, 276480, 0x
ed827333
0, 405000, 276480, 0x
5d44a824
0, 412500, 276480, 0x
46d54d04
0, 420000, 276480, 0x
413fd26
a
0, 345000, 276480, 0x
dcaaa99a
0, 352500, 276480, 0x
d1e98808
0, 360000, 276480, 0x
6e2d524
e
0, 367500, 276480, 0x
22c50a3d
0, 375000, 276480, 0x
62b76407
0, 382500, 276480, 0x
51e9b3eb
0, 390000, 276480, 0x
441f7afd
0, 397500, 276480, 0x
fb01efc6
0, 405000, 276480, 0x
294bb441
0, 412500, 276480, 0x
e04ac45e
0, 420000, 276480, 0x
58f275e
a
0, 427500, 276480, 0xf0b3b71b
0, 435000, 276480, 0x
459bc06d
0, 442500, 276480, 0x41
99cd45
0, 450000, 276480, 0x
a8d35683
0, 457500, 276480, 0x
9a3e7de0
0, 465000, 276480, 0x
5a30f666
0, 472500, 276480, 0x
4015266
8
0, 480000, 276480, 0x
90c4d22c
0, 487500, 276480, 0x
5cbaacc9
0, 495000, 276480, 0x7
2b658f1
0, 502500, 276480, 0x
0ba3dcc9
0, 510000, 276480, 0x
259ed5c1
0, 435000, 276480, 0x
674e34e4
0, 442500, 276480, 0x41
dda2d9
0, 450000, 276480, 0x
f46ba7fb
0, 457500, 276480, 0x
28b54815
0, 465000, 276480, 0x
af2b5d89
0, 472500, 276480, 0x
8facba5
8
0, 480000, 276480, 0x
28a63236
0, 487500, 276480, 0x
1ad43fd7
0, 495000, 276480, 0x7
1507bd2
0, 502500, 276480, 0x
35626022
0, 510000, 276480, 0x
7c1139b3
0, 517500, 276480, 0x7fd73a99
0, 525000, 276480, 0x
488980c5
0, 532500, 276480, 0x
1d4c96a5
0, 540000, 276480, 0x
41ced7f2
0, 547500, 276480, 0x
d62d1837
0, 555000, 276480, 0x
f5fd9d20
0, 562500, 276480, 0x
2af91fda
0, 570000, 276480, 0x
38ce229d
0, 577500, 276480, 0xf
3a712c0
0, 585000, 276480, 0x
57b111d2
0, 592500, 276480, 0x
8556b792
0, 600000, 276480, 0x
b32d0896
0, 525000, 276480, 0x
b52e1aa2
0, 532500, 276480, 0x
d6f82cae
0, 540000, 276480, 0x
f88f75d4
0, 547500, 276480, 0x
04a8e3ee
0, 555000, 276480, 0x
a29f5b01
0, 562500, 276480, 0x
754ceaf5
0, 570000, 276480, 0x
5a38b4af
0, 577500, 276480, 0xf
cebc261
0, 585000, 276480, 0x
3d3ca985
0, 592500, 276480, 0x
94a03c75
0, 600000, 276480, 0x
2f98911c
0, 607500, 276480, 0x923b9937
0, 615000, 276480, 0x
0da1e7e3
0, 622500, 276480, 0x
7f172382
0, 630000, 276480, 0x
93622b88
0, 637500, 276480, 0x2
599d54
0
0, 645000, 276480, 0x
ed20c105
0, 652500, 276480, 0x
62ce256e
0, 660000, 276480, 0x
286a04bb
0, 667500, 276480, 0x
423f7e7c
0, 675000, 276480, 0x
21fc252a
0, 682500, 276480, 0x
f8a8e8ee
0, 690000, 276480, 0x
770d4a8d
0, 615000, 276480, 0x
efab7ffd
0, 622500, 276480, 0x
6b9fbc80
0, 630000, 276480, 0x
e4bdbd1e
0, 637500, 276480, 0x2
25a56c
0
0, 645000, 276480, 0x
f58b1b7c
0, 652500, 276480, 0x
baffcdcc
0, 660000, 276480, 0x
eb6eb88f
0, 667500, 276480, 0x
db753d35
0, 675000, 276480, 0x
ea80a82e
0, 682500, 276480, 0x
2aae902a
0, 690000, 276480, 0x
9b9ee961
0, 697500, 276480, 0xaa12b6fd
0, 705000, 276480, 0x
dc7221a8
0, 712500, 276480, 0x
487eeb30
0, 720000, 276480, 0x
1e74f2db
0, 727500, 276480, 0x
40ae2bc3
0, 735000, 276480, 0x
9ca9b930
0, 742500, 276480, 0x
9fb19b0f
0, 750000, 276480, 0x7
bdf836c
0, 757500, 276480, 0x
1e607ba7
0, 765000, 276480, 0x
bd96578b
0, 772500, 276480, 0x
2124bf07
0, 780000, 276480, 0x
4895e27a
0, 705000, 276480, 0x
50c31e73
0, 712500, 276480, 0x
dd9fb89f
0, 720000, 276480, 0x
af82399a
0, 727500, 276480, 0x
7ce5f23c
0, 735000, 276480, 0x
5aaa7519
0, 742500, 276480, 0x
e45a5599
0, 750000, 276480, 0x7
04411fb
0, 757500, 276480, 0x
9d7430a1
0, 765000, 276480, 0x
2c230702
0, 772500, 276480, 0x
4a4f76cd
0, 780000, 276480, 0x
27f54854
0, 787500, 276480, 0x694d76e3
0, 795000, 276480, 0x
e70df513
0, 802500, 276480, 0x
cacafe6b
0, 810000, 276480, 0x
64087748
0, 817500, 276480, 0x
571fda2
3
0, 825000, 276480, 0x
8c86cbe9
0, 832500, 276480, 0x
c8ea4671
0, 840000, 276480, 0x
bfb74300
0, 847500, 276480, 0x
be1e3770
0, 855000, 276480, 0x
757a0232
0, 862500, 276480, 0x
a5f50c84
0, 870000, 276480, 0x
6d95f808
0, 795000, 276480, 0x
525463e2
0, 802500, 276480, 0x
819898f9
0, 810000, 276480, 0x
eeed00fc
0, 817500, 276480, 0x
b6f99ee
3
0, 825000, 276480, 0x
efc83107
0, 832500, 276480, 0x
bb22e024
0, 840000, 276480, 0x
300f922a
0, 847500, 276480, 0x
826fc3bd
0, 855000, 276480, 0x
679a53f8
0, 862500, 276480, 0x
976c9e93
0, 870000, 276480, 0x
b194656e
0, 877500, 276480, 0xf002c5ca
0, 885000, 276480, 0x
1a2abb26
0, 892500, 276480, 0x
6cf69bf2
0, 885000, 276480, 0x
b243dda5
0, 892500, 276480, 0x
1700efbb
0, 900000, 276480, 0x8f316c66
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