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
43e06934
Commit
43e06934
authored
May 25, 2010
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed fake access.
parent
e29b6d9c
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
5 additions
and
312 deletions
+5
-312
modules/access/Modules.am
modules/access/Modules.am
+0
-2
modules/access/fake.c
modules/access/fake.c
+0
-288
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+1
-3
modules/gui/qt4/components/simple_preferences.cpp
modules/gui/qt4/components/simple_preferences.cpp
+2
-2
modules/services_discovery/mediadirs.c
modules/services_discovery/mediadirs.c
+2
-17
No files found.
modules/access/Modules.am
View file @
43e06934
...
...
@@ -34,7 +34,6 @@ SOURCES_access_eyetv = eyetv.m
SOURCES_dvdnav = dvdnav.c
SOURCES_dvdread = dvdread.c
SOURCES_dc1394 = dc1394.c
SOURCES_access_fake = fake.c
SOURCES_pvr = pvr.c videodev2.h
SOURCES_v4l = v4l.c videodev_mjpeg.h
SOURCES_v4l2 = v4l2.c
...
...
@@ -70,7 +69,6 @@ libvlc_LTLIBRARIES += \
libaccess_tcp_plugin.la \
libaccess_http_plugin.la \
libaccess_ftp_plugin.la \
libaccess_fake_plugin.la \
libaccess_imem_plugin.la \
libaccess_attachment_plugin.la \
$(NULL)
...
...
modules/access/fake.c
deleted
100644 → 0
View file @
e29b6d9c
This diff is collapsed.
Click to expand it.
modules/gui/macosx/simple_prefs.m
View file @
43e06934
...
...
@@ -596,7 +596,6 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
if
(
module_exists
(
"dvdnav"
)
)
TestCaC
(
"dvdnav-caching"
);
TestCaC
(
"tcp-caching"
);
TestCaC
(
"fake-caching"
);
TestCaC
(
"cdda-caching"
);
TestCaC
(
"screen-caching"
);
TestCaC
(
"vcd-caching"
);
...
...
@@ -956,7 +955,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"dvdnav"
);
}
CaC
(
"tcp-caching"
);
CaC
(
"vcd-caching"
);
CaC
(
"
fake-caching"
);
CaC
(
"
cdda-caching"
);
CaC
(
"file-caching"
);
CaC
(
"cdda-caching"
);
CaC
(
"file-caching"
);
CaC
(
"screen-caching"
);
CaCi
(
"rtsp-caching"
,
4
);
CaCi
(
"ftp-caching"
,
2
);
CaCi
(
"http-caching"
,
4
);
...
...
@@ -973,7 +972,6 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"access_http"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"access_file"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"access_tcp"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"access_fake"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"cdda"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"screen"
);
i
=
i
+
config_SaveConfigFile
(
p_intf
,
"vcd"
);
...
...
modules/gui/qt4/components/simple_preferences.cpp
View file @
43e06934
...
...
@@ -489,7 +489,7 @@ SPrefsPanel::SPrefsPanel( intf_thread_t *_p_intf, QWidget *_parent,
if
(
module_exists
(
"dvdnav"
))
TestCaC
(
"dvdnav-caching"
);
TestCaC
(
"tcp-caching"
);
TestCaC
(
"
fake-caching"
);
TestCaC
(
"
cdda-caching"
);
TestCaC
(
"cdda-caching"
);
TestCaC
(
"screen-caching"
);
TestCaC
(
"vcd-caching"
);
#ifdef WIN32
TestCaC
(
"dshow-caching"
);
...
...
@@ -769,7 +769,7 @@ void SPrefsPanel::apply()
if
(
module_exists
(
"dvdnav"
))
CaC
(
"dvdnav-caching"
);
CaC
(
"tcp-caching"
);
CaC
(
"vcd-caching"
);
CaC
(
"
fake-caching"
);
CaC
(
"
cdda-caching"
);
CaC
(
"file-caching"
);
CaC
(
"cdda-caching"
);
CaC
(
"file-caching"
);
CaC
(
"screen-caching"
);
CaC
(
"bd-caching"
);
CaCi
(
"rtsp-caching"
,
2
);
CaCi
(
"ftp-caching"
,
2
);
CaCi
(
"http-caching"
,
2
);
...
...
modules/services_discovery/mediadirs.c
View file @
43e06934
...
...
@@ -312,27 +312,12 @@ void formatSnapshotItem( input_item_t *p_item )
if
(
!
p_item
)
return
;
char
*
psz_option
=
NULL
;
char
*
psz_uri
=
input_item_GetURI
(
p_item
);
if
(
!
psz_uri
)
goto
end
;
/* copy the snapshot mrl as a ArtURL */
input_item_SetArtURL
(
p_item
,
psz_uri
);
if
(
asprintf
(
&
psz_option
,
"fake-file=%s"
,
psz_uri
)
==
-
1
)
{
psz_option
=
NULL
;
goto
end
;
}
/* display still image as a video */
input_item_SetURI
(
p_item
,
"fake://"
);
input_item_AddOption
(
p_item
,
psz_option
,
VLC_INPUT_OPTION_TRUSTED
);
if
(
psz_uri
)
input_item_SetArtURL
(
p_item
,
psz_uri
);
end:
free
(
psz_option
);
free
(
psz_uri
);
}
...
...
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