Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ef166330
Commit
ef166330
authored
Jun 22, 2013
by
Rémi Denis-Courmont
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
vdpau: chroma filter cleanup
parent
412f47fa
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
47 additions
and
17 deletions
+47
-17
modules/hw/vdpau/Makefile.am
modules/hw/vdpau/Makefile.am
+1
-1
modules/hw/vdpau/chroma.c
modules/hw/vdpau/chroma.c
+45
-15
modules/hw/vdpau/vlc_vdpau.h
modules/hw/vdpau/vlc_vdpau.h
+1
-1
No files found.
modules/hw/vdpau/Makefile.am
View file @
ef166330
...
@@ -26,7 +26,7 @@ if HAVE_AVCODEC_VDPAU
...
@@ -26,7 +26,7 @@ if HAVE_AVCODEC_VDPAU
libvlc_LTLIBRARIES
+=
libvdpau_avcodec_plugin.la
libvlc_LTLIBRARIES
+=
libvdpau_avcodec_plugin.la
endif
endif
libvdpau_chroma_plugin_la_SOURCES
=
chroma.c
libvdpau_chroma_plugin_la_SOURCES
=
chroma.c
picture.c
libvdpau_chroma_plugin_la_CFLAGS
=
$(AM_CFLAGS)
# dummy
libvdpau_chroma_plugin_la_CFLAGS
=
$(AM_CFLAGS)
# dummy
libvdpau_chroma_plugin_la_LIBADD
=
$(AM_LIBADD)
libvdpau_chroma_plugin_la_LIBADD
=
$(AM_LIBADD)
libvlc_LTLIBRARIES
+=
libvdpau_chroma_plugin.la
libvlc_LTLIBRARIES
+=
libvdpau_chroma_plugin.la
...
...
modules/hw/vdpau/chroma.c
View file @
ef166330
...
@@ -33,12 +33,12 @@
...
@@ -33,12 +33,12 @@
struct
filter_sys_t
struct
filter_sys_t
{
{
const
vdp_t
*
vdp
;
vdp_t
*
vdp
;
VdpDevice
device
;
VdpDevice
device
;
VdpVideoMixer
mixer
;
VdpVideoMixer
mixer
;
VdpChromaType
chroma
;
VdpChromaType
chroma
;
VdpYCbCrFormat
format
;
VdpYCbCrFormat
format
;
VdpVideoSurface
(
*
import
)(
filter_t
*
,
picture_t
*
);
picture_t
*
(
*
import
)(
filter_t
*
,
picture_t
*
);
};
};
/** Create VDPAU video mixer */
/** Create VDPAU video mixer */
...
@@ -140,7 +140,7 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
...
@@ -140,7 +140,7 @@ static picture_t *VideoExport(filter_t *filter, picture_t *src, picture_t *dst)
}
}
/** Import VLC picture into VDPAU video surface */
/** Import VLC picture into VDPAU video surface */
static
VdpVideoSurface
VideoImport
(
filter_t
*
filter
,
picture_t
*
src
)
static
picture_t
*
VideoImport
(
filter_t
*
filter
,
picture_t
*
src
)
{
{
filter_sys_t
*
sys
=
filter
->
p_sys
;
filter_sys_t
*
sys
=
filter
->
p_sys
;
VdpVideoSurface
surface
;
VdpVideoSurface
surface
;
...
@@ -154,7 +154,8 @@ static VdpVideoSurface VideoImport(filter_t *filter, picture_t *src)
...
@@ -154,7 +154,8 @@ static VdpVideoSurface VideoImport(filter_t *filter, picture_t *src)
{
{
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"surface"
,
"creation"
,
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"surface"
,
"creation"
,
vdp_get_error_string
(
sys
->
vdp
,
err
));
vdp_get_error_string
(
sys
->
vdp
,
err
));
return
VDP_INVALID_HANDLE
;
picture_Release
(
src
);
return
NULL
;
}
}
/* Put bits */
/* Put bits */
...
@@ -179,21 +180,49 @@ static VdpVideoSurface VideoImport(filter_t *filter, picture_t *src)
...
@@ -179,21 +180,49 @@ static VdpVideoSurface VideoImport(filter_t *filter, picture_t *src)
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"surface"
,
"import"
,
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"surface"
,
"import"
,
vdp_get_error_string
(
sys
->
vdp
,
err
));
vdp_get_error_string
(
sys
->
vdp
,
err
));
vdp_video_surface_destroy
(
sys
->
vdp
,
surface
);
vdp_video_surface_destroy
(
sys
->
vdp
,
surface
);
surface
=
VDP_INVALID_HANDLE
;
goto
error
;
}
}
return
surface
;
/* Wrap surface into a picture */
video_format_t
fmt
=
src
->
format
;
fmt
.
i_chroma
=
(
sys
->
chroma
==
VDP_CHROMA_TYPE_420
)
?
VLC_CODEC_VDPAU_VIDEO_420
:
VLC_CODEC_VDPAU_VIDEO_422
;
picture_t
*
dst
=
picture_NewFromFormat
(
&
fmt
);
if
(
unlikely
(
dst
==
NULL
))
goto
error
;
picture_CopyProperties
(
dst
,
src
);
picture_Release
(
src
);
err
=
vlc_vdp_video_attach
(
sys
->
vdp
,
surface
,
dst
);
if
(
unlikely
(
err
!=
VDP_STATUS_OK
))
{
picture_Release
(
dst
);
dst
=
NULL
;
}
return
dst
;
error:
vdp_video_surface_destroy
(
sys
->
vdp
,
surface
);
picture_Release
(
src
);
return
NULL
;
}
}
static
VdpVideoSurface
VideoPassthrough
(
filter_t
*
filter
,
picture_t
*
src
)
static
picture_t
*
VideoPassthrough
(
filter_t
*
filter
,
picture_t
*
src
)
{
{
vlc_vdp_video_t
*
psys
=
src
->
context
;
vlc_vdp_video_t
*
psys
=
src
->
context
;
if
(
unlikely
(
psys
==
NULL
))
if
(
unlikely
(
psys
==
NULL
))
{
{
msg_Err
(
filter
,
"corrupt VDPAU video surface"
);
msg_Err
(
filter
,
"corrupt VDPAU video surface"
);
return
VDP_INVALID_HANDLE
;
return
NULL
;
}
}
/* FIXME: deal with mismatched VDPAU devices */
/* FIXME: deal with mismatched VDPAU devices */
return
src
;
}
static
inline
VdpVideoSurface
picture_GetVideoSurface
(
const
picture_t
*
pic
)
{
vlc_vdp_video_t
*
psys
=
pic
->
context
;
return
psys
->
surface
;
return
psys
->
surface
;
}
}
...
@@ -204,13 +233,17 @@ static picture_t *MixerRender(filter_t *filter, picture_t *src)
...
@@ -204,13 +233,17 @@ static picture_t *MixerRender(filter_t *filter, picture_t *src)
picture_t
*
dst
=
OutputAllocate
(
filter
);
picture_t
*
dst
=
OutputAllocate
(
filter
);
if
(
dst
==
NULL
)
if
(
dst
==
NULL
)
goto
out
;
goto
out
;
picture_CopyProperties
(
dst
,
src
);
VdpVideoSurface
surface
=
sys
->
import
(
filter
,
src
);
src
=
sys
->
import
(
filter
,
src
);
if
(
surface
==
VDP_INVALID_HANDLE
)
if
(
src
==
NULL
)
goto
drop
;
{
picture_Release
(
dst
);
return
NULL
;
}
picture_CopyProperties
(
dst
,
src
);
/* Render video into output */
/* Render video into output */
VdpVideoSurface
surface
=
picture_GetVideoSurface
(
src
);
VdpRect
src_rect
=
{
VdpRect
src_rect
=
{
filter
->
fmt_in
.
video
.
i_x_offset
,
filter
->
fmt_in
.
video
.
i_y_offset
,
filter
->
fmt_in
.
video
.
i_x_offset
,
filter
->
fmt_in
.
video
.
i_y_offset
,
filter
->
fmt_in
.
video
.
i_visible_width
+
filter
->
fmt_in
.
video
.
i_x_offset
,
filter
->
fmt_in
.
video
.
i_visible_width
+
filter
->
fmt_in
.
video
.
i_x_offset
,
...
@@ -228,13 +261,10 @@ static picture_t *MixerRender(filter_t *filter, picture_t *src)
...
@@ -228,13 +261,10 @@ static picture_t *MixerRender(filter_t *filter, picture_t *src)
NULL
,
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_FRAME
,
NULL
,
VDP_VIDEO_MIXER_PICTURE_STRUCTURE_FRAME
,
0
,
NULL
,
surface
,
0
,
NULL
,
&
src_rect
,
0
,
NULL
,
surface
,
0
,
NULL
,
&
src_rect
,
output
,
&
dst_rect
,
NULL
,
0
,
NULL
);
output
,
&
dst_rect
,
NULL
,
0
,
NULL
);
if
(
sys
->
import
!=
VideoPassthrough
)
vdp_video_surface_destroy
(
sys
->
vdp
,
surface
);
if
(
err
!=
VDP_STATUS_OK
)
if
(
err
!=
VDP_STATUS_OK
)
{
{
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"mixer"
,
"rendering"
,
msg_Err
(
filter
,
"video %s %s failure: %s"
,
"mixer"
,
"rendering"
,
vdp_get_error_string
(
sys
->
vdp
,
err
));
vdp_get_error_string
(
sys
->
vdp
,
err
));
drop:
picture_Release
(
dst
);
picture_Release
(
dst
);
dst
=
NULL
;
dst
=
NULL
;
}
}
...
...
modules/hw/vdpau/vlc_vdpau.h
View file @
ef166330
...
@@ -242,7 +242,7 @@ struct picture_sys_t
...
@@ -242,7 +242,7 @@ struct picture_sys_t
{
{
VdpOutputSurface
surface
;
VdpOutputSurface
surface
;
VdpDevice
device
;
VdpDevice
device
;
const
vdp_t
*
vdp
;
vdp_t
*
vdp
;
};
};
typedef
struct
vlc_vdp_video
typedef
struct
vlc_vdp_video
...
...
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