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
c174051a
Commit
c174051a
authored
Sep 30, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* ALL: updates for the test release.
parent
03f2c9e9
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
18 additions
and
10 deletions
+18
-10
Makefile.am
Makefile.am
+3
-3
NEWS
NEWS
+5
-3
modules/gui/skins2/win32/win32_factory.cpp
modules/gui/skins2/win32/win32_factory.cpp
+5
-1
vlc.win32.nsi
vlc.win32.nsi
+5
-3
No files found.
Makefile.am
View file @
c174051a
...
...
@@ -628,12 +628,12 @@ package-win32-base:
||
true
;
\
done
mkdir
-p
$(srcdir)/vlc-${VERSION}/skins
2
/fonts
mkdir
-p
$(srcdir)/vlc-${VERSION}/skins/fonts
for
i
in
$(srcdir)/share/skins2/fonts/*.*;
do
\
cp
$$i
$(srcdir)/vlc-${VERSION}/skins
2
/fonts/
||
true
;
\
cp
$$i
$(srcdir)/vlc-${VERSION}/skins/fonts/
||
true
;
\
done
for
i
in
$(srcdir)/share/skins2/*.*;
do
\
cp
$$i
$(srcdir)/vlc-${VERSION}/skins
2
/
||
true
;
\
cp
$$i
$(srcdir)/vlc-${VERSION}/skins/
||
true
;
\
done
mkdir
-p
"$(srcdir)/vlc-${VERSION}/http/admin"
...
...
NEWS
View file @
c174051a
...
...
@@ -8,10 +8,9 @@ Core support:
* Major work on libvlc. Changed/renamed/added functions
* Complete switch to the new input core (better seeking, multi-input, ...)
* New plugins cache to speed up launch time
* Fix crash with deinterlace switching
* New --play-and-stop feature which stops the playlist after each played item
* Daemon mode (to run vlc in the background)
*
Technical
improvements to the subtitle/OSD subsystem
*
Major
improvements to the subtitle/OSD subsystem
Input:
* New screen capture input plugin for X11, Win32, BeOS and Mac OS X
...
...
@@ -33,6 +32,7 @@ Demuxers:
* Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
* Skins2 .vlt file loader (only when skin2 is the current interface)
* Improved Ogg demuxer
* Support for MPEG PS streams with MPEG 4 video.
* Support for so called AACPlus webstreams
Codecs:
...
...
@@ -58,7 +58,7 @@ Stream Output:
* Multipart mjpeg muxing. Your video is directly viewable in a Mozilla Browser
* 14496-17 text track muxing for MPEG TS
* Support for DTS audio in MPEG TS (ETSI TS 102 154 Annex G)
*
Experimental WAV muxer
*
New WAV muxer (supports multi-channel audio)
* Improved ASF muxer
Misc:
* H.263 RTP streaming support
...
...
@@ -68,6 +68,7 @@ Stream Output:
Audio Output:
* New audio equalizer filter
* Very trivial volume normalizer
* More gradual resampling which should improve the pitch changing effect
Video Output:
* Roku HD1000 Video output
...
...
@@ -115,6 +116,7 @@ Misc:
* Server/client network synchronization module
* VBrick streams fully supported
* Cisco IP/TV streams supported
* VLM enhancements
Changes between 0.7.1 and 0.7.2:
--------------------------------
...
...
modules/gui/skins2/win32/win32_factory.cpp
View file @
c174051a
...
...
@@ -181,9 +181,13 @@ bool Win32Factory::init()
// Initialize the resource path
m_resourcePath
.
push_back
(
(
string
)
getIntf
()
->
p_vlc
->
psz_homedir
+
"
\\
"
+
CONFIG_DIR
+
"
\\
skins2"
);
"
\\
"
+
CONFIG_DIR
+
"
\\
skins"
);
m_resourcePath
.
push_back
(
(
string
)
getIntf
()
->
p_libvlc
->
psz_vlcpath
+
"
\\
skins"
);
m_resourcePath
.
push_back
(
(
string
)
getIntf
()
->
p_libvlc
->
psz_vlcpath
+
"
\\
skins2"
);
m_resourcePath
.
push_back
(
(
string
)
getIntf
()
->
p_libvlc
->
psz_vlcpath
+
"
\\
share
\\
skins"
);
m_resourcePath
.
push_back
(
(
string
)
getIntf
()
->
p_libvlc
->
psz_vlcpath
+
"
\\
share
\\
skins2"
);
...
...
vlc.win32.nsi
View file @
c174051a
...
...
@@ -133,7 +133,7 @@ Section "Media player (required)" SEC01
File /r plugins
File /r locale
File /r skins
2
File /r skins
File /r http
WriteRegStr HKCR Applications\vlc.exe "" ""
...
...
@@ -173,9 +173,11 @@ Section "Start Menu + Desktop Shortcut" SEC02
SectionIn 1 2 3
CreateDirectory "$SMPROGRAMS\VideoLAN"
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player.lnk" \
"$INSTDIR\vlc.exe" "--intf wxwin"
"$INSTDIR\vlc.exe" "--intf wxwin --wxwin-embed"
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player (alt).lnk" \
"$INSTDIR\vlc.exe" "--intf wxwin --no-wxwin-embed"
CreateShortCut "$SMPROGRAMS\VideoLAN\VLC media player (skins).lnk" \
"$INSTDIR\vlc.exe" "--intf skins
2
"
"$INSTDIR\vlc.exe" "--intf skins"
CreateShortCut "$DESKTOP\VLC media player.lnk" \
"$INSTDIR\vlc.exe" "--intf wxwin"
WriteIniStr "$INSTDIR\${PRODUCT_NAME}.url" "InternetShortcut" "URL" \
...
...
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