Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-gpu
Commits
e3d44222
Commit
e3d44222
authored
Jun 20, 2013
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec: allow selecting hw accelerated decoding with and without accelerated video outputs.
Use p_va->pix_fmt to decide what to do.
parent
f839e629
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
119 additions
and
43 deletions
+119
-43
modules/codec/avcodec/video.c
modules/codec/avcodec/video.c
+119
-43
No files found.
modules/codec/avcodec/video.c
View file @
e3d44222
...
...
@@ -716,23 +716,50 @@ picture_t *DecodeVideo( decoder_t *p_dec, block_t **pp_block )
if
(
!
b_drawpicture
||
(
!
p_sys
->
p_va
&&
!
p_sys
->
p_ff_pic
->
linesize
[
0
]
)
)
continue
;
if
(
p_sys
->
p_va
&&
p_sys
->
p_ff_pic
->
opaque
)
if
(
p_sys
->
p_va
!=
NULL
||
p_sys
->
p_ff_pic
->
opaque
==
NULL
)
{
p_pic
=
(
picture_t
*
)
p_sys
->
p_ff_pic
->
opaque
;
if
(
p_pic
)
decoder_LinkPicture
(
p_dec
,
p_pic
);
/* Fill p_picture_t from AVVideoFrame and do chroma conversion
* if needed */
ffmpeg_CopyPicture
(
p_dec
,
p_pic
,
p_sys
->
p_ff_pic
);
}
else
if
(
p_sys
->
p_va
!=
NULL
||
p_sys
->
p_ff_pic
->
opaque
==
NULL
)
{
/* Get a new picture */
p_pic
=
ffmpeg_NewPictBuf
(
p_dec
,
p_context
);
if
(
!
p_pic
)
if
(
p_sys
->
p_va
)
{
block_Release
(
p_block
);
return
NULL
;
switch
(
p_sys
->
p_va
->
pix_fmt
)
{
case
PIX_FMT_VAAPI_VLD
:
if
(
p_sys
->
p_ff_pic
->
opaque
)
{
p_pic
=
(
picture_t
*
)
p_sys
->
p_ff_pic
->
opaque
;
if
(
p_pic
)
{
decoder_LinkPicture
(
p_dec
,
p_pic
);
break
;
}
}
/* NOTE: intentional fallthrough !!!
* When no VAAPI accelerated video output is loaded then only use
* hardware accelerated decoding. */
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 92, 100 )
case
AV_PIX_FMT_VDPAU
:
#endif
case
PIX_FMT_DXVA2_VLD
:
default:
assert
(
p_pic
);
/* Get a new picture */
p_pic
=
ffmpeg_NewPictBuf
(
p_dec
,
p_context
);
if
(
!
p_pic
)
{
block_Release
(
p_block
);
return
NULL
;
}
break
;
}
}
else
{
/* Get a new picture */
p_pic
=
ffmpeg_NewPictBuf
(
p_dec
,
p_context
);
if
(
!
p_pic
)
{
block_Release
(
p_block
);
return
NULL
;
}
}
/* Fill p_picture_t from AVVideoFrame and do chroma conversion
...
...
@@ -911,10 +938,26 @@ static void ffmpeg_CopyPicture( decoder_t *p_dec,
if
(
p_sys
->
p_va
)
{
if
(
p_pic
->
format
.
i_chroma
==
VLC_CODEC_VAAPI_SURFACE
)
vlc_va_Display
(
p_sys
->
p_va
,
p_pic
);
else
vlc_va_Extract
(
p_sys
->
p_va
,
p_pic
,
p_ff_pic
);
switch
(
p_sys
->
p_va
->
pix_fmt
)
{
case
PIX_FMT_VAAPI_VLD
:
if
(
p_pic
->
format
.
i_chroma
==
VLC_CODEC_VAAPI_SURFACE
)
{
vlc_va_Display
(
p_sys
->
p_va
,
p_pic
);
break
;
}
/* NOTE: intentional fallthrough !!!
* When no VAAPI accelerated video output is loaded then only use
* hardware accelerated decoding. */
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 92, 100 )
case
AV_PIX_FMT_VDPAU
:
#endif
case
PIX_FMT_DXVA2_VLD
:
default:
vlc_va_Extract
(
p_sys
->
p_va
,
p_pic
,
p_ff_pic
);
break
;
}
}
else
if
(
TestFfmpegChroma
(
p_sys
->
p_context
->
pix_fmt
,
-
1
)
==
VLC_SUCCESS
)
{
...
...
@@ -958,7 +1001,7 @@ static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
{
decoder_t
*
p_dec
=
(
decoder_t
*
)
p_context
->
opaque
;
decoder_sys_t
*
p_sys
=
p_dec
->
p_sys
;
picture_t
*
p_pic
;
picture_t
*
p_pic
=
NULL
;
/* */
p_ff_pic
->
opaque
=
NULL
;
...
...
@@ -985,26 +1028,40 @@ static int ffmpeg_GetFrameBuf( struct AVCodecContext *p_context,
assert
(
0
);
#endif
/* NOTE: Get first picture from video output instead of from the
* normal (non-accellerated vouts) mechanism. The drawback is that
* decoding the first pictures is delayed with the creation of the
* video output module.
*/
p_pic
=
ffmpeg_NewPictBuf
(
p_dec
,
p_sys
->
p_context
);
if
(
p_pic
&&
(
p_pic
->
format
.
i_chroma
==
VLC_CODEC_VAAPI_SURFACE
)
)
{
p_ff_pic
->
opaque
=
(
void
*
)
p_pic
;
vlc_va_Put
(
p_sys
->
p_va
,
p_ff_pic
,
p_pic
);
}
else
switch
(
p_sys
->
p_va
->
pix_fmt
)
{
if
(
p_pic
)
picture_Release
(
p_pic
);
/* NOTE: Get first picture from video output instead of from the
* normal (non-accellerated vouts) mechanism. The drawback is that
* decoding the first pictures is delayed with the creation of the
* video output module. */
case
PIX_FMT_VAAPI_VLD
:
p_pic
=
ffmpeg_NewPictBuf
(
p_dec
,
p_sys
->
p_context
);
if
(
p_pic
)
{
if
(
p_pic
->
format
.
i_chroma
==
VLC_CODEC_VAAPI_SURFACE
)
{
/* keep picture around */
p_ff_pic
->
opaque
=
(
void
*
)
p_pic
;
vlc_va_Put
(
p_sys
->
p_va
,
p_ff_pic
,
p_pic
);
return
0
;
}
picture_Release
(
p_pic
);
}
if
(
vlc_va_Get
(
p_sys
->
p_va
,
p_ff_pic
)
)
{
msg_Err
(
p_dec
,
"vaGrabSurface failed"
);
return
-
1
;
}
/* NOTE: intentional fallthrough !!!
* When no VAAPI accelerated video output is loaded then only use
* hardware accelerated decoding. */
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 92, 100 )
case
AV_PIX_FMT_VDPAU
:
#endif
case
PIX_FMT_DXVA2_VLD
:
default:
if
(
vlc_va_Get
(
p_sys
->
p_va
,
p_ff_pic
)
)
{
msg_Err
(
p_dec
,
"vlc_va_Get() failed"
);
return
-
1
;
}
break
;
}
return
0
;
}
...
...
@@ -1114,11 +1171,30 @@ static void ffmpeg_ReleaseFrameBuf( struct AVCodecContext *p_context,
if
(
p_sys
->
p_va
)
{
picture_t
*
p_pic
=
(
picture_t
*
)
p_ff_pic
->
opaque
;
if
(
p_pic
)
decoder_UnlinkPicture
(
p_dec
,
p_pic
);
else
vlc_va_Release
(
p_sys
->
p_va
,
p_ff_pic
);
switch
(
p_sys
->
p_va
->
pix_fmt
)
{
case
PIX_FMT_VAAPI_VLD
:
{
picture_t
*
p_pic
=
(
picture_t
*
)
p_ff_pic
->
opaque
;
if
(
p_pic
)
{
decoder_UnlinkPicture
(
p_dec
,
p_pic
);
break
;
}
/* NOTE: intentional fallthrough !!
* When no hw accelerated video output is loaded, then
* p_ff_pic->opaque will be NULL. Instead copy the
* picture from GPU to main memory.
*/
}
#if LIBAVCODEC_VERSION_INT >= AV_VERSION_INT( 54, 92, 100 )
case
AV_PIX_FMT_VDPAU
:
#endif
case
PIX_FMT_DXVA2_VLD
:
default:
vlc_va_Release
(
p_sys
->
p_va
,
p_ff_pic
);
break
;
}
}
else
if
(
!
p_ff_pic
->
opaque
)
{
...
...
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