Commit f383fb39 authored by Derk-Jan Hartman's avatar Derk-Jan Hartman

* ALL: added a quicktime module.

  - This module provides QDM2 and QDMC sound support on OSX by linking to
    the native QT libraries. We now have FULL QT trailer support on OSX.
  - The video part of this decoder is not yet working on OSX.
  - This can be used for a future win32dll loader system as well.
parent 5932b0ad
$Id: NEWS,v 1.44 2003/05/20 18:53:03 hartman Exp $
$Id: NEWS,v 1.45 2003/05/20 21:35:52 hartman Exp $
Changes between 0.5.3 and 0.6.0:
---------------------------------
......@@ -20,7 +20,7 @@ Input demux:
Codecs:
* VLC's own MPEG1/2 decoder has been replaced with libmpeg2
* Support for Sorenson 3 (SVQ3 or Quicktime content) via ffmpeg
NOTE: QDM2 sound, often used in QT content, is not yet supported
* OSX support for QDM2 and QDMC sound, often used in QT content.
* Fixed a bug which was causing artefacts in DivX video (ffmpeg)
* If ffmpeg cannot keep up, skip and try to recover instead of stopping altogether
......
......@@ -1703,7 +1703,19 @@ then
CPPFLAGS_encoder_xvid=${CPPFLAGS_xvid}
fi
dnl
dnl QuickTime plugin
dnl
AC_ARG_ENABLE(quicktime,
[ --enable-quicktime QuickTime module (default enabled on MacOS X)])
if test "x${enable_quicktime}" != "xno" &&
(test "x${SYS}" = "xdarwin" || test "x${enable_quicktime}" = "xyes")
then
AC_CHECK_HEADERS(QuickTime/QuickTime.h,
[ BUILTINS="${BUILTINS} quicktime"
LDFLAGS_quicktime="${LDFLAGS_quicktime} -framework QuickTime -framework Carbon"
], [ AC_MSG_ERROR([cannot find CoreAudio headers]) ])
fi
dnl
dnl MP4 module
......
......@@ -13,3 +13,4 @@ SOURCES_adpcm = modules/codec/adpcm.c
SOURCES_mpeg_audio = modules/codec/mpeg_audio.c
SOURCES_libmpeg2 = modules/codec/libmpeg2.c
SOURCES_rawvideo = modules/codec/rawvideo.c
SOURCES_quicktime = modules/codec/quicktime.c
This diff is collapsed.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment