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
1339e357
Commit
1339e357
authored
Apr 21, 2011
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not add a newline at the end of the strings send to msg_*
parent
794fc3ca
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
modules/audio_output/alsa.c
modules/audio_output/alsa.c
+1
-1
modules/codec/avcodec/dxva2.c
modules/codec/avcodec/dxva2.c
+5
-5
modules/gui/skins2/x11/x11_display.cpp
modules/gui/skins2/x11/x11_display.cpp
+1
-1
modules/video_filter/blend.c
modules/video_filter/blend.c
+1
-1
src/misc/update.c
src/misc/update.c
+1
-1
No files found.
modules/audio_output/alsa.c
View file @
1339e357
...
...
@@ -422,7 +422,7 @@ static int Open (vlc_object_t *obj)
goto
error
;
}
if
(
p_aout
->
output
.
output
.
i_rate
!=
old_rate
)
msg_Warn
(
p_aout
,
"resampling from %d Hz to %d Hz
\n
"
,
old_rate
,
msg_Warn
(
p_aout
,
"resampling from %d Hz to %d Hz"
,
old_rate
,
p_aout
->
output
.
output
.
i_rate
);
/* Set period size. */
...
...
modules/codec/avcodec/dxva2.c
View file @
1339e357
...
...
@@ -649,7 +649,7 @@ static int D3dCreateDeviceManager(vlc_va_dxva2_t *va)
TEXT
(
"DXVA2CreateDirect3DDeviceManager9"
));
if
(
!
CreateDeviceManager9
)
{
msg_Err
(
va
->
log
,
"cannot load function
\n
"
);
msg_Err
(
va
->
log
,
"cannot load function"
);
return
VLC_EGENERIC
;
}
msg_Dbg
(
va
->
log
,
"OurDirect3DCreateDeviceManager9 Success!"
);
...
...
@@ -693,7 +693,7 @@ static int DxCreateVideoService(vlc_va_dxva2_t *va)
TEXT
(
"DXVA2CreateVideoService"
));
if
(
!
CreateVideoService
)
{
msg_Err
(
va
->
log
,
"cannot load function
\n
"
);
msg_Err
(
va
->
log
,
"cannot load function"
);
return
4
;
}
msg_Info
(
va
->
log
,
"DXVA2CreateVideoService Success!"
);
...
...
@@ -850,7 +850,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
DXVA2_VideoDecoderRenderTarget
,
surface_list
,
NULL
)))
{
msg_Err
(
va
->
log
,
"IDirectXVideoAccelerationService_CreateSurface failed
\n
"
);
msg_Err
(
va
->
log
,
"IDirectXVideoAccelerationService_CreateSurface failed"
);
va
->
surface_count
=
0
;
return
VLC_EGENERIC
;
}
...
...
@@ -899,7 +899,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
NULL
,
&
cfg_count
,
&
cfg_list
)))
{
msg_Err
(
va
->
log
,
"IDirectXVideoDecoderService_GetDecoderConfigurations failed
\n
"
);
msg_Err
(
va
->
log
,
"IDirectXVideoDecoderService_GetDecoderConfigurations failed"
);
return
VLC_EGENERIC
;
}
msg_Dbg
(
va
->
log
,
"we got %d decoder configurations"
,
cfg_count
);
...
...
@@ -944,7 +944,7 @@ static int DxCreateVideoDecoder(vlc_va_dxva2_t *va,
surface_list
,
va
->
surface_count
,
&
decoder
)))
{
msg_Err
(
va
->
log
,
"IDirectXVideoDecoderService_CreateVideoDecoder failed
\n
"
);
msg_Err
(
va
->
log
,
"IDirectXVideoDecoderService_CreateVideoDecoder failed"
);
return
VLC_EGENERIC
;
}
va
->
decoder
=
decoder
;
...
...
modules/gui/skins2/x11/x11_display.cpp
View file @
1339e357
...
...
@@ -186,7 +186,7 @@ X11Display::X11Display( intf_thread_t *pIntf ): SkinObject( pIntf ),
break
;
default:
msg_Err
(
getIntf
(),
"unsupported depth: %d bpp
\n
"
,
depth
);
msg_Err
(
getIntf
(),
"unsupported depth: %d bpp"
,
depth
);
m_pDisplay
=
NULL
;
break
;
}
...
...
modules/video_filter/blend.c
View file @
1339e357
...
...
@@ -234,7 +234,7 @@ static void Blend( filter_t *p_filter,
video_format_FixRgb
(
&
p_filter
->
fmt_in
.
video
);
#if 0
msg_Dbg( p_filter, "chroma: %4.4s -> %4.4s
\n
",
msg_Dbg( p_filter, "chroma: %4.4s -> %4.4s",
(char *)&p_filter->fmt_in.video.i_chroma,
(char *)&p_filter->fmt_out.video.i_chroma );
#endif
...
...
src/misc/update.c
View file @
1339e357
...
...
@@ -333,7 +333,7 @@ static bool GetUpdateFile( update_t *p_update )
else
{
free
(
p_hash
);
msg_Err
(
p_update
->
p_libvlc
,
"Key signature invalid !
\n
"
);
msg_Err
(
p_update
->
p_libvlc
,
"Key signature invalid !"
);
goto
error
;
}
}
...
...
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