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
fdc48b68
Commit
fdc48b68
authored
Sep 21, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Privatized nealy all spu_t fields.
parent
413fc5d8
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
188 additions
and
159 deletions
+188
-159
include/vlc_osd.h
include/vlc_osd.h
+9
-24
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+179
-135
No files found.
include/vlc_osd.h
View file @
fdc48b68
...
...
@@ -54,6 +54,8 @@ extern "C" {
#include <vlc_vout.h>
typedef
struct
spu_private_t
spu_private_t
;
/**
* Subpicture unit descriptor
*/
...
...
@@ -61,26 +63,15 @@ struct spu_t
{
VLC_COMMON_MEMBERS
vlc_mutex_t
subpicture_lock
;
/**< subpicture heap lock */
subpicture_t
p_subpicture
[
VOUT_MAX_SUBPICTURES
];
/**< subpictures */
int
i_channel
;
/**< number of subpicture channels registered */
int64_t
i_subpicture_order
;
/**< number of created subpicture since spu creation */
filter_t
*
p_blend
;
/**< alpha blending module */
filter_t
*
p_text
;
/**< text renderer module */
filter_t
*
p_scale_yuvp
;
/**< scaling module for YUVP */
filter_t
*
p_scale
;
/**< scaling module (all but YUVP) */
bool
b_force_crop
;
/**< force cropping of subpicture */
int
i_crop_x
,
i_crop_y
,
i_crop_width
,
i_crop_height
;
/**< cropping */
int
(
*
pf_control
)(
spu_t
*
,
int
,
va_list
);
int
i_margin
;
/**< force position of a subpicture */
bool
b_force_palette
;
/**< force palette of subpicture */
uint8_t
palette
[
4
][
4
];
/**< forced palette */
int
(
*
pf_control
)
(
spu_t
*
,
int
,
va_list
);
spu_private_t
*
p
;
};
/* Supciture filters */
filter_chain_t
*
p_chain
;
enum
spu_query_e
{
SPU_CHANNEL_REGISTER
,
/* arg1= int * res= */
SPU_CHANNEL_CLEAR
/* arg1= int res= */
};
static
inline
int
spu_vaControl
(
spu_t
*
p_spu
,
int
i_query
,
va_list
args
)
...
...
@@ -102,12 +93,6 @@ static inline int spu_Control( spu_t *p_spu, int i_query, ... )
return
i_result
;
}
enum
spu_query_e
{
SPU_CHANNEL_REGISTER
,
/* arg1= int * res= */
SPU_CHANNEL_CLEAR
/* arg1= int res= */
};
#define spu_Create(a) __spu_Create(VLC_OBJECT(a))
VLC_EXPORT
(
spu_t
*
,
__spu_Create
,
(
vlc_object_t
*
)
);
VLC_EXPORT
(
int
,
spu_Init
,
(
spu_t
*
)
);
...
...
src/video_output/vout_subpictures.c
View file @
fdc48b68
This diff is collapsed.
Click to expand it.
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