]> git.sesse.net Git - vlc/log
vlc
20 years ago* src/misc/win32_specific.c: compilation fix.
Gildas Bazin [Wed, 31 Mar 2004 22:04:54 +0000 (22:04 +0000)]
* src/misc/win32_specific.c: compilation fix.

20 years ago* modules/access/dshow/dshow.cpp: compilation fix.
Gildas Bazin [Wed, 31 Mar 2004 21:17:22 +0000 (21:17 +0000)]
* modules/access/dshow/dshow.cpp: compilation fix.

20 years ago* src/input/control.c: added INPUT_ADD_INFO/INPUT_SET_NAME to input_Control().
Gildas Bazin [Wed, 31 Mar 2004 20:52:31 +0000 (20:52 +0000)]
* src/input/control.c: added INPUT_ADD_INFO/INPUT_SET_NAME to input_Control().
* src/input/input.c:
   + introduced input_item_t that is shared between the playlist/vlm and the input thread (contains input name, options, infos, etc...).
   + changed prototype of input_CreateThread() to input_thread_t *input_CreateThread( vlc_object_t *, input_item_t * ).
* ALL: use input_item_t and INPUT_ADD_INFO when necessary.

20 years agoInstall new required files for skins2 on make install
Benjamin Pracht [Wed, 31 Mar 2004 17:23:11 +0000 (17:23 +0000)]
Install new required files for skins2 on make install

20 years ago * All: Compilation fixes for Solaris 9, courtesy of Mats Rojestal
Olivier Teulière [Wed, 31 Mar 2004 15:45:02 +0000 (15:45 +0000)]
 * All: Compilation fixes for Solaris 9, courtesy of Mats Rojestal

20 years ago * skins2 DTD: Removed unused attributes of the Font
Olivier Teulière [Wed, 31 Mar 2004 11:24:43 +0000 (11:24 +0000)]
  * skins2 DTD: Removed unused attributes of the Font

20 years agoOups, these ones are for later
Benjamin Pracht [Wed, 31 Mar 2004 08:05:59 +0000 (08:05 +0000)]
Oups, these ones are for later

20 years agoAlso fallis back to C string if UTF8 string fails in proprieties window.
Benjamin Pracht [Wed, 31 Mar 2004 08:00:27 +0000 (08:00 +0000)]
Also fallis back to C string if UTF8 string fails in proprieties window.

20 years agoFall back to plain C with default C character encoding when UTF8 fails.
Derk-Jan Hartman [Wed, 31 Mar 2004 00:24:22 +0000 (00:24 +0000)]
Fall back to plain C with default C character encoding when UTF8 fails.
now you can see at least something with those SAP announces with Latin char encoding.

20 years agoWorks around an issue with some playlist items added by the sap interface : since...
Benjamin Pracht [Tue, 30 Mar 2004 20:56:13 +0000 (20:56 +0000)]
Works around an issue with some playlist items added by the sap interface : since they aren't coded in UTF8, a blank string is printed.

This doesn't correct this issue, but at least, it doesn't prevent the item proprieties window from opening anymore.

20 years agoImplements info treeview in the playlist proprieties window
Benjamin Pracht [Tue, 30 Mar 2004 19:38:46 +0000 (19:38 +0000)]
Implements info treeview in the playlist proprieties window

20 years agoDo not delay subtitles twice + Sanity check
Clément Stenac [Tue, 30 Mar 2004 17:43:56 +0000 (17:43 +0000)]
Do not delay subtitles twice + Sanity check

20 years agoFix 64-bit bug with bookmarks from command line
Clément Stenac [Tue, 30 Mar 2004 17:18:48 +0000 (17:18 +0000)]
Fix 64-bit bug with bookmarks from command line

20 years agoModified a little default skin
Mohammed Adnène Trojette [Tue, 30 Mar 2004 10:37:44 +0000 (10:37 +0000)]
Modified a little default skin
 -> hiding video window

20 years ago * livedotcom.cpp: lalala.... (compilation fixes).
Laurent Aimar [Mon, 29 Mar 2004 21:34:27 +0000 (21:34 +0000)]
 * livedotcom.cpp: lalala.... (compilation fixes).

20 years ago * all: cast of lvalues ...
Laurent Aimar [Mon, 29 Mar 2004 21:29:31 +0000 (21:29 +0000)]
 * all: cast of lvalues ...

20 years ago * ogg: cast of lvalue ... gibalou could you test this patch ?
Laurent Aimar [Mon, 29 Mar 2004 21:26:54 +0000 (21:26 +0000)]
 * ogg: cast of lvalue ... gibalou could you test this patch ?
 (I have changed a ((uint8_t *)op.bytes) -= 4; and I'm not sure what it
was meant to do as op.bytes is a "long")

20 years ago * *.h: shut up gcc (cast of lvalue).
Laurent Aimar [Mon, 29 Mar 2004 19:57:07 +0000 (19:57 +0000)]
 * *.h: shut up gcc (cast of lvalue).

20 years ago * avi: fixed a cast of lvalue.
Laurent Aimar [Mon, 29 Mar 2004 18:59:51 +0000 (18:59 +0000)]
 * avi: fixed a cast of lvalue.
 * livedotcom, mkv: removed all TAB_*.

20 years ago * vlc_common.h: removed all cast in TAB_*. GCC doesn't like anymore
Laurent Aimar [Mon, 29 Mar 2004 18:58:28 +0000 (18:58 +0000)]
 * vlc_common.h: removed all cast in TAB_*. GCC doesn't like anymore
cast of lvalue. -> Don't use them anymore in C++ code.
( Don't use *(void**)&p, it won't work because of aliasing problem).

 * vlc_meta.h: don't use TAB_* as this file is included in C++ code.

20 years ago control: invalid cast in GET_SUBDELAY
Laurent Aimar [Mon, 29 Mar 2004 15:10:36 +0000 (15:10 +0000)]
 control: invalid cast in GET_SUBDELAY
 input: fixed uninitialised variable (i_microsecondperframe for subs)

20 years ago * livedotcom.cpp: use stream_Demux* to support muxed stream. It's far
Laurent Aimar [Mon, 29 Mar 2004 14:28:00 +0000 (14:28 +0000)]
 * livedotcom.cpp: use stream_Demux* to support muxed stream. It's far
 from stable, but begin to work. (Tested only with TS).
 Limitation: no synchro with others stream if any (anyway, it would be
a bit stupid to have such stream).

20 years ago * stream: added stream_DemuxNew, stream_DemuxSend, stream_DemuxDelete
Laurent Aimar [Mon, 29 Mar 2004 14:25:25 +0000 (14:25 +0000)]
 * stream: added stream_DemuxNew, stream_DemuxSend, stream_DemuxDelete
to chain demuxer.
    - stream_DemuxNew: create a special stream_t, launch a thread that
    will open a demuxer, and call p_demux->pf_demux until asked to die.
    - stream_DemuxSend: append a block to be used by the new demuxer.
    - stream_DemuxDelete : free all data...

20 years ago * mpeg_audio: fixed input infos update, and removed all tabs.
Laurent Aimar [Mon, 29 Mar 2004 14:21:47 +0000 (14:21 +0000)]
 * mpeg_audio: fixed input infos update, and removed all tabs.
 (each vlc_object_find has to be followed by a vlc_object_release once
the object isn't needed anymore)

 Btw, I think we should better do that update in src/input/input_dec.c,
this way it will work with every decoder AND a decoder should not touch
p_input (decoders will be used by transcode for instance ...)

20 years ago * rtp: fixed segfault with mux=
Laurent Aimar [Mon, 29 Mar 2004 14:17:25 +0000 (14:17 +0000)]
 * rtp: fixed segfault with mux=

20 years agofixed "slower" hotkey.
Sigmund Augdal Helberg [Mon, 29 Mar 2004 11:15:04 +0000 (11:15 +0000)]
fixed "slower" hotkey.

20 years ago* Implement INPUT_GET_SUBDELAY and INPUT_SET_SUBDELAY
Clément Stenac [Mon, 29 Mar 2004 07:28:45 +0000 (07:28 +0000)]
* Implement INPUT_GET_SUBDELAY and INPUT_SET_SUBDELAY

* Allow to modify subtitle delay on the fly and implement hotkeys
  (h and j)

* When framerate is available with subrip, use sub-fps to make corrections
  (sub-fps default value is now 0, if left to this value, 25fps will be
   assumed in microdvd mode and no correction will be applied in subrip)

Main problem is that when seeking in the subtitles, you easily get
several of them displayed. Maybe we could add a flag to subpicture_t,
like SUBTITLE_PICTURE to say that only one of them must be displayed at
a time, but that other subpictures (OSD, ...) can remain present on the
screen at the same time.

20 years agoPopulate stream information.
Rocky Bernstein [Mon, 29 Mar 2004 02:10:04 +0000 (02:10 +0000)]
Populate stream information.

20 years agoPopulate "Stream and Media Info"
Rocky Bernstein [Mon, 29 Mar 2004 00:45:53 +0000 (00:45 +0000)]
Populate "Stream and Media Info"

20 years agoSmall cosmetic changes
Rocky Bernstein [Mon, 29 Mar 2004 00:42:35 +0000 (00:42 +0000)]
Small cosmetic changes

20 years agoSmall update to ARM cross-compile howto
Jean-Paul Saman [Sun, 28 Mar 2004 20:25:53 +0000 (20:25 +0000)]
Small update to ARM cross-compile howto

20 years agoCorrect multi-default selection. But we need vcdimager 0.71 CVS for
Rocky Bernstein [Sun, 28 Mar 2004 20:17:49 +0000 (20:17 +0000)]
Correct multi-default selection. But we need vcdimager 0.71 CVS for
this.  (But most poeple won't notice the improvement since video
switching is broken.)

20 years agocorrection of a small bug in the function move
Xavier Martin [Sun, 28 Mar 2004 14:39:03 +0000 (14:39 +0000)]
correction of a small bug in the function move

20 years agoReverses previous patch, which added 1min/5min forward / backward functions, as it...
Benjamin Pracht [Sun, 28 Mar 2004 12:29:42 +0000 (12:29 +0000)]
Reverses previous patch, which added 1min/5min forward / backward functions, as it made the interface too unclear. We need to find another way to use hotkeys on the main interface...

20 years ago* src/input/stream.c
Derk-Jan Hartman [Sun, 28 Mar 2004 03:16:05 +0000 (03:16 +0000)]
* src/input/stream.c
  - disable stream_ReadLine debug.
* ALL:
  - added a new demux2 module to handle Kasenna MediaBase
    metadata files. These are application/x-sgimb masked
    'mpeg' files on the web. They are in reality mostly constructors
    for rtsp links. The reference to SGI is because the MediaBase
    solutions originate from SGI.

20 years ago * bitmap_font.cpp: full support of text bitmap font
Cyril Deguet [Sat, 27 Mar 2004 18:04:36 +0000 (18:04 +0000)]
  * bitmap_font.cpp: full support of text bitmap font

20 years ago* src/interface/interface.c
Derk-Jan Hartman [Sat, 27 Mar 2004 17:36:46 +0000 (17:36 +0000)]
* src/interface/interface.c
  - spelling fix
  - added telnet intf to 'Add Interface'
* modules/misc/logger.c:
  - on Mac OS X, use ~/Library/Logs to write logger intf output.
* ALL
  - Added 'Add Interface' to Mac OS X build. Now you can finaly quicklaunch
  the SAP intf.

20 years ago * all: beginning of "text" bitmap font support. The text bitmap must have
Cyril Deguet [Sat, 27 Mar 2004 11:24:24 +0000 (11:24 +0000)]
  * all: beginning of "text" bitmap font support. The text bitmap must have
  the following layout: [cf xmms skins ;)]

20 years ago * all: beginning of bitmap font support. At the moment only the digits
Cyril Deguet [Sat, 27 Mar 2004 00:21:13 +0000 (00:21 +0000)]
  * all: beginning of bitmap font support. At the moment only the digits
  font for xmms/winamp2 skins is supported (the bitmap must have the
  following layout: [0123456789 -] with letters of size 9x13).
  Non-digit characters are just skipped, with a hardcoded advance of 6
  (it allows correct display of time in xmms skins; the ':' are skipped)
  Small example at http://people.via.ecp.fr/~asmax/chaos.vlt (uncomplete skin)
  * vars/time.cpp: notify the observers also when the input is stopped
  * controls/ctrl_text.cpp: do not reset the FSM state and timer when the
  text is displayed (was causing bugs in time display)

20 years agoSpectrum is default enabled
Clément Stenac [Fri, 26 Mar 2004 13:20:57 +0000 (13:20 +0000)]
Spectrum is default enabled

20 years ago* src/input/control.c: fixed INPUT_DEL_BOOKMARK.
Gildas Bazin [Fri, 26 Mar 2004 09:35:10 +0000 (09:35 +0000)]
* src/input/control.c: fixed INPUT_DEL_BOOKMARK.

20 years ago * video: disable direct rendering for h264.
Laurent Aimar [Thu, 25 Mar 2004 23:07:19 +0000 (23:07 +0000)]
 * video: disable direct rendering for h264.

20 years ago * bootstrap:
Sam Hocevar [Thu, 25 Mar 2004 22:45:59 +0000 (22:45 +0000)]
  * bootstrap:
    + Work around a Solaris sh issue preventing ${foo%%bar} constructs.

20 years ago* VLC couldn't handle external links since the playlist API changes. FIXED
Derk-Jan Hartman [Thu, 25 Mar 2004 20:25:04 +0000 (20:25 +0000)]
* VLC couldn't handle external links since the playlist API changes. FIXED

20 years ago * codecs.h : added WAVE_FORMAT_DIVIO_AAC.
Laurent Aimar [Thu, 25 Mar 2004 14:00:33 +0000 (14:00 +0000)]
 * codecs.h : added WAVE_FORMAT_DIVIO_AAC.

20 years ago * mpeg4video.c: added m4cc/M4CC.
Laurent Aimar [Thu, 25 Mar 2004 13:48:51 +0000 (13:48 +0000)]
 * mpeg4video.c: added m4cc/M4CC.

20 years ago* modules/video_output/directx/*:
Gildas Bazin [Thu, 25 Mar 2004 11:51:24 +0000 (11:51 +0000)]
* modules/video_output/directx/*:
   + Added calls to vout_RequestWindow()/vout_ReleaseWindow()
   + Implemented vout_Control()
   + Fixed potential division by 0

20 years agoDon't save an empty playlist
Clément Stenac [Thu, 25 Mar 2004 11:50:33 +0000 (11:50 +0000)]
Don't save an empty playlist
Fix refcount problem

20 years ago* po/POTFILES.in: updated.
Gildas Bazin [Thu, 25 Mar 2004 09:47:19 +0000 (09:47 +0000)]
* po/POTFILES.in: updated.

20 years ago * real: added support for aac codec.
Laurent Aimar [Thu, 25 Mar 2004 01:01:58 +0000 (01:01 +0000)]
 * real: added support for aac codec.

20 years ago* modules/gui/wxwindows/video.cpp: fix for wxGtk built with GTK1.
Gildas Bazin [Thu, 25 Mar 2004 00:18:51 +0000 (00:18 +0000)]
* modules/gui/wxwindows/video.cpp: fix for wxGtk built with GTK1.

20 years ago* src/video_output/vout_intf.c: vout_IntfInit() for some interface/control related...
Gildas Bazin [Wed, 24 Mar 2004 22:53:36 +0000 (22:53 +0000)]
* src/video_output/vout_intf.c: vout_IntfInit() for some interface/control related initializations.
* src/video_output/video_output.c: moved some stuff to vout_IntfInit().
* include/video_output.h: vout_vaControl()/vout_Control() prototypes.
* modules/video_output/x11/xcommon.c: implemented a vout_Control() (only VOUT_SET_ZOOM for now).
* modules/gui/wxwindows/menus.cpp: handle float object vars, added "zoom" to the menus.

20 years ago * skins2/parser/builder*: All the controls now have a 'visible' attribute
Olivier Teulière [Wed, 24 Mar 2004 22:10:56 +0000 (22:10 +0000)]
 * skins2/parser/builder*: All the controls now have a 'visible' attribute
 * share/skins2/default/skin.dtd: Changed a few details here and there

20 years agoCompilation fix
Olivier Teulière [Wed, 24 Mar 2004 11:24:46 +0000 (11:24 +0000)]
Compilation fix

20 years ago* ts muxer: added a no-crypt-audio option for people who do not want to crypt
Christophe Massiot [Wed, 24 Mar 2004 10:18:34 +0000 (10:18 +0000)]
* ts muxer: added a no-crypt-audio option for people who do not want to crypt
  audio PIDs

20 years ago* csa.c: Fixed an encryption bug with packets smaller than 8 bytes.
Christophe Massiot [Wed, 24 Mar 2004 10:17:50 +0000 (10:17 +0000)]
* csa.c: Fixed an encryption bug with packets smaller than 8 bytes.

20 years ago* modules/gui/wxwindows/*:
Gildas Bazin [Tue, 23 Mar 2004 23:52:04 +0000 (23:52 +0000)]
* modules/gui/wxwindows/*:
   + bookmarks menu.
   + started work on bookmarks dialog.
   + started support for embeddable vout (via vout_RequestWindow()/vout_ReleaseWindow()).
   + new --wxwin-bookmarks and --wxwin-embed config options.

20 years ago* modules/video_output/x11/xcommon.c: use vout_RequestWindow()/vout_ReleaseWindow().
Gildas Bazin [Tue, 23 Mar 2004 23:46:26 +0000 (23:46 +0000)]
* modules/video_output/x11/xcommon.c: use vout_RequestWindow()/vout_ReleaseWindow().

20 years ago* src/input/*:
Gildas Bazin [Tue, 23 Mar 2004 23:44:49 +0000 (23:44 +0000)]
* src/input/*:
   + new input_Control() function (doesn't do much for now).
   + started bookmarks support through input_Control().
   + new --bookmarks={name=foo,bytes=foo,time=foo},{...} config option.

* src/video_output/*:
   + started support for embeddable vouts (vout_RequestWindow()/vout_ReleaseWindow())
   + new --video-x/y config options

20 years ago* src/misc/variables: fixed mem-leak for VLC_VAR_CLEARCHOICES.
Gildas Bazin [Tue, 23 Mar 2004 23:30:49 +0000 (23:30 +0000)]
* src/misc/variables: fixed mem-leak for VLC_VAR_CLEARCHOICES.

20 years ago* modules/codec/ffmpeg/encoder.c: removed unused stuff.
Gildas Bazin [Tue, 23 Mar 2004 23:28:02 +0000 (23:28 +0000)]
* modules/codec/ffmpeg/encoder.c: removed unused stuff.

20 years ago* modules/demux/dvdnav.c: cosmetic changes + fixed small mem-leaks.
Gildas Bazin [Tue, 23 Mar 2004 23:26:36 +0000 (23:26 +0000)]
* modules/demux/dvdnav.c: cosmetic changes + fixed small mem-leaks.

20 years ago * skins2: Fixed broken DTD
Olivier Teulière [Tue, 23 Mar 2004 21:03:20 +0000 (21:03 +0000)]
 * skins2: Fixed broken DTD

20 years ago* Check if dvbpsi_DecodeISO639Dr fails.
Derk-Jan Hartman [Tue, 23 Mar 2004 20:47:06 +0000 (20:47 +0000)]
* Check if dvbpsi_DecodeISO639Dr fails.
  Fixes #1104

20 years ago * duplicate: fixed a bug with noes.
Laurent Aimar [Tue, 23 Mar 2004 11:02:48 +0000 (11:02 +0000)]
 * duplicate: fixed a bug with noes.

20 years ago* share/Makefile.am: added default skins2 theme and vlm http files.
Gildas Bazin [Tue, 23 Mar 2004 09:44:44 +0000 (09:44 +0000)]
* share/Makefile.am: added default skins2 theme and vlm http files.
* modules/gui/skins2/Modules.am: removed old skins2 theme.

20 years ago * ALL: compile fixes.
Jon Lech Johansen [Mon, 22 Mar 2004 22:53:11 +0000 (22:53 +0000)]
  * ALL: compile fixes.

20 years ago * vlm/* : begining of vlm http interface pages.
Laurent Aimar [Mon, 22 Mar 2004 22:14:27 +0000 (22:14 +0000)]
 * vlm/* : begining of vlm http interface pages.

20 years ago * skins2/win32/win32_loop.cpp: Refresh the needed rectangle only.
Olivier Teulière [Mon, 22 Mar 2004 21:18:12 +0000 (21:18 +0000)]
 * skins2/win32/win32_loop.cpp: Refresh the needed rectangle only.
   This doesn't fix totally the refresh problems on the skinned vout,
   but it improves the situation a lot.

20 years ago * Makefile.am: Fixed the win32 packaging of the default skin2
Olivier Teulière [Mon, 22 Mar 2004 20:54:35 +0000 (20:54 +0000)]
 * Makefile.am: Fixed the win32 packaging of the default skin2

20 years ago * all : skeleton of a future bitmap font support
Cyril Deguet [Mon, 22 Mar 2004 20:38:15 +0000 (20:38 +0000)]
  * all : skeleton of a future bitmap font support
  * skin.dtd : new BitmapFont element

20 years ago * http: implemented vlm_save/load.
Laurent Aimar [Mon, 22 Mar 2004 17:58:24 +0000 (17:58 +0000)]
 * http: implemented vlm_save/load.

20 years ago * vlm: fixed some segfaults.
Laurent Aimar [Mon, 22 Mar 2004 17:56:54 +0000 (17:56 +0000)]
 * vlm: fixed some segfaults.

20 years ago* modules/codec/libmpeg2.c: modified last change to use a 4:3 aspect ratio when libmp...
Gildas Bazin [Mon, 22 Mar 2004 15:19:12 +0000 (15:19 +0000)]
* modules/codec/libmpeg2.c: modified last change to use a 4:3 aspect ratio when libmpeg2 gives us an invalid one.
  (if this happens, it is a bug in libmpeg2 anyway so we just try to fallback to the most usual value).

20 years ago * all: forgot to commit theses files.
Laurent Aimar [Mon, 22 Mar 2004 12:33:29 +0000 (12:33 +0000)]
 * all: forgot to commit theses files.

20 years ago* modules/control/Modules.am: added telnet module.
Gildas Bazin [Mon, 22 Mar 2004 12:12:02 +0000 (12:12 +0000)]
* modules/control/Modules.am: added telnet module.

20 years ago * http.c: vlm_error
Simon Latapie [Mon, 22 Mar 2004 12:04:03 +0000 (12:04 +0000)]
 * http.c: vlm_error

20 years ago* src/misc/modules.c: compilation fix.
Gildas Bazin [Mon, 22 Mar 2004 10:18:22 +0000 (10:18 +0000)]
* src/misc/modules.c: compilation fix.

20 years ago * vlm: better vlm_Show.
Laurent Aimar [Mon, 22 Mar 2004 03:08:27 +0000 (03:08 +0000)]
 * vlm: better vlm_Show.

20 years ago * http.c: fixes about vlm.
Laurent Aimar [Mon, 22 Mar 2004 02:58:57 +0000 (02:58 +0000)]
 * http.c: fixes about vlm.

20 years ago* fix avi dts support
Derk-Jan Hartman [Sun, 21 Mar 2004 22:53:18 +0000 (22:53 +0000)]
* fix avi dts support

20 years ago * libmpeg2: handle invalid aspect as square one.
Laurent Aimar [Sun, 21 Mar 2004 22:35:58 +0000 (22:35 +0000)]
 * libmpeg2: handle invalid aspect as square one.

20 years ago * rtp: sdp=rtsp:// urls begin to work (multicast+unicast).
Laurent Aimar [Sun, 21 Mar 2004 22:03:42 +0000 (22:03 +0000)]
 * rtp: sdp=rtsp:// urls begin to work (multicast+unicast).
 (There is still the problem of timeout, and a lot of checks aren't done).

20 years ago * moved the default font in share/skins2/fonts
Cyril Deguet [Sun, 21 Mar 2004 20:39:43 +0000 (20:39 +0000)]
  * moved the default font in share/skins2/fonts
  * parser/builder.cpp: a font with ID "defaultfont" is loaded from
  the common font directory

20 years ago * added a fonts directory
Cyril Deguet [Sun, 21 Mar 2004 20:19:18 +0000 (20:19 +0000)]
  * added a fonts directory

20 years ago * moved the default skins2 theme in share/skins2/default/
Cyril Deguet [Sun, 21 Mar 2004 20:01:24 +0000 (20:01 +0000)]
  * moved the default skins2 theme in share/skins2/default/
  * all: added a "tooltipfont" element in the <Theme> tag (unused at the
      moment)

20 years agoTwo description strings corrected
Derk-Jan Hartman [Sun, 21 Mar 2004 19:45:42 +0000 (19:45 +0000)]
Two description strings corrected

20 years ago* Spelling correction
Derk-Jan Hartman [Sun, 21 Mar 2004 19:36:47 +0000 (19:36 +0000)]
* Spelling correction

20 years ago * Makefile.am: compile vlm.c ...
Laurent Aimar [Sun, 21 Mar 2004 15:09:21 +0000 (15:09 +0000)]
 * Makefile.am: compile vlm.c ...

20 years ago* modules/demux/mkv.cpp: Fixed Darwin port for Mac OS X 10.1
Christophe Massiot [Sun, 21 Mar 2004 12:50:14 +0000 (12:50 +0000)]
* modules/demux/mkv.cpp: Fixed Darwin port for Mac OS X 10.1

20 years ago * all: changes for vlm move.
Laurent Aimar [Sun, 21 Mar 2004 12:29:31 +0000 (12:29 +0000)]
 * all: changes for vlm move.

20 years ago * vlm.*: move vlm to the core (now, vlm_New create only one instance)
Laurent Aimar [Sun, 21 Mar 2004 12:26:20 +0000 (12:26 +0000)]
 * vlm.*: move vlm to the core (now, vlm_New create only one instance)
 * http.c: begin support of vlm interraction (not yet documented).

20 years ago * vlm.c: little bug fix for stop command
Simon Latapie [Sat, 20 Mar 2004 13:19:58 +0000 (13:19 +0000)]
 * vlm.c: little bug fix for stop command

20 years ago * ts.c: do not use packetizer for ms-codec streams.
Laurent Aimar [Fri, 19 Mar 2004 16:33:55 +0000 (16:33 +0000)]
 * ts.c: do not use packetizer for ms-codec streams.

20 years ago * nsv: fixed unused variable warnings.
Laurent Aimar [Fri, 19 Mar 2004 16:33:11 +0000 (16:33 +0000)]
 * nsv: fixed unused variable warnings.

20 years ago * real: fixed unused variable warnings.
Laurent Aimar [Fri, 19 Mar 2004 16:32:06 +0000 (16:32 +0000)]
 * real: fixed unused variable warnings.

20 years ago * asf :demux -> demux2.
Laurent Aimar [Fri, 19 Mar 2004 16:31:13 +0000 (16:31 +0000)]
 * asf :demux -> demux2.

20 years ago * Modules: removed avi.h
Laurent Aimar [Fri, 19 Mar 2004 16:30:09 +0000 (16:30 +0000)]
 * Modules: removed avi.h

20 years ago * avi: cosmetics.
Laurent Aimar [Fri, 19 Mar 2004 16:29:39 +0000 (16:29 +0000)]
 * avi: cosmetics.

20 years ago * demux: demux2_New -> try to start faster selecting the right demuxer
Laurent Aimar [Fri, 19 Mar 2004 16:27:52 +0000 (16:27 +0000)]
 * demux: demux2_New -> try to start faster selecting the right demuxer
based to extension (others demuxers will still be probed if needed).