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
dcc4cf2f
Commit
dcc4cf2f
authored
Feb 10, 2004
by
Gildas Bazin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* configure.ac, NEWS: added mod and pva plugins.
parent
4caee403
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
23 additions
and
8 deletions
+23
-8
NEWS
NEWS
+8
-6
configure.ac
configure.ac
+15
-2
No files found.
NEWS
View file @
dcc4cf2f
$Id: NEWS,v 1.8
2 2004/02/08 21:36:39
gbazin Exp $
$Id: NEWS,v 1.8
3 2004/02/10 17:36:45
gbazin Exp $
Changes between 0.7.0 and 0.7.1:
---------------------------------
...
...
@@ -21,16 +21,18 @@ Input:
container formars.
* New demux module that uses libavformat from ffmpeg. Adds support for many
small and strange formats.
* Support for DTS wav files
* Support for DTS audio CD
* New PVA demux.
* New MOD audio demux.
* Support for DTS wav files.
* Support for DTS audio CD.
* New and experimental DVD input plugin with menus support (using libdvdnav).
Stream output:
* MP4/MOV muxer improvements (fast-start, aac in mov, etc...)
* Fixed a nasty bug in the mpeg video packetizer
* MP4/MOV muxer improvements (fast-start, aac in mov, etc...)
.
* Fixed a nasty bug in the mpeg video packetizer
.
Service discovery:
* Fixed sdp in SAP
* Fixed sdp in SAP
.
Mac OS X port:
* New opengl video output plugin.
...
...
configure.ac
View file @
dcc4cf2f
dnl Autoconf settings for vlc
dnl $Id: configure.ac,v 1.17
7 2004/02/10 14:04:55 sam
Exp $
dnl $Id: configure.ac,v 1.17
8 2004/02/10 17:36:45 gbazin
Exp $
AC_INIT(vlc,0.7.1-test1)
...
...
@@ -873,7 +873,7 @@ dnl
dnl default modules
dnl
AX_ADD_PLUGINS([dummy rc logger gestures memcpy hotkeys])
AX_ADD_PLUGINS([mpgv mpga m4v mpeg_system ps ps2 ts avi asf aac mp4 rawdv demux2 nsv real aiff])
AX_ADD_PLUGINS([mpgv mpga m4v mpeg_system ps ps2
pva
ts avi asf aac mp4 rawdv demux2 nsv real aiff])
AX_ADD_PLUGINS([cvdsub svcdsub spudec dvbsub mpeg_audio lpcm a52 dts cinepak])
AX_ADD_PLUGINS([deinterlace invert adjust wall transform distort clone crop motionblur])
AX_ADD_PLUGINS([float32tos16 float32tos8 float32tou16 float32tou8 a52tospdif dtstospdif fixed32tofloat32 fixed32tos16 s16tofixed32 s16tofloat32 s16tofloat32swab s8tofloat32 u8tofixed32 u8tofloat32])
...
...
@@ -1723,6 +1723,19 @@ if test "${enable_mkv}" != "no"; then
AC_LANG_POP(C++)
fi
dnl
dnl modplug demux plugin
dnl
AC_ARG_ENABLE(mod,
[ --enable-mod Mod demux support (default enabled)])
if test "${enable_mod}" != "no"
then
AC_CHECK_HEADERS(libmodplug/modplug.h, [
AX_ADD_PLUGINS([mod])
AX_ADD_CXXFLAGS([mod],[])
AX_ADD_LDFLAGS([mod],[-lmodplug])])
fi
dnl
dnl Codec plugins
dnl
...
...
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