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
bc5abfb1
Commit
bc5abfb1
authored
Nov 26, 2013
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mpeg4videodec: move MpegEncContext.rvlc to Mpeg4DecContext
parent
9f0617d2
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
4 deletions
+5
-4
mpeg4video.h
libavcodec/mpeg4video.h
+2
-0
mpeg4videodec.c
libavcodec/mpeg4videodec.c
+2
-2
mpegvideo.h
libavcodec/mpegvideo.h
+0
-1
vaapi_mpeg4.c
libavcodec/vaapi_mpeg4.c
+1
-1
No files found.
libavcodec/mpeg4video.h
View file @
bc5abfb1
...
...
@@ -66,6 +66,8 @@ typedef struct Mpeg4DecContext {
int
time_increment_bits
;
int
shape
;
int
vol_sprite_usage
;
// reversible vlc
int
rvlc
;
}
Mpeg4DecContext
;
/* dc encoding for mpeg4 */
...
...
libavcodec/mpeg4videodec.c
View file @
bc5abfb1
...
...
@@ -1226,7 +1226,7 @@ static int mpeg4_decode_partitioned_mb(MpegEncContext *s, int16_t block[6][64])
s
->
dsp
.
clear_blocks
(
s
->
block
[
0
]);
/* decode each block */
for
(
i
=
0
;
i
<
6
;
i
++
)
{
if
(
mpeg4_decode_block
(
s
,
block
[
i
],
i
,
cbp
&
32
,
s
->
mb_intra
,
s
->
rvlc
)
<
0
)
{
if
(
mpeg4_decode_block
(
s
,
block
[
i
],
i
,
cbp
&
32
,
s
->
mb_intra
,
ctx
->
rvlc
)
<
0
)
{
av_log
(
s
->
avctx
,
AV_LOG_ERROR
,
"texture corrupted at %d %d %d
\n
"
,
s
->
mb_x
,
s
->
mb_y
,
s
->
mb_intra
);
...
...
@@ -1935,7 +1935,7 @@ no_cplx_est:
s
->
data_partitioning
=
get_bits1
(
gb
);
if
(
s
->
data_partitioning
)
s
->
rvlc
=
get_bits1
(
gb
);
ctx
->
rvlc
=
get_bits1
(
gb
);
if
(
vo_ver_id
!=
1
)
{
s
->
new_pred
=
get_bits1
(
gb
);
...
...
libavcodec/mpegvideo.h
View file @
bc5abfb1
...
...
@@ -599,7 +599,6 @@ typedef struct MpegEncContext {
int
low_latency_sprite
;
int
data_partitioning
;
///< data partitioning flag from header
int
partitioned_frame
;
///< is current frame partitioned
int
rvlc
;
///< reversible vlc
int
resync_marker
;
///< could this stream contain resync markers
int
low_delay
;
///< no reordering needed / has no b-frames
int
vo_type
;
...
...
libavcodec/vaapi_mpeg4.c
View file @
bc5abfb1
...
...
@@ -71,7 +71,7 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
pic_param
->
vol_fields
.
bits
.
quant_type
=
s
->
mpeg_quant
;
pic_param
->
vol_fields
.
bits
.
quarter_sample
=
s
->
quarter_sample
;
pic_param
->
vol_fields
.
bits
.
data_partitioned
=
s
->
data_partitioning
;
pic_param
->
vol_fields
.
bits
.
reversible_vlc
=
s
->
rvlc
;
pic_param
->
vol_fields
.
bits
.
reversible_vlc
=
ctx
->
rvlc
;
pic_param
->
vol_fields
.
bits
.
resync_marker_disable
=
!
s
->
resync_marker
;
pic_param
->
no_of_sprite_warping_points
=
s
->
num_sprite_warping_points
;
for
(
i
=
0
;
i
<
s
->
num_sprite_warping_points
&&
i
<
3
;
i
++
)
{
...
...
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