Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
a212c8da
Commit
a212c8da
authored
Jun 08, 2019
by
Peter Ross
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vp3: spin off get_eob_run and get_coeff coeff functions
these reoutines are shared by vp3 and vp4.
parent
442375fe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
13 deletions
+26
-13
vp3.c
libavcodec/vp3.c
+26
-13
No files found.
libavcodec/vp3.c
View file @
a212c8da
...
@@ -931,6 +931,30 @@ static int unpack_block_qpis(Vp3DecodeContext *s, GetBitContext *gb)
...
@@ -931,6 +931,30 @@ static int unpack_block_qpis(Vp3DecodeContext *s, GetBitContext *gb)
return
0
;
return
0
;
}
}
static
inline
int
get_eob_run
(
GetBitContext
*
gb
,
int
token
)
{
int
v
=
eob_run_table
[
token
].
base
;
if
(
eob_run_table
[
token
].
bits
)
v
+=
get_bits
(
gb
,
eob_run_table
[
token
].
bits
);
return
v
;
}
static
inline
int
get_coeff
(
GetBitContext
*
gb
,
int
token
,
int16_t
*
coeff
)
{
int
bits_to_get
,
zero_run
;
bits_to_get
=
coeff_get_bits
[
token
];
if
(
bits_to_get
)
bits_to_get
=
get_bits
(
gb
,
bits_to_get
);
*
coeff
=
coeff_tables
[
token
][
bits_to_get
];
zero_run
=
zero_run_base
[
token
];
if
(
zero_run_get_bits
[
token
])
zero_run
+=
get_bits
(
gb
,
zero_run_get_bits
[
token
]);
return
zero_run
;
}
/*
/*
* This function is called by unpack_dct_coeffs() to extract the VLCs from
* This function is called by unpack_dct_coeffs() to extract the VLCs from
* the bitstream. The VLCs encode tokens which are used to unpack DCT
* the bitstream. The VLCs encode tokens which are used to unpack DCT
...
@@ -952,7 +976,6 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
...
@@ -952,7 +976,6 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
int
token
;
int
token
;
int
zero_run
=
0
;
int
zero_run
=
0
;
int16_t
coeff
=
0
;
int16_t
coeff
=
0
;
int
bits_to_get
;
int
blocks_ended
;
int
blocks_ended
;
int
coeff_i
=
0
;
int
coeff_i
=
0
;
int
num_coeffs
=
s
->
num_coded_frags
[
plane
][
coeff_index
];
int
num_coeffs
=
s
->
num_coded_frags
[
plane
][
coeff_index
];
...
@@ -988,10 +1011,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
...
@@ -988,10 +1011,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
token
=
get_vlc2
(
gb
,
vlc_table
,
11
,
3
);
token
=
get_vlc2
(
gb
,
vlc_table
,
11
,
3
);
/* use the token to get a zero run, a coefficient, and an eob run */
/* use the token to get a zero run, a coefficient, and an eob run */
if
((
unsigned
)
token
<=
6U
)
{
if
((
unsigned
)
token
<=
6U
)
{
eob_run
=
eob_run_table
[
token
].
base
;
eob_run
=
get_eob_run
(
gb
,
token
);
if
(
eob_run_table
[
token
].
bits
)
eob_run
+=
get_bits
(
gb
,
eob_run_table
[
token
].
bits
);
if
(
!
eob_run
)
if
(
!
eob_run
)
eob_run
=
INT_MAX
;
eob_run
=
INT_MAX
;
...
@@ -1009,14 +1029,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
...
@@ -1009,14 +1029,7 @@ static int unpack_vlcs(Vp3DecodeContext *s, GetBitContext *gb,
eob_run
=
0
;
eob_run
=
0
;
}
}
}
else
if
(
token
>=
0
)
{
}
else
if
(
token
>=
0
)
{
bits_to_get
=
coeff_get_bits
[
token
];
zero_run
=
get_coeff
(
gb
,
token
,
&
coeff
);
if
(
bits_to_get
)
bits_to_get
=
get_bits
(
gb
,
bits_to_get
);
coeff
=
coeff_tables
[
token
][
bits_to_get
];
zero_run
=
zero_run_base
[
token
];
if
(
zero_run_get_bits
[
token
])
zero_run
+=
get_bits
(
gb
,
zero_run_get_bits
[
token
]);
if
(
zero_run
)
{
if
(
zero_run
)
{
dct_tokens
[
j
++
]
=
TOKEN_ZERO_RUN
(
coeff
,
zero_run
);
dct_tokens
[
j
++
]
=
TOKEN_ZERO_RUN
(
coeff
,
zero_run
);
...
...
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