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
edcf9890
Commit
edcf9890
authored
Jul 13, 2002
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimization (get_vlc -> get_vlc2)
Originally committed as revision 750 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
71529954
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
25 deletions
+34
-25
h263.c
libavcodec/h263.c
+34
-25
No files found.
libavcodec/h263.c
View file @
edcf9890
...
@@ -35,6 +35,15 @@
...
@@ -35,6 +35,15 @@
#define PRINT_MB_TYPE(a) {}
#define PRINT_MB_TYPE(a) {}
//#define PRINT_MB_TYPE(a) printf(a)
//#define PRINT_MB_TYPE(a) printf(a)
#define INTRA_MCBPC_VLC_BITS 6
#define INTER_MCBPC_VLC_BITS 6
#define CBPY_VLC_BITS 6
#define MV_VLC_BITS 9
#define DC_VLC_BITS 9
#define SPRITE_TRAJ_VLC_BITS 6
#define MB_TYPE_B_VLC_BITS 4
#define TEX_VLC_BITS 9
static
void
h263_encode_block
(
MpegEncContext
*
s
,
DCTELEM
*
block
,
static
void
h263_encode_block
(
MpegEncContext
*
s
,
DCTELEM
*
block
,
int
n
);
int
n
);
static
void
h263_encode_motion
(
MpegEncContext
*
s
,
int
val
,
int
fcode
);
static
void
h263_encode_motion
(
MpegEncContext
*
s
,
int
val
,
int
fcode
);
...
@@ -1677,16 +1686,16 @@ void h263_decode_init_vlc(MpegEncContext *s)
...
@@ -1677,16 +1686,16 @@ void h263_decode_init_vlc(MpegEncContext *s)
if
(
!
done
)
{
if
(
!
done
)
{
done
=
1
;
done
=
1
;
init_vlc
(
&
intra_MCBPC_vlc
,
6
,
8
,
init_vlc
(
&
intra_MCBPC_vlc
,
INTRA_MCBPC_VLC_BITS
,
8
,
intra_MCBPC_bits
,
1
,
1
,
intra_MCBPC_bits
,
1
,
1
,
intra_MCBPC_code
,
1
,
1
);
intra_MCBPC_code
,
1
,
1
);
init_vlc
(
&
inter_MCBPC_vlc
,
9
,
25
,
init_vlc
(
&
inter_MCBPC_vlc
,
INTER_MCBPC_VLC_BITS
,
25
,
inter_MCBPC_bits
,
1
,
1
,
inter_MCBPC_bits
,
1
,
1
,
inter_MCBPC_code
,
1
,
1
);
inter_MCBPC_code
,
1
,
1
);
init_vlc
(
&
cbpy_vlc
,
6
,
16
,
init_vlc
(
&
cbpy_vlc
,
CBPY_VLC_BITS
,
16
,
&
cbpy_tab
[
0
][
1
],
2
,
1
,
&
cbpy_tab
[
0
][
1
],
2
,
1
,
&
cbpy_tab
[
0
][
0
],
2
,
1
);
&
cbpy_tab
[
0
][
0
],
2
,
1
);
init_vlc
(
&
mv_vlc
,
9
,
33
,
init_vlc
(
&
mv_vlc
,
MV_VLC_BITS
,
33
,
&
mvtab
[
0
][
1
],
2
,
1
,
&
mvtab
[
0
][
1
],
2
,
1
,
&
mvtab
[
0
][
0
],
2
,
1
);
&
mvtab
[
0
][
0
],
2
,
1
);
init_rl
(
&
rl_inter
);
init_rl
(
&
rl_inter
);
...
@@ -1695,16 +1704,16 @@ void h263_decode_init_vlc(MpegEncContext *s)
...
@@ -1695,16 +1704,16 @@ void h263_decode_init_vlc(MpegEncContext *s)
init_vlc_rl
(
&
rl_inter
);
init_vlc_rl
(
&
rl_inter
);
init_vlc_rl
(
&
rl_intra
);
init_vlc_rl
(
&
rl_intra
);
init_vlc_rl
(
&
rl_intra_aic
);
init_vlc_rl
(
&
rl_intra_aic
);
init_vlc
(
&
dc_lum
,
9
,
13
,
init_vlc
(
&
dc_lum
,
DC_VLC_BITS
,
9
/* 13 */
,
&
DCtab_lum
[
0
][
1
],
2
,
1
,
&
DCtab_lum
[
0
][
1
],
2
,
1
,
&
DCtab_lum
[
0
][
0
],
2
,
1
);
&
DCtab_lum
[
0
][
0
],
2
,
1
);
init_vlc
(
&
dc_chrom
,
9
,
13
,
init_vlc
(
&
dc_chrom
,
DC_VLC_BITS
,
9
/* 13 */
,
&
DCtab_chrom
[
0
][
1
],
2
,
1
,
&
DCtab_chrom
[
0
][
1
],
2
,
1
,
&
DCtab_chrom
[
0
][
0
],
2
,
1
);
&
DCtab_chrom
[
0
][
0
],
2
,
1
);
init_vlc
(
&
sprite_trajectory
,
9
,
15
,
init_vlc
(
&
sprite_trajectory
,
SPRITE_TRAJ_VLC_BITS
,
15
,
&
sprite_trajectory_tab
[
0
][
1
],
4
,
2
,
&
sprite_trajectory_tab
[
0
][
1
],
4
,
2
,
&
sprite_trajectory_tab
[
0
][
0
],
4
,
2
);
&
sprite_trajectory_tab
[
0
][
0
],
4
,
2
);
init_vlc
(
&
mb_type_b_vlc
,
4
,
4
,
init_vlc
(
&
mb_type_b_vlc
,
MB_TYPE_B_VLC_BITS
,
4
,
&
mb_type_b_tab
[
0
][
1
],
2
,
1
,
&
mb_type_b_tab
[
0
][
1
],
2
,
1
,
&
mb_type_b_tab
[
0
][
0
],
2
,
1
);
&
mb_type_b_tab
[
0
][
0
],
2
,
1
);
}
}
...
@@ -2024,7 +2033,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
...
@@ -2024,7 +2033,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
int
i
;
int
i
;
PRINT_MB_TYPE
(
"I"
);
PRINT_MB_TYPE
(
"I"
);
cbpc
=
get_vlc
(
&
s
->
gb
,
&
intra_MCBPC_vlc
);
cbpc
=
get_vlc
2
(
&
s
->
gb
,
intra_MCBPC_vlc
.
table
,
INTRA_MCBPC_VLC_BITS
,
1
);
if
(
cbpc
<
0
){
if
(
cbpc
<
0
){
fprintf
(
stderr
,
"cbpc corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
fprintf
(
stderr
,
"cbpc corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
return
DECODING_DESYNC
;
return
DECODING_DESYNC
;
...
@@ -2089,7 +2098,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
...
@@ -2089,7 +2098,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
continue
;
continue
;
}
}
cbpc
=
get_vlc
(
&
s
->
gb
,
&
inter_MCBPC_vlc
);
cbpc
=
get_vlc
2
(
&
s
->
gb
,
inter_MCBPC_vlc
.
table
,
INTER_MCBPC_VLC_BITS
,
2
);
if
(
cbpc
<
0
){
if
(
cbpc
<
0
){
fprintf
(
stderr
,
"cbpc corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
fprintf
(
stderr
,
"cbpc corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
return
DECODING_DESYNC
;
return
DECODING_DESYNC
;
...
@@ -2196,7 +2205,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
...
@@ -2196,7 +2205,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
if
(
s
->
pict_type
==
I_TYPE
){
if
(
s
->
pict_type
==
I_TYPE
){
int
ac_pred
=
get_bits1
(
&
s
->
gb
);
int
ac_pred
=
get_bits1
(
&
s
->
gb
);
int
cbpy
=
get_vlc
(
&
s
->
gb
,
&
cbpy_vlc
);
int
cbpy
=
get_vlc
2
(
&
s
->
gb
,
cbpy_vlc
.
table
,
CBPY_VLC_BITS
,
1
);
if
(
cbpy
<
0
){
if
(
cbpy
<
0
){
fprintf
(
stderr
,
"cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
fprintf
(
stderr
,
"cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
return
DECODING_AC_LOST
;
return
DECODING_AC_LOST
;
...
@@ -2208,7 +2217,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
...
@@ -2208,7 +2217,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
if
(
s
->
mb_type
[
xy
]
&
MB_TYPE_INTRA
){
if
(
s
->
mb_type
[
xy
]
&
MB_TYPE_INTRA
){
int
dir
=
0
,
i
;
int
dir
=
0
,
i
;
int
ac_pred
=
get_bits1
(
&
s
->
gb
);
int
ac_pred
=
get_bits1
(
&
s
->
gb
);
int
cbpy
=
get_vlc
(
&
s
->
gb
,
&
cbpy_vlc
);
int
cbpy
=
get_vlc
2
(
&
s
->
gb
,
cbpy_vlc
.
table
,
CBPY_VLC_BITS
,
1
);
if
(
cbpy
<
0
){
if
(
cbpy
<
0
){
fprintf
(
stderr
,
"I cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
fprintf
(
stderr
,
"I cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
...
@@ -2242,7 +2251,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
...
@@ -2242,7 +2251,7 @@ int ff_mpeg4_decode_partitions(MpegEncContext *s)
s
->
qscale_table
[
xy
]
=
s
->
qscale
;
s
->
qscale_table
[
xy
]
=
s
->
qscale
;
s
->
cbp_table
[
xy
]
=
0
;
s
->
cbp_table
[
xy
]
=
0
;
}
else
{
}
else
{
int
cbpy
=
get_vlc
(
&
s
->
gb
,
&
cbpy_vlc
);
int
cbpy
=
get_vlc
2
(
&
s
->
gb
,
cbpy_vlc
.
table
,
CBPY_VLC_BITS
,
1
);
if
(
cbpy
<
0
){
if
(
cbpy
<
0
){
fprintf
(
stderr
,
"P cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
fprintf
(
stderr
,
"P cbpy corrupted at %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
);
...
@@ -2443,7 +2452,7 @@ int h263_decode_mb(MpegEncContext *s,
...
@@ -2443,7 +2452,7 @@ int h263_decode_mb(MpegEncContext *s,
}
}
return
0
;
return
0
;
}
}
cbpc
=
get_vlc
(
&
s
->
gb
,
&
inter_MCBPC_vlc
);
cbpc
=
get_vlc
2
(
&
s
->
gb
,
inter_MCBPC_vlc
.
table
,
INTER_MCBPC_VLC_BITS
,
2
);
//fprintf(stderr, "\tCBPC: %d", cbpc);
//fprintf(stderr, "\tCBPC: %d", cbpc);
if
(
cbpc
<
0
)
if
(
cbpc
<
0
)
return
-
1
;
return
-
1
;
...
@@ -2459,7 +2468,7 @@ int h263_decode_mb(MpegEncContext *s,
...
@@ -2459,7 +2468,7 @@ int h263_decode_mb(MpegEncContext *s,
if
(
s
->
pict_type
==
S_TYPE
&&
s
->
vol_sprite_usage
==
GMC_SPRITE
&&
(
cbpc
&
16
)
==
0
)
if
(
s
->
pict_type
==
S_TYPE
&&
s
->
vol_sprite_usage
==
GMC_SPRITE
&&
(
cbpc
&
16
)
==
0
)
s
->
mcsel
=
get_bits1
(
&
s
->
gb
);
s
->
mcsel
=
get_bits1
(
&
s
->
gb
);
else
s
->
mcsel
=
0
;
else
s
->
mcsel
=
0
;
cbpy
=
get_vlc
(
&
s
->
gb
,
&
cbpy_vlc
);
cbpy
=
get_vlc
2
(
&
s
->
gb
,
cbpy_vlc
.
table
,
CBPY_VLC_BITS
,
1
);
cbp
=
(
cbpc
&
3
)
|
((
cbpy
^
0xf
)
<<
2
);
cbp
=
(
cbpc
&
3
)
|
((
cbpy
^
0xf
)
<<
2
);
if
(
dquant
)
{
if
(
dquant
)
{
s
->
qscale
+=
quant_tab
[
get_bits
(
&
s
->
gb
,
2
)];
s
->
qscale
+=
quant_tab
[
get_bits
(
&
s
->
gb
,
2
)];
...
@@ -2586,7 +2595,7 @@ int h263_decode_mb(MpegEncContext *s,
...
@@ -2586,7 +2595,7 @@ int h263_decode_mb(MpegEncContext *s,
modb1
=
get_bits1
(
&
s
->
gb
);
modb1
=
get_bits1
(
&
s
->
gb
);
if
(
modb1
==
0
){
if
(
modb1
==
0
){
modb2
=
get_bits1
(
&
s
->
gb
);
modb2
=
get_bits1
(
&
s
->
gb
);
mb_type
=
get_vlc
(
&
s
->
gb
,
&
mb_type_b_vlc
);
mb_type
=
get_vlc
2
(
&
s
->
gb
,
mb_type_b_vlc
.
table
,
MB_TYPE_B_VLC_BITS
,
1
);
if
(
modb2
==
0
)
cbp
=
get_bits
(
&
s
->
gb
,
6
);
if
(
modb2
==
0
)
cbp
=
get_bits
(
&
s
->
gb
,
6
);
else
cbp
=
0
;
else
cbp
=
0
;
if
(
mb_type
&&
cbp
)
{
if
(
mb_type
&&
cbp
)
{
...
@@ -2664,7 +2673,7 @@ int h263_decode_mb(MpegEncContext *s,
...
@@ -2664,7 +2673,7 @@ int h263_decode_mb(MpegEncContext *s,
return
-
1
;
return
-
1
;
}
}
}
else
{
/* I-Frame */
}
else
{
/* I-Frame */
cbpc
=
get_vlc
(
&
s
->
gb
,
&
intra_MCBPC_vlc
);
cbpc
=
get_vlc
2
(
&
s
->
gb
,
intra_MCBPC_vlc
.
table
,
INTRA_MCBPC_VLC_BITS
,
1
);
if
(
cbpc
<
0
)
if
(
cbpc
<
0
)
return
-
1
;
return
-
1
;
dquant
=
cbpc
&
4
;
dquant
=
cbpc
&
4
;
...
@@ -2677,7 +2686,7 @@ intra:
...
@@ -2677,7 +2686,7 @@ intra:
if
(
s
->
ac_pred
&&
s
->
h263_aic
)
if
(
s
->
ac_pred
&&
s
->
h263_aic
)
s
->
h263_aic_dir
=
get_bits1
(
&
s
->
gb
);
s
->
h263_aic_dir
=
get_bits1
(
&
s
->
gb
);
}
}
cbpy
=
get_vlc
(
&
s
->
gb
,
&
cbpy_vlc
);
cbpy
=
get_vlc
2
(
&
s
->
gb
,
cbpy_vlc
.
table
,
CBPY_VLC_BITS
,
1
);
if
(
cbpy
<
0
)
return
-
1
;
if
(
cbpy
<
0
)
return
-
1
;
cbp
=
(
cbpc
&
3
)
|
(
cbpy
<<
2
);
cbp
=
(
cbpc
&
3
)
|
(
cbpy
<<
2
);
if
(
dquant
)
{
if
(
dquant
)
{
...
@@ -2709,7 +2718,7 @@ static int h263_decode_motion(MpegEncContext * s, int pred, int f_code)
...
@@ -2709,7 +2718,7 @@ static int h263_decode_motion(MpegEncContext * s, int pred, int f_code)
{
{
int
code
,
val
,
sign
,
shift
,
l
,
m
;
int
code
,
val
,
sign
,
shift
,
l
,
m
;
code
=
get_vlc
(
&
s
->
gb
,
&
mv_vlc
);
code
=
get_vlc
2
(
&
s
->
gb
,
mv_vlc
.
table
,
MV_VLC_BITS
,
2
);
if
(
code
<
0
)
if
(
code
<
0
)
return
0xffff
;
return
0xffff
;
...
@@ -2822,7 +2831,7 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
...
@@ -2822,7 +2831,7 @@ static int h263_decode_block(MpegEncContext * s, DCTELEM * block,
}
}
for
(;;)
{
for
(;;)
{
code
=
get_vlc
(
&
s
->
gb
,
&
rl
->
vlc
);
code
=
get_vlc
2
(
&
s
->
gb
,
rl
->
vlc
.
table
,
TEX_VLC_BITS
,
2
);
if
(
code
<
0
)
if
(
code
<
0
)
return
-
1
;
return
-
1
;
if
(
code
==
rl
->
n
)
{
if
(
code
==
rl
->
n
)
{
...
@@ -2866,9 +2875,9 @@ static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr)
...
@@ -2866,9 +2875,9 @@ static inline int mpeg4_decode_dc(MpegEncContext * s, int n, int *dir_ptr)
UINT16
*
dc_val
;
UINT16
*
dc_val
;
if
(
n
<
4
)
if
(
n
<
4
)
code
=
get_vlc
(
&
s
->
gb
,
&
dc_lum
);
code
=
get_vlc
2
(
&
s
->
gb
,
dc_lum
.
table
,
DC_VLC_BITS
,
1
);
else
else
code
=
get_vlc
(
&
s
->
gb
,
&
dc_chrom
);
code
=
get_vlc
2
(
&
s
->
gb
,
dc_chrom
.
table
,
DC_VLC_BITS
,
1
);
if
(
code
<
0
||
code
>
9
/* && s->nbit<9 */
){
if
(
code
<
0
||
code
>
9
/* && s->nbit<9 */
){
fprintf
(
stderr
,
"illegal dc vlc
\n
"
);
fprintf
(
stderr
,
"illegal dc vlc
\n
"
);
return
-
1
;
return
-
1
;
...
@@ -2949,7 +2958,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
...
@@ -2949,7 +2958,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
}
}
for
(;;)
{
for
(;;)
{
code
=
get_vlc
(
&
s
->
gb
,
&
rl
->
vlc
);
code
=
get_vlc
2
(
&
s
->
gb
,
rl
->
vlc
.
table
,
TEX_VLC_BITS
,
2
);
if
(
code
<
0
)
if
(
code
<
0
)
return
DECODING_AC_LOST
;
return
DECODING_AC_LOST
;
if
(
code
==
rl
->
n
)
{
if
(
code
==
rl
->
n
)
{
...
@@ -2995,7 +3004,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
...
@@ -2995,7 +3004,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
#endif
#endif
}
else
{
}
else
{
/* second escape */
/* second escape */
code
=
get_vlc
(
&
s
->
gb
,
&
rl
->
vlc
);
code
=
get_vlc
2
(
&
s
->
gb
,
rl
->
vlc
.
table
,
TEX_VLC_BITS
,
2
);
if
(
code
<
0
||
code
>=
rl
->
n
)
if
(
code
<
0
||
code
>=
rl
->
n
)
return
DECODING_AC_LOST
;
return
DECODING_AC_LOST
;
run
=
rl
->
table_run
[
code
];
run
=
rl
->
table_run
[
code
];
...
@@ -3007,7 +3016,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
...
@@ -3007,7 +3016,7 @@ static inline int mpeg4_decode_block(MpegEncContext * s, DCTELEM * block,
}
}
}
else
{
}
else
{
/* first escape */
/* first escape */
code
=
get_vlc
(
&
s
->
gb
,
&
rl
->
vlc
);
code
=
get_vlc
2
(
&
s
->
gb
,
rl
->
vlc
.
table
,
TEX_VLC_BITS
,
2
);
if
(
code
<
0
||
code
>=
rl
->
n
)
if
(
code
<
0
||
code
>=
rl
->
n
)
return
DECODING_AC_LOST
;
return
DECODING_AC_LOST
;
run
=
rl
->
table_run
[
code
];
run
=
rl
->
table_run
[
code
];
...
...
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