Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Open sidebar
Steve Lhomme
VLC
Commits
81693fe3
Commit
81693fe3
authored
Feb 02, 2010
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dshow: use empty() instead of !size() (quicker).
parent
33b0e8df
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
modules/access/dshow/dshow.cpp
modules/access/dshow/dshow.cpp
+2
-2
No files found.
modules/access/dshow/dshow.cpp
View file @
81693fe3
...
...
@@ -1962,7 +1962,7 @@ static int FindDevicesCallback( vlc_object_t *p_this, char const *psz_name,
/* Uninitialize OLE/COM */
CoUninitialize
();
if
(
!
list_devices
.
size
()
)
return
VLC_SUCCESS
;
if
(
list_devices
.
empty
()
)
return
VLC_SUCCESS
;
p_item
->
ppsz_list
=
(
char
**
)
xrealloc
(
p_item
->
ppsz_list
,
(
list_devices
.
size
()
+
3
)
*
sizeof
(
char
*
)
);
...
...
@@ -2024,7 +2024,7 @@ static int ConfigDevicesCallback( vlc_object_t *p_this, char const *psz_name,
/* Enumerate devices */
FindCaptureDevice
(
p_this
,
NULL
,
&
list_devices
,
b_audio
);
if
(
!
list_devices
.
size
()
)
if
(
list_devices
.
empty
()
)
{
CoUninitialize
();
return
VLC_EGENERIC
;
...
...
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