Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Releases
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefan Westerfeld
ffmpeg
Commits
377cfc28
Commit
377cfc28
authored
Mar 17, 2014
by
Michael Niedermayer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec/vaapi: fix pointer types after H264Picture changes
Signed-off-by:
Michael Niedermayer
<
michaelni@gmx.at
>
parent
9517900b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
12 additions
and
12 deletions
+12
-12
vaapi_h264.c
libavcodec/vaapi_h264.c
+3
-3
vaapi_internal.h
libavcodec/vaapi_internal.h
+2
-2
vaapi_mpeg.c
libavcodec/vaapi_mpeg.c
+1
-1
vaapi_mpeg2.c
libavcodec/vaapi_mpeg2.c
+2
-2
vaapi_mpeg4.c
libavcodec/vaapi_mpeg4.c
+2
-2
vaapi_vc1.c
libavcodec/vaapi_vc1.c
+2
-2
No files found.
libavcodec/vaapi_h264.c
View file @
377cfc28
...
...
@@ -59,7 +59,7 @@ static void fill_vaapi_pic(VAPictureH264 *va_pic,
pic_structure
=
pic
->
reference
;
pic_structure
&=
PICT_FRAME
;
/* PICT_TOP_FIELD|PICT_BOTTOM_FIELD */
va_pic
->
picture_id
=
ff_vaapi_get_surface_id
(
pic
);
va_pic
->
picture_id
=
ff_vaapi_get_surface_id
(
&
pic
->
f
);
va_pic
->
frame_idx
=
pic
->
long_ref
?
pic
->
pic_id
:
pic
->
frame_num
;
va_pic
->
flags
=
0
;
...
...
@@ -99,7 +99,7 @@ static int dpb_add(DPB *dpb, H264Picture *pic)
for
(
i
=
0
;
i
<
dpb
->
size
;
i
++
)
{
VAPictureH264
*
const
va_pic
=
&
dpb
->
va_pics
[
i
];
if
(
va_pic
->
picture_id
==
ff_vaapi_get_surface_id
(
pic
))
{
if
(
va_pic
->
picture_id
==
ff_vaapi_get_surface_id
(
&
pic
->
f
))
{
VAPictureH264
temp_va_pic
;
fill_vaapi_pic
(
&
temp_va_pic
,
pic
,
0
);
...
...
@@ -299,7 +299,7 @@ static int vaapi_h264_end_frame(AVCodecContext *avctx)
if
(
ret
<
0
)
goto
finish
;
ret
=
ff_vaapi_render_picture
(
vactx
,
ff_vaapi_get_surface_id
(
h
->
cur_pic_ptr
));
ret
=
ff_vaapi_render_picture
(
vactx
,
ff_vaapi_get_surface_id
(
&
h
->
cur_pic_ptr
->
f
));
if
(
ret
<
0
)
goto
finish
;
...
...
libavcodec/vaapi_internal.h
View file @
377cfc28
...
...
@@ -36,9 +36,9 @@
*/
/** Extract VASurfaceID from a Picture */
static
inline
VASurfaceID
ff_vaapi_get_surface_id
(
Picture
*
pic
)
static
inline
VASurfaceID
ff_vaapi_get_surface_id
(
AVFrame
*
frm
)
{
return
(
uintptr_t
)
pic
->
f
.
data
[
3
];
return
(
uintptr_t
)
frm
->
data
[
3
];
}
/** Common AVHWAccel.end_frame() implementation */
...
...
libavcodec/vaapi_mpeg.c
View file @
377cfc28
...
...
@@ -35,7 +35,7 @@ int ff_vaapi_mpeg_end_frame(AVCodecContext *avctx)
goto
finish
;
ret
=
ff_vaapi_render_picture
(
vactx
,
ff_vaapi_get_surface_id
(
s
->
current_picture_ptr
));
ff_vaapi_get_surface_id
(
&
s
->
current_picture_ptr
->
f
));
if
(
ret
<
0
)
goto
finish
;
...
...
libavcodec/vaapi_mpeg2.c
View file @
377cfc28
...
...
@@ -73,10 +73,10 @@ static int vaapi_mpeg2_start_frame(AVCodecContext *avctx, av_unused const uint8_
switch
(
s
->
pict_type
)
{
case
AV_PICTURE_TYPE_B
:
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
);
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
.
f
);
// fall-through
case
AV_PICTURE_TYPE_P
:
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
);
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
.
f
);
break
;
}
...
...
libavcodec/vaapi_mpeg4.c
View file @
377cfc28
...
...
@@ -95,9 +95,9 @@ static int vaapi_mpeg4_start_frame(AVCodecContext *avctx, av_unused const uint8_
pic_param
->
TRD
=
s
->
pp_time
;
if
(
s
->
pict_type
==
AV_PICTURE_TYPE_B
)
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
);
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
.
f
);
if
(
s
->
pict_type
!=
AV_PICTURE_TYPE_I
)
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
);
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
.
f
);
/* Fill in VAIQMatrixBufferMPEG4 */
/* Only the first inverse quantisation method uses the weighting matrices */
...
...
libavcodec/vaapi_vc1.c
View file @
377cfc28
...
...
@@ -258,10 +258,10 @@ static int vaapi_vc1_start_frame(AVCodecContext *avctx, av_unused const uint8_t
switch
(
s
->
pict_type
)
{
case
AV_PICTURE_TYPE_B
:
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
);
pic_param
->
backward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
next_picture
.
f
);
// fall-through
case
AV_PICTURE_TYPE_P
:
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
);
pic_param
->
forward_reference_picture
=
ff_vaapi_get_surface_id
(
&
s
->
last_picture
.
f
);
break
;
}
...
...
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