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
07faebaf
Commit
07faebaf
authored
Sep 30, 2008
by
Geoffroy Couprie
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
git://git.videolan.org/vlc
parents
b973e326
938c3c46
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
4 deletions
+8
-4
modules/access/http.c
modules/access/http.c
+2
-0
modules/access/v4l2/v4l2.c
modules/access/v4l2/v4l2.c
+4
-2
modules/misc/Modules.am
modules/misc/Modules.am
+2
-2
No files found.
modules/access/http.c
View file @
07faebaf
...
@@ -440,6 +440,7 @@ connect:
...
@@ -440,6 +440,7 @@ connect:
if
(
p_sys
->
url
.
psz_username
&&
p_sys
->
url
.
psz_password
&&
if
(
p_sys
->
url
.
psz_username
&&
p_sys
->
url
.
psz_password
&&
p_sys
->
auth
.
psz_nonce
&&
p_sys
->
auth
.
i_nonce
==
0
)
p_sys
->
auth
.
psz_nonce
&&
p_sys
->
auth
.
i_nonce
==
0
)
{
{
Disconnect
(
p_access
);
goto
connect
;
goto
connect
;
}
}
snprintf
(
psz_msg
,
250
,
snprintf
(
psz_msg
,
250
,
...
@@ -457,6 +458,7 @@ connect:
...
@@ -457,6 +458,7 @@ connect:
if
(
psz_password
)
p_sys
->
url
.
psz_password
=
strdup
(
psz_password
);
if
(
psz_password
)
p_sys
->
url
.
psz_password
=
strdup
(
psz_password
);
free
(
psz_login
);
free
(
psz_login
);
free
(
psz_password
);
free
(
psz_password
);
Disconnect
(
p_access
);
goto
connect
;
goto
connect
;
}
}
else
else
...
...
modules/access/v4l2/v4l2.c
View file @
07faebaf
...
@@ -1472,7 +1472,8 @@ static block_t* GrabVideo( demux_t *p_demux )
...
@@ -1472,7 +1472,8 @@ static block_t* GrabVideo( demux_t *p_demux )
/* Unlock */
/* Unlock */
if
(
ioctl
(
p_sys
->
i_fd_video
,
VIDIOC_QBUF
,
&
buf
)
<
0
)
if
(
ioctl
(
p_sys
->
i_fd_video
,
VIDIOC_QBUF
,
&
buf
)
<
0
)
{
{
msg_Err
(
p_demux
,
"Failed to unlock (VIDIOC_QBUF)"
);
msg_Err
(
p_demux
,
"Failed to unlock (VIDIOC_QBUF)"
);
block_Release
(
p_block
);
return
0
;
return
0
;
}
}
...
@@ -1519,7 +1520,8 @@ static block_t* GrabVideo( demux_t *p_demux )
...
@@ -1519,7 +1520,8 @@ static block_t* GrabVideo( demux_t *p_demux )
/* Unlock */
/* Unlock */
if
(
ioctl
(
p_sys
->
i_fd_video
,
VIDIOC_QBUF
,
&
buf
)
<
0
)
if
(
ioctl
(
p_sys
->
i_fd_video
,
VIDIOC_QBUF
,
&
buf
)
<
0
)
{
{
msg_Err
(
p_demux
,
"Failed to unlock (VIDIOC_QBUF)"
);
msg_Err
(
p_demux
,
"Failed to unlock (VIDIOC_QBUF)"
);
block_Release
(
p_block
);
return
0
;
return
0
;
}
}
...
...
modules/misc/Modules.am
View file @
07faebaf
...
@@ -14,9 +14,9 @@ SOURCES_gtk2_main = gtk_main.c
...
@@ -14,9 +14,9 @@ SOURCES_gtk2_main = gtk_main.c
SOURCES_gnome2_main = gtk_main.c
SOURCES_gnome2_main = gtk_main.c
SOURCES_screensaver = screensaver.c
SOURCES_screensaver = screensaver.c
SOURCES_qte_main = qte_main.cpp
SOURCES_qte_main = qte_main.cpp
SOURCES_freetype = freetype.c
SOURCES_freetype = freetype.c
text_renderer.h
SOURCES_win32text = win32text.c
SOURCES_win32text = win32text.c
SOURCES_quartztext = quartztext.c
SOURCES_quartztext = quartztext.c
text_renderer.h
SOURCES_logger = logger.c
SOURCES_logger = logger.c
SOURCES_vod_rtsp = rtsp.c
SOURCES_vod_rtsp = rtsp.c
SOURCES_gnutls = gnutls.c dhparams.h
SOURCES_gnutls = gnutls.c dhparams.h
...
...
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