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
4f793a16
Commit
4f793a16
authored
Jul 12, 2008
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed resize of subtitle with original size specified (close #1683 with
the help of thedj) Clean up.
parent
49776bde
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
37 deletions
+44
-37
src/video_output/vout_subpictures.c
src/video_output/vout_subpictures.c
+44
-37
No files found.
src/video_output/vout_subpictures.c
View file @
4f793a16
...
...
@@ -767,7 +767,7 @@ static void SpuRenderRegion( spu_t *p_spu,
}
}
/* And
the use the scale
picture */
/* And
use the scaled
picture */
if
(
p_region
->
p_cache
)
p_region
=
p_region
->
p_cache
;
}
...
...
@@ -958,6 +958,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
if
(
(
i_source_video_height
==
p_subpic
->
i_original_picture_height
)
&&
(
i_source_video_width
==
p_subpic
->
i_original_picture_width
)
)
{
/* FIXME this looks wrong */
p_subpic
->
i_original_picture_height
=
0
;
p_subpic
->
i_original_picture_width
=
0
;
}
...
...
@@ -1021,8 +1022,8 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
if
(
p_text_region
&&
(
(
p_text_region
->
i_align
&
SUBPICTURE_RENDERED
)
==
0
)
)
{
if
(
(
p_subpic
->
i_original_picture_height
>
0
)
&&
(
p_subpic
->
i_original_picture_width
>
0
)
)
if
(
p_subpic
->
i_original_picture_height
>
0
&&
p_subpic
->
i_original_picture_width
>
0
)
{
p_spu
->
p_text
->
fmt_out
.
video
.
i_width
=
p_spu
->
p_text
->
fmt_out
.
video
.
i_visible_width
=
...
...
@@ -1042,31 +1043,33 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
}
}
/* */
/* XXX for text:
* scale[] allows to pass from rendered size (by text module) to video output size */
pi_scale_width
[
SCALE_TEXT
]
=
p_fmt
->
i_width
*
1000
/
p_spu
->
p_text
->
fmt_out
.
video
.
i_width
;
pi_scale_height
[
SCALE_TEXT
]
=
p_fmt
->
i_height
*
1000
/
p_spu
->
p_text
->
fmt_out
.
video
.
i_height
;
}
else
{
/* Just set a value to avoid using invalid memory while looping over the array */
pi_scale_width
[
SCALE_TEXT
]
=
pi_scale_height
[
SCALE_TEXT
]
=
1000
;
}
pi_scale_width
[
SCALE_DEFAULT
]
=
i_scale_width_orig
;
pi_scale_height
[
SCALE_DEFAULT
]
=
i_scale_height_orig
;
/* XXX for default:
* scale[] allows to pass from native (either video or original) size to output size */
/* If we have an explicit size plane to render to, then turn off
* the fontsize rescaling.
*/
if
(
(
p_subpic
->
i_original_picture_height
>
0
)
&&
(
p_subpic
->
i_original_picture_width
>
0
)
)
if
(
p_subpic
->
i_original_picture_height
>
0
&&
p_subpic
->
i_original_picture_width
>
0
)
{
#if 1
/* FIXME That seems so wrong */
i_scale_width_orig
=
1000
;
i_scale_height_orig
=
1000
;
#else
/* It is probably that :*/
pi_scale_width
[
SCALE_DEFAULT
]
=
i_scale_width_orig
*
i_source_video_width
/
p_subpic
->
i_original_picture_width
;
pi_scale_height
[
SCALE_DEFAULT
]
=
i_scale_height_orig
*
i_source_video_height
/
p_subpic
->
i_original_picture_height
;
#endif
pi_scale_width
[
SCALE_DEFAULT
]
=
p_fmt
->
i_width
*
1000
/
p_subpic
->
i_original_picture_width
;
pi_scale_height
[
SCALE_DEFAULT
]
=
p_fmt
->
i_height
*
1000
/
p_subpic
->
i_original_picture_height
;
}
else
{
pi_scale_width
[
SCALE_DEFAULT
]
=
i_scale_width_orig
;
pi_scale_height
[
SCALE_DEFAULT
]
=
i_scale_height_orig
;
}
for
(
k
=
0
;
k
<
SCALE_SIZE
;
k
++
)
...
...
@@ -1075,8 +1078,8 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
* with above by instead rendering to an output pane of the
* explicit dimensions specified - we don't need to scale it.
*/
if
(
(
p_subpic
->
i_original_picture_height
>
0
)
&&
(
p_subpic
->
i_original_picture_width
<=
0
)
)
if
(
p_subpic
->
i_original_picture_height
>
0
&&
p_subpic
->
i_original_picture_width
<=
0
)
{
pi_scale_height
[
k
]
=
pi_scale_height
[
k
]
*
i_source_video_height
/
p_subpic
->
i_original_picture_height
;
...
...
@@ -1086,27 +1089,31 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
}
/* Set default subpicture aspect ratio */
if
(
p_region
->
fmt
.
i_aspect
&&
(
!
p_region
->
fmt
.
i_sar_num
||
!
p_region
->
fmt
.
i_sar_den
)
)
if
(
!
p_region
->
fmt
.
i_sar_num
||
!
p_region
->
fmt
.
i_sar_den
)
{
if
(
p_region
->
fmt
.
i_aspect
!=
0
)
{
p_region
->
fmt
.
i_sar_den
=
p_region
->
fmt
.
i_aspect
;
p_region
->
fmt
.
i_sar_num
=
VOUT_ASPECT_FACTOR
;
}
if
(
!
p_region
->
fmt
.
i_sar_num
||
!
p_region
->
fmt
.
i_sar_den
)
else
{
p_region
->
fmt
.
i_sar_den
=
p_fmt
->
i_sar_den
;
p_region
->
fmt
.
i_sar_num
=
p_fmt
->
i_sar_num
;
}
}
/* Take care of the aspect ratio */
if
(
(
p_region
->
fmt
.
i_sar_num
*
p_fmt
->
i_sar_den
)
!=
(
p_region
->
fmt
.
i_sar_den
*
p_fmt
->
i_sar_num
)
)
{
for
(
k
=
0
;
k
<
SCALE_SIZE
;
k
++
)
for
(
k
=
0
;
k
<
SCALE_SIZE
;
k
++
)
{
pi_scale_width
[
k
]
=
pi_scale_width
[
k
]
*
pi_scale_width
[
k
]
=
pi_scale_width
[
k
]
*
(
int64_t
)
p_region
->
fmt
.
i_sar_num
*
p_fmt
->
i_sar_den
/
p_region
->
fmt
.
i_sar_den
/
p_fmt
->
i_sar_num
;
pi_subpic_x
[
k
]
=
p_subpic
->
i_x
*
pi_scale_width
[
k
]
/
1000
;
pi_subpic_x
[
k
]
=
p_subpic
->
i_x
*
pi_scale_width
[
k
]
/
1000
;
}
}
...
...
@@ -1115,7 +1122,7 @@ void spu_RenderSubpictures( spu_t *p_spu, video_format_t *p_fmt,
{
bool
b_scale_used
=
false
;
for
(
k
=
0
;
k
<
SCALE_SIZE
;
k
++
)
for
(
k
=
0
;
k
<
SCALE_SIZE
;
k
++
)
{
const
int
i_scale_w
=
pi_scale_width
[
k
];
const
int
i_scale_h
=
pi_scale_height
[
k
];
...
...
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