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
78f088c0
Commit
78f088c0
authored
Oct 02, 2007
by
Jean-Paul Saman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix indentation
parent
ae62adc7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
src/video_output/video_output.c
src/video_output/video_output.c
+6
-5
No files found.
src/video_output/video_output.c
View file @
78f088c0
...
...
@@ -194,7 +194,7 @@ vout_thread_t *__vout_Request( vlc_object_t *p_this, vout_thread_t *p_vout,
if
(
(
p_vout
->
fmt_render
.
i_width
!=
p_fmt
->
i_width
)
||
(
p_vout
->
fmt_render
.
i_height
!=
p_fmt
->
i_height
)
||
(
p_vout
->
fmt_render
.
i_chroma
!=
p_fmt
->
i_chroma
)
||
(
p_vout
->
fmt_render
.
i_aspect
!=
p_fmt
->
i_aspect
)
||
p_vout
->
b_filter_change
)
{
...
...
@@ -1647,10 +1647,10 @@ static void DisplayTitleOnOSD( vout_thread_t *p_vout )
char
*
psz_artist
=
input_item_GetArtist
(
input_GetItem
(
p_input
)
);
char
*
psz_name
=
input_item_GetTitle
(
input_GetItem
(
p_input
)
);
if
(
EMPTY_STR
(
psz_name
)
)
{
free
(
psz_name
);
psz_name
=
input_item_GetName
(
input_GetItem
(
p_input
)
);
}
{
free
(
psz_name
);
psz_name
=
input_item_GetName
(
input_GetItem
(
p_input
)
);
}
if
(
!
EMPTY_STR
(
psz_nowplaying
)
)
{
vout_ShowTextAbsolute
(
p_vout
,
DEFAULT_CHAN
,
...
...
@@ -1699,3 +1699,4 @@ static void DisplayTitleOnOSD( vout_thread_t *p_vout )
free
(
psz_nowplaying
);
}
}
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