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
a4ab70f9
Commit
a4ab70f9
authored
Jun 27, 2011
by
Carl Eugen Hoyos
Committed by
Jason Garrett-Glaser
Jul 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg: Fix VDPAU decoding for some H264 samples.
parent
58f7aad0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
vdpau.c
libavcodec/vdpau.c
+2
-1
No files found.
libavcodec/vdpau.c
View file @
a4ab70f9
...
...
@@ -183,7 +183,8 @@ void ff_vdpau_h264_picture_complete(MpegEncContext *s)
render
->
info
.
h264
.
deblocking_filter_control_present_flag
=
h
->
pps
.
deblocking_filter_parameters_present
;
render
->
info
.
h264
.
redundant_pic_cnt_present_flag
=
h
->
pps
.
redundant_pic_cnt_present
;
memcpy
(
render
->
info
.
h264
.
scaling_lists_4x4
,
h
->
pps
.
scaling_matrix4
,
sizeof
(
render
->
info
.
h264
.
scaling_lists_4x4
));
memcpy
(
render
->
info
.
h264
.
scaling_lists_8x8
,
h
->
pps
.
scaling_matrix8
,
sizeof
(
render
->
info
.
h264
.
scaling_lists_8x8
));
memcpy
(
render
->
info
.
h264
.
scaling_lists_8x8
[
0
],
h
->
pps
.
scaling_matrix8
[
0
],
sizeof
(
render
->
info
.
h264
.
scaling_lists_8x8
[
0
]));
memcpy
(
render
->
info
.
h264
.
scaling_lists_8x8
[
1
],
h
->
pps
.
scaling_matrix8
[
3
],
sizeof
(
render
->
info
.
h264
.
scaling_lists_8x8
[
0
]));
ff_draw_horiz_band
(
s
,
0
,
s
->
avctx
->
height
);
render
->
bitstream_buffers_used
=
0
;
...
...
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