[oggvideotools] 01/05: Imported Upstream version 0.9

Petter Reinholdtsen pere at moszumanska.debian.org
Fri Feb 26 16:53:02 UTC 2016


This is an automated email from the git hooks/post-receive script.

pere pushed a commit to branch master
in repository oggvideotools.

commit 4363715656211211cccd5c05e0072880af862fbd
Author: Petter Reinholdtsen <pere at hungry.com>
Date:   Fri Feb 26 16:01:40 2016 +0000

    Imported Upstream version 0.9
---
 CMakeLists.txt                                  |   35 +-
 ChangeLog                                       |    6 +
 README                                          |    2 +-
 README.txt                                      |   34 -
 configure                                       |   13 -
 docs/DocuOggVideoTools.pdf                      |  Bin 0 -> 162062 bytes
 docs/conv2html.sh                               |    7 +
 docs/oggCat.1                                   |   14 +-
 docs/oggCut.1                                   |    4 +
 docs/oggDump.1                                  |    2 +-
 docs/oggSplit.1                                 |    6 +-
 docs/oggTranscode.1                             |   10 +-
 restyle.sh                                      |    3 +
 scripts/mkSlideshow                             |   93 +
 src/CMakeLists.txt                              |  178 +-
 src/base/CMakeLists.txt                         |   25 +
 src/{ => base}/bufferRepository.cpp             |    2 +-
 src/{ => base}/bufferRepository.h               |    0
 src/{ => base}/fileRepository.cpp               |   17 +-
 src/{ => base}/fileRepository.h                 |    0
 src/{ => base}/granulePosInterpreter.cpp        |    2 +-
 src/{ => base}/granulePosInterpreter.h          |    0
 src/{ => base}/mediaConverter.cpp               |    2 +-
 src/{ => base}/mediaConverter.h                 |    7 +-
 src/{ => base}/mediaDecoder.cpp                 |    0
 src/{ => base}/mediaDecoder.h                   |    0
 src/{ => base}/mediaEncoder.cpp                 |    2 +-
 src/{ => base}/mediaEncoder.h                   |    0
 src/{ => base}/mediaInputEncoder.cpp            |    2 +-
 src/{ => base}/mediaInputEncoder.h              |    0
 src/{ => base}/mediaOutputDecoder.cpp           |    2 +-
 src/{ => base}/mediaOutputDecoder.h             |    0
 src/{ => base}/mediaRepository.cpp              |    4 +-
 src/{ => base}/mediaRepository.h                |    0
 src/{ => base}/mediaUnit.cpp                    |    2 +-
 src/{ => base}/mediaUnit.h                      |    0
 src/{ => base}/oggComment.cpp                   |    0
 src/{ => base}/oggComment.h                     |    0
 src/{ => base}/oggDecoder.cpp                   |   27 +-
 src/{ => base}/oggDecoder.h                     |    3 +-
 src/base/oggDecoderFactory.cpp                  |   29 +
 src/base/oggDecoderFactory.h                    |   21 +
 src/{ => base}/oggEncoder.cpp                   |   19 +-
 src/{ => base}/oggEncoder.h                     |    0
 src/{ => base}/oggHeader.h                      |    8 +-
 src/base/oggPacket.cpp                          |  281 ++
 src/base/oggPacket.cpp.orig                     |  281 ++
 src/{ => base}/oggPacket.h                      |   47 +-
 src/base/oggPage.cpp                            |  280 ++
 src/{ => base}/oggPage.h                        |   56 +-
 src/{ => base}/oggRingbuffer.cpp                |   93 +-
 src/{ => base}/oggRingbuffer.h                  |   14 +-
 src/{ => base}/oggStreamDecoder.cpp             |   22 +-
 src/{ => base}/oggStreamDecoder.h               |    0
 src/{ => base}/oggStreamEncoder.cpp             |   75 +-
 src/{ => base}/oggStreamEncoder.h               |    0
 src/{ => base}/oggTypes.h                       |   30 +-
 src/base/rawMediaPacket.cpp                     |   93 +
 src/{ => base}/rawMediaPacket.h                 |   40 +-
 src/{ => base}/refObject.h                      |    6 +-
 src/{ => base}/streamConfig.h                   |    0
 src/{ => base}/streamExtractor.cpp              |    4 +-
 src/{ => base}/streamExtractor.h                |    0
 src/{ => base}/streamParameter.cpp              |    0
 src/{ => base}/streamParameter.h                |    0
 src/binaries/CMakeLists.txt                     |   17 +
 src/{ => binaries}/oggCat.cpp                   |   69 +-
 src/{ => binaries}/oggCut.cpp                   |   47 +-
 src/{ => binaries}/oggDump.cpp                  |   39 +-
 src/{ => binaries}/oggJoin.cpp                  |   12 +-
 src/{ => binaries}/oggLength.cpp                |    5 +-
 src/binaries/oggScroll.cpp                      |  217 +
 src/{ => binaries}/oggSilence.cpp               |    1 +
 src/{ => binaries}/oggSlideshow.cpp             |  184 +-
 src/{ => binaries}/oggSplit.cpp                 |   35 +-
 src/{ => binaries}/oggThumb.cpp                 |   42 +-
 src/{ => binaries}/oggTranscode.cpp             |   71 +-
 src/effect/CMakeLists.txt                       |   18 +
 src/{ => effect}/basePlane.cpp                  |    4 +-
 src/{ => effect}/basePlane.h                    |    0
 src/{ => effect}/blendElement.cpp               |    8 +-
 src/{ => effect}/blendElement.h                 |    0
 src/{ => effect}/crossfader.cpp                 |   12 +-
 src/{ => effect}/crossfader.h                   |    2 +
 src/{ => effect}/effector.cpp                   |    0
 src/{ => effect}/effector.h                     |    6 +
 src/effect/effectorTypes.cpp                    |   60 +
 src/effect/effectorTypes.h                      |   83 +
 src/effect/effectorVisitor.cpp                  |   48 +
 src/effect/effectorVisitor.h                    |   54 +
 src/{ => effect}/kenburnseffect.cpp             |   12 +-
 src/{ => effect}/kenburnseffect.h               |    1 +
 src/{ => effect}/lowpassEffect.cpp              |    8 +-
 src/{ => effect}/lowpassEffect.h                |    2 +
 src/{ => effect}/pictureBlend.cpp               |    1 -
 src/{ => effect}/pictureBlend.h                 |    0
 src/{ => effect}/pictureLoader.cpp              |   22 +-
 src/{ => effect}/pictureLoader.h                |    7 +
 src/{ => effect}/pictureResize.cpp              |  171 +-
 src/{ => effect}/pictureResize.h                |    4 +
 src/{ => effect}/plainPicture.cpp               |   10 +-
 src/{ => effect}/plainPicture.h                 |    2 +
 src/{ => effect}/rgbPlane.cpp                   |    2 +-
 src/{ => effect}/rgbPlane.h                     |    6 +-
 src/effect/shiftEffect.cpp                      |  136 +
 src/{crossfader.h => effect/shiftEffect.h}      |   49 +-
 src/effect/shiftblendEffect.cpp                 |  141 +
 src/{crossfader.h => effect/shiftblendEffect.h} |   56 +-
 src/exception.h                                 |    2 +-
 src/libresample/CMakeLists.txt                  |    8 +
 src/libresample/libresample.h                   |   28 +-
 src/main/CMakeLists.txt                         |   13 +
 src/{ => main}/audioConverter.cpp               |   30 +-
 src/{ => main}/audioConverter.h                 |    0
 src/{ => main}/audioHook.cpp                    |    6 +-
 src/{ => main}/audioHook.h                      |    0
 src/{ => main}/cmdlineextractor.cpp             |  218 +-
 src/{ => main}/cmdlineextractor.h               |   17 +-
 src/{ => main}/hookHandler.cpp                  |    4 +-
 src/{ => main}/hookHandler.h                    |    0
 src/{ => main}/oggBOSExtractorFactory.cpp       |   30 +-
 src/{ => main}/oggBOSExtractorFactory.h         |    0
 src/{ => main}/streamMux.cpp                    |   26 +-
 src/{ => main}/streamMux.h                      |    2 +-
 src/{ => main}/streamSerializer.cpp             |   40 +-
 src/{ => main}/streamSerializer.h               |    0
 src/{ => main}/videoHook.cpp                    |   16 +-
 src/{ => main}/videoHook.h                      |    0
 src/makefile.am                                 |   92 -
 src/makefile.in                                 | 4846 -----------------------
 src/misc/CMakeLists.txt                         |    8 +
 src/{ => misc}/crc.cpp                          |    0
 src/{ => misc}/crc.h                            |    0
 src/{ => misc}/helper.cpp                       |    0
 src/{ => misc}/helper.h                         |    0
 src/{ => misc}/log.cpp                          |    0
 src/{ => misc}/log.h                            |    4 +-
 src/misc/ringbuffer.cpp                         |  331 ++
 src/{ => misc}/ringbuffer.h                     |   43 +-
 src/oggPacket.cpp                               |  334 --
 src/oggPage.cpp                                 |  331 --
 src/old/SDLvideoOutput.cpp                      |  106 +
 src/old/SDLvideoOutput.h                        |   29 +
 src/old/jackAudioOutput.h                       |   20 +
 src/old/memFactory.h                            |   96 +
 src/old/oggConfig.cpp                           |    9 +
 src/old/oggConfig.h                             |   15 +
 src/ovt_kate/CMakeLists.txt                     |    8 +
 src/{ => ovt_kate}/kateExtractor.cpp            |   14 +-
 src/{ => ovt_kate}/kateExtractor.h              |    0
 src/{ => ovt_kate}/kateHeader.h                 |    0
 src/{ => ovt_kate}/katePosInterpreter.cpp       |    8 +-
 src/{ => ovt_kate}/katePosInterpreter.h         |    0
 src/{ => ovt_kate}/kateStreamParameter.cpp      |   14 +-
 src/{ => ovt_kate}/kateStreamParameter.h        |    0
 src/ovt_theora/CMakeLists.txt                   |   11 +
 src/{ => ovt_theora}/theoraDecoder.cpp          |   32 +-
 src/{ => ovt_theora}/theoraDecoder.h            |    0
 src/{ => ovt_theora}/theoraEncoder.cpp          |   48 +-
 src/{ => ovt_theora}/theoraEncoder.h            |    2 -
 src/{ => ovt_theora}/theoraExtractor.cpp        |   13 +-
 src/{ => ovt_theora}/theoraExtractor.h          |    0
 src/{ => ovt_theora}/theoraHeader.h             |    0
 src/{ => ovt_theora}/theoraPosInterpreter.cpp   |   10 +-
 src/{ => ovt_theora}/theoraPosInterpreter.h     |    0
 src/{ => ovt_theora}/theoraStreamParameter.cpp  |   18 +-
 src/{ => ovt_theora}/theoraStreamParameter.h    |    0
 src/ovt_vorbis/CMakeLists.txt                   |   11 +
 src/{ => ovt_vorbis}/audioPacket.cpp            |   65 +-
 src/{ => ovt_vorbis}/audioPacket.h              |   19 +-
 src/{ => ovt_vorbis}/vorbisDecoder.cpp          |    8 +-
 src/{ => ovt_vorbis}/vorbisDecoder.h            |    3 +-
 src/{ => ovt_vorbis}/vorbisEncoder.cpp          |   90 +-
 src/{ => ovt_vorbis}/vorbisEncoder.h            |    2 +-
 src/{ => ovt_vorbis}/vorbisExtractor.cpp        |   13 +-
 src/{ => ovt_vorbis}/vorbisExtractor.h          |    0
 src/{ => ovt_vorbis}/vorbisHeader.h             |    0
 src/{ => ovt_vorbis}/vorbisPosInterpreter.cpp   |    6 +-
 src/{ => ovt_vorbis}/vorbisPosInterpreter.h     |    0
 src/{ => ovt_vorbis}/vorbisStreamParameter.cpp  |   28 +-
 src/{ => ovt_vorbis}/vorbisStreamParameter.h    |    0
 src/rawMediaPacket.cpp                          |  110 -
 src/ringbuffer.cpp                              |  198 -
 src/theoraConfig.cpp                            |    9 +
 src/theoraConfig.h                              |   31 +
 src/theoraVideoPacket.cpp                       |   94 +
 src/theoraVideoPacket.h                         |   72 +
 src/tools.dox                                   | 1294 ++++++
 src/videoInfo.h                                 |   15 +
 src/wishList.h                                  |   17 +-
 testsuite/testoggThumb.sh                       |    4 +
 testvideos/getVideos.sh                         |   14 +
 win32/GD-COPYING.TXT                            |   53 +
 win32/getopt1.c                                 |  188 +
 win32/getopt_win.h                              |  178 +-
 195 files changed, 5738 insertions(+), 7233 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 48b0308..13bde53 100755
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 2.6)
 PROJECT ( "OggVideoTools" )
 
 SET ( PACKAGE_NAME "oggvideotools" )
-SET ( PACKAGE_VERSION "0.8a" )
+SET ( PACKAGE_VERSION "0.9" )
 SET ( PACKAGE_BUGREPORT "yorn at gmx.de" )
 
 INCLUDE (CheckIncludeFiles)
@@ -11,14 +11,14 @@ CHECK_INCLUDE_FILES ( bzero.h HAVE_BZERO_H)
 CHECK_INCLUDE_FILES ( stdint.h HAVE_STDINT_H )
 
 IF ( $ENV{MAKE_PACKAGE} )
-  find_library ( GD_GD_LIBRARY NAMES bgd.lib libgd.a )
+  find_library ( GD_GD_LIBRARY NAMES bgd.dll )
   find_library ( JPEG_GD_LIBRARY NAMES libjpeg.a libjpeg.lib jpeg.lib )
   find_library ( PNG_GD_LIBRARY NAMES libpng.a libpng.lib )
-  find_library ( Z_GD_LIBRARY NAMES libz.a )
-  SET ( GD_LIBRARIES ${GD_GD_LIBRARY} ${GD_GDA_LIBRARY} ${JPEG_GD_LIBRARY} ${PNG_GD_LIBRARY}  ${Z_GD_LIBRAY} ${Z_GD_LIBRARY} )
+  find_library ( Z_GD_LIBRARY NAMES libz )
+  SET ( GD_LIBRARIES ${GD_GD_LIBRARY} ${JPEG_GD_LIBRARY} ${PNG_GD_LIBRARY}  ${Z_GD_LIBRARY} )
   find_library ( GD_EXTERNAL NAMES bgd.dll )
-  find_library ( THEORADEC_LIBRARIES NAMES libtheoradec.a )
-  find_library ( THEORAENC_LIBRARIES NAMES libtheoraenc.a )
+  find_library ( THEORADEC_LIBRARIES NAMES libtheoradec )
+  find_library ( THEORAENC_LIBRARIES NAMES libtheoraenc )
   find_library ( VORBIS_LIBRARIES NAMES libvorbis.a )
   find_library ( VORBISENC_LIBRARIES NAMES libvorbisenc.a )
   find_library ( OGG_LIBRARIES NAMES libogg.a )
@@ -48,7 +48,7 @@ ENDIF ( $ENV{MAKE_PACKAGE} )
 find_path ( GD_INCLUDE gd.h )
 
 IF ( $ENV{MAKE_PACKAGE} )
-MESSAGE ( "Do not creating package" )
+MESSAGE ( "Do creating package" )
 ELSE ( $ENV{MAKE_PACKAGE} )
 
 SET ( ALL_LIBS )
@@ -99,15 +99,15 @@ ELSE ( OGG_FOUND )
   SET ( STOP_CONFIGURATION true )
 ENDIF ( OGG_FOUND )
 
-IF ( NOT GD_LIBRARY-NOTFOUND AND NOT GD_INCLUDE-NOTFOUND )
+IF ( NOT ${GD_LIBRARY} MATCHES GD_LIBRARY-NOTFOUND )
   MESSAGE ( STATUS "GD library and header found" )
   SET ( HAVE_LIBGD 1 CACHE INTERNAL "" )
   SET ( ALL_LIBS ${ALL_LIBS} ${GD_LIBRARY} )
   INCLUDE_DIRECTORIES ( ${GD_INCLUDE} )
-ELSE ( NOT GD_LIBRARY-NOTFOUND AND NOT GD_INCLUDE-NOTFOUND )
+ELSE ( NOT ${GD_LIBRARY} MATCHES GD_LIBRARY-NOTFOUND )
   MESSAGE ( STATUS "GD library and/or header NOT found" )
-  SET ( STOP_CONFIGURATION true )
-ENDIF ( NOT GD_LIBRARY-NOTFOUND AND NOT GD_INCLUDE-NOTFOUND )
+#  SET ( STOP_CONFIGURATION true )
+ENDIF ( NOT ${GD_LIBRARY} MATCHES GD_LIBRARY-NOTFOUND )
 
 IF ( STOP_CONFIGURATION )
   MESSAGE ( FATAL_ERROR "Some libraries are missing - stopping configuration" )
@@ -121,9 +121,12 @@ CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/confi
 
 ADD_DEFINITIONS ( -DHAVE_CONFIG_H )
 ADD_DEFINITIONS ( "-DPACKAGE_STRING=\"${PACKAGE_NAME}-${PACKAGE_VERSION}\"" )
-ADD_DEFINITIONS ( -D_FILE_OFFSET_BITS=64 )
+ADD_DEFINITIONS ( -D_FILE_OFFSET_BITS=64 -Wno-write-strings )
 #ADD_DEFINITIONS ( -DDEBUG )
-#ADD_DEFINITIONS ( -O0 -g )
+ADD_DEFINITIONS ( -O0 -g --std=c++0x -fPIC )
+IF ( HAVE_LIBGD )
+  ADD_DEFINITIONS ( -DWITH_GD2LIB )
+ENDIF (HAVE_LIBGD )
 
 INCLUDE_DIRECTORIES ( ${CMAKE_BINARY_DIR} )
 
@@ -143,13 +146,13 @@ INCLUDE ( InstallRequiredSystemLibraries )
 
 SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "Ogg Video Tools for video editing")
 SET(CPACK_PACKAGE_VENDOR "Yorn")
-SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README.txt")
+SET(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_SOURCE_DIR}/README")
 SET(CPACK_RESOURCE_FILE_README "${CMAKE_SOURCE_DIR}/cpackInfo/ReadMe.rtf")
 SET(CPACK_RESOURCE_FILE_WELCOME "${CMAKE_SOURCE_DIR}/cpackInfo/Welcome.rtf")
 SET(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_SOURCE_DIR}/cpackInfo/COPYING.rtf")
 SET(CPACK_PACKAGE_VERSION_MAJOR "0")
-SET(CPACK_PACKAGE_VERSION_MINOR "8")
-SET(CPACK_PACKAGE_VERSION_PATCH "a")
+SET(CPACK_PACKAGE_VERSION_MINOR "9")
+SET(CPACK_PACKAGE_VERSION_PATCH "")
 SET(CPACK_PACKAGE_INSTALL_DIRECTORY "OggVideoTools")
 IF(WIN32 AND NOT UNIX)
   # There is a bug in NSI that does not handle full unix paths properly. Make
diff --git a/ChangeLog b/ChangeLog
index dcdbcd1..152760e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -84,3 +84,9 @@ Version 0.8a:
   google can help much better
 - release creation reworked
 - configure reworked and added to trunk
+
+Version 0.9:
+- Bug in oggRingbuffer fixed (Thanks to Bjarne) -> solved problems with ffmpeg ogg implementation 
+- Manpage cleanup
+- fix for gcc 4.7 (used in Fedora 17)
+
diff --git a/README b/README
index 4c51163..79485fa 100644
--- a/README
+++ b/README
@@ -1,6 +1,6 @@
 You can find more detailed information (in pdf and manpages) in the docs/ directory
 
-This release (0.8) consists of the following tools:
+This release (0.9) consists of the following tools:
 
 oggJoin, oggSplit, oggCut, oggCat, oggTranscode, oggSlideshow, oggThumb, oggLength,
 oggScroll, oggDump, oggSilence
diff --git a/README.txt b/README.txt
deleted file mode 100644
index b7d00ca..0000000
--- a/README.txt
+++ /dev/null
@@ -1,34 +0,0 @@
-You can find more detailed information (in pdf and manpages) in the docs/ directory
-
-This release (0.7) consists of the following tools:
-
-oggJoin, oggSplit, oggCut, oggCat, oggResize, oggSlideshow, oggThumb, oggLength,
-oggScroll, oggDump, oggSilence
-
-Required Software
------------------
-
-for oggCat oggCut oggDump oggSplit oggJoin oggLength:
-NONE!! (No you do not need any ogg/theora/vorbis library for that)
-
-for oggSlideshow, oggThumb, oggResize, oggSilence:
-libogg
-libtheora (>= 1.0)
-libvorbis
- -> can both be found here: http://www.xiph.org/downloads/
-libgd -> can be found here: http://www.libgd.org/Downloads/
-
-for oggScroll:
-libogg
-libtheora (>= 1.0)
- -> can both be found here: http://www.xiph.org/downloads/
-libSDL
- -> http://www.libsdl.org
-
-If you have questions regarding the ogg video tools, write a mail
-(yorn_at_gmx_dot_net) or join the developers mailing list at
-
-https://lists.sourceforge.net/lists/listinfo/oggvideotools-users
-
-Have fun
-Yorn
diff --git a/configure b/configure
deleted file mode 100755
index 76e9c15..0000000
--- a/configure
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh
-echo
-echo "This project has switched to cmake"
-echo
-mkdir build
-cd build
-cmake ..
-echo
-echo "When all has gone right from here, do:"
-echo "> cd build"
-echo "> make"
-echo "> sudo make install"
-echo 
diff --git a/docs/DocuOggVideoTools.pdf b/docs/DocuOggVideoTools.pdf
new file mode 100755
index 0000000..7bebaf4
Binary files /dev/null and b/docs/DocuOggVideoTools.pdf differ
diff --git a/docs/conv2html.sh b/docs/conv2html.sh
new file mode 100755
index 0000000..ce4d8cc
--- /dev/null
+++ b/docs/conv2html.sh
@@ -0,0 +1,7 @@
+#!/bin/bash
+# man pages must be installed
+for i in oggCat oggCut oggJoin oggSplit oggTranscode oggSlideshow oggSilence oggThumb oggDump mkThumbs oggLength
+do
+  echo "creating $i.html"
+  man2html -f $i.1 > $i.html
+done
diff --git a/docs/oggCat.1 b/docs/oggCat.1
index a3fa4ad..e4169db 100644
--- a/docs/oggCat.1
+++ b/docs/oggCat.1
@@ -1,15 +1,15 @@
 .TH OGGCAT 1 "JAN 2010" Linux "User Manuals"
 .SH NAME
-oggCat \- concatenates two ogg video files (.ogv, .ogg or oga) 
+oggCat \- concatenates two or more ogg files 
 .SH SYNOPSIS
 .B oggCat [options] outfile.ogv file1.ogv file2.ogv [ file3.ogv [...] ]
 .SH DESCRIPTION
 .B oggCat
-concatenates two or more ogg files.
+concatenates two or more ogg files (.ogv, .ogg or oga), that contain theora and/or vorbis streams.
 
-The parameters of the resulting ogg file is defined by the first file in the concatenation list. The parameters could be changed by some options, explained below. 
+The parameters of the resulting ogg file is defined by the first file in the concatenation list. The parameters can be changed by the options, explained below. 
 
-All subsequent files that does not match these video file parameters are automatically transcoded.
+All subsequent files that does not match these file parameters are automatically transcoded.
 
 A concatenation will fail in case that there are not enought streams available. This could happen e.g. if the first file consists of one audio and one video stream and the second file only carries a video stream. 
 
@@ -86,11 +86,11 @@ or
 
 This command creates a cancatenated file 
 .I concatFile.ogv
-that consists of the three files myfile1.ogv myfile2.ogv myfile3.ogv
+that consists of the three files myfile1.ogv, myfile2.ogv and myfile3.ogv
 
 .B oggCat -s320x240 -q63 concatFile.ogv myfile1.ogv myfile2.ogv myfile3.ogv
 
-This command connects the three files myfile[1-3].ogv to file concatFile.ogv with the size of 320x240 and best quality.   
+This command connects the three files myfile[1-3].ogv to a file named concatFile.ogv with the video frame size of 320x240 and the best quality available.   
 
 .SH AUTHOR
 Joern Seger <yorn at gmx dot net>
@@ -102,4 +102,4 @@ Joern Seger <yorn at gmx dot net>
 .BR oggTranscode (1),
 .BR oggSlideshow (1),
 .BR oggThumb (1),
-.BR oggSilence (1)
\ No newline at end of file
+.BR oggSilence (1)
diff --git a/docs/oggCut.1 b/docs/oggCut.1
index a399f5d..a1ee517 100644
--- a/docs/oggCut.1
+++ b/docs/oggCut.1
@@ -42,6 +42,10 @@ Default: \-1
 
 .I Example: \-e 20000
 
+.IP \-i \-o
+Input file and output file set (alternative). 
+These parameters can be used alternatively. They are overwritten by the arguments after the options. If there is one argument given, it is used as the input file (and overwrites a file given with -i). If there are two arguments, the input and output files from the -i and -o option values are overwritten.  
+
 .SH EXAMPLE
 .I oggCut \-s 1000 \-e 21000 myVideo.ogv myOutput.ogv
 
diff --git a/docs/oggDump.1 b/docs/oggDump.1
index d6f9881..d0f18b5 100644
--- a/docs/oggDump.1
+++ b/docs/oggDump.1
@@ -2,7 +2,7 @@
 .SH NAME
 oggDump \- prints out information of ogg video files (.ogv, .ogg or oga)
 .SH SYNOPSIS
-.B oggDump [options] outfile.ogv
+.B oggDump [options] file.ogv
 .SH DESCRIPTION
 .B OggDump 
 gives detailed information about an ogg video file and prints these information with a given detail level.
diff --git a/docs/oggSplit.1 b/docs/oggSplit.1
index 74af8ed..a92af94 100644
--- a/docs/oggSplit.1
+++ b/docs/oggSplit.1
@@ -2,7 +2,7 @@
 .SH NAME
 oggSplit \- demultiplexes ogv files 
 .SH SYNOPSIS
-.B oggSplit outfile.ogv 
+.B oggSplit file.ogv 
 .SH DESCRIPTION
 .B oggSplit
 demultiplexes a multiplexed ogg file into several files with one stream each. 
@@ -18,7 +18,7 @@ This is the video stream encoded with the theora codec. The <ID> is the stream I
 This is the audio stream encoded with the vorbis codec. The <ID> is the stream ID that is created by the encoder to uniquely identify this stream.
 
 .I unknown_<ID>.ogv:
-This is an unknown stream, that could not be interpreted.The <ID> is the stream ID that is created by the encoder to uniquely identify this stream.
+This is an unknown stream, that could not be interpreted. The <ID> is the stream ID that is created by the encoder to uniquely identify this stream.
 
 All files are fully playable with your favoured video or audio player (except the streams, that are uninterpreted). 
 
@@ -32,4 +32,4 @@ Joern Seger <yorn at gmx dot net>
 .BR oggTranscode (1),
 .BR oggSlideshow (1),
 .BR oggThumb (1),
-.BR oggSilence (1)
\ No newline at end of file
+.BR oggSilence (1)
diff --git a/docs/oggTranscode.1 b/docs/oggTranscode.1
index 5cad1fc..a9a24e1 100644
--- a/docs/oggTranscode.1
+++ b/docs/oggTranscode.1
@@ -92,13 +92,17 @@ The expression for the picture appearances:
 
 .B <picture1.png>[,<startTime>[,<endTime>[,s]]]
 
-default 
+.B startTime
+in seconds - value can be a floating point.
+Default 
 .B startTime 
 is 0
 
+.B endTime
+in seconds - value can be a floating point.
 default 
 .B endTime
-is \-1, which is the end of the stream duration
+is \-1, which is the end of the stream duration 
 
 default 
 .B s 
@@ -156,4 +160,4 @@ Joern Seger <yorn at gmx dot net>
 .BR oggSplit (1),
 .BR oggSlideshow (1),
 .BR oggThumb (1),
-.BR oggSilence (1)
\ No newline at end of file
+.BR oggSilence (1)
diff --git a/restyle.sh b/restyle.sh
new file mode 100755
index 0000000..4601025
--- /dev/null
+++ b/restyle.sh
@@ -0,0 +1,3 @@
+#!/bin/bash
+astyle  --style=stroustrup -s2 --recursive *.cpp
+astyle  --style=stroustrup -s2 --recursive *.h src/*.h
diff --git a/scripts/mkSlideshow b/scripts/mkSlideshow
new file mode 100755
index 0000000..9aba0dc
--- /dev/null
+++ b/scripts/mkSlideshow
@@ -0,0 +1,93 @@
+#!/bin/sh
+#
+# usage: ./mkSlideshow ~/mypicDir/ audiofile.oga outputFile.ogm
+#
+# Variables to be changed
+#
+# video frame size
+SIZE="800x450"
+#
+# data rate of the outgoing slideshow stream in bit/s
+DATARATE="2048000"
+#
+# presentation time of one picture in seconds
+PR_TIME="10"
+#
+# frame rate in pictures/s
+FRAMERATE="24"
+#
+# reframe picture
+# This adds black borders to picture to meet the aspect ratio
+# of the video frame size specified earlier.
+# With the Ken Burns effect, this is not strictly necessary,
+# but the sliding may be smoother
+#REFRAME="-e" or ""
+REFRAME="-e"
+#
+# resample
+# This option says, how the picture should be loaded (by gdlib)
+# As the resize mechanism of gdlib is really good, it is used to
+# bring it do a value "near" the video frame size (usually a bit
+# bigger). You usually do not see a big difference, if you change
+# this value :-), so keep it as it is (default = 1.2)
+RESAMPLE="1.2"
+#
+# slideshow type
+# kb - Ken Burns Effect (sliding and zooming)
+# p  - plain (picture display only, no crossfade between pictures)
+# cf - crossfade (picture display, crossfading between pictures)
+TYPE="kb"
+#
+#
+# Temporal file name
+TMP_VIDEOFILE="slideshow_tmp.ogv"
+TMP_AUDIOFILE="audio_tmp.oga"
+
+if [ $# -ne 3 ] 
+then
+  echo "usage $0 <picture directory> <audiofile>.oga <outputfile>.ogv"
+  exit
+fi
+
+echo 
+echo "Creating a slideshow with the following data"
+echo 
+echo "Audio file  : $2"
+echo "Created file: $3"
+echo "Pictures to be presented are:"
+ls "$1"/*.jpg
+echo
+echo "Command line for oggSlideshow is:"
+echo "oggSlideshow -s $SIZE -d $DATARATE -l $PR_TIME -f $FRAMERATE \ "
+echo " $REFRAME -r $RESAMPLE -t $TYPE -o $TMP_VIDEOFILE $1/*.jpg "
+
+# creating the slideshow
+oggSlideshow -s $SIZE -d $DATARATE -l $PR_TIME -f $FRAMERATE \
+ $REFRAME -r $RESAMPLE -t $TYPE -o $TMP_VIDEOFILE "$1"/*.jpg
+
+# what is the length of this
+LENGTHVIDEO=`oggLength $TMP_VIDEOFILE`
+
+#
+# cut the audio file
+LENGTHAUDIO=`oggLength $2`
+
+#
+# is the audio file to short?
+last="newfile"
+if [ $LENGTHVIDEO -gt $LENGTHAUDIO ]
+then
+  echo "warning slideshow ($LENGTHVIDEO) is longer than your audio file ($LENGTHAUDIO)"
+  exit -1
+fi
+
+# cutting the audiofile
+oggCut -l$LENGTHVIDEO -i$2 -o$TMP_AUDIOFILE
+
+#
+# Join audio and video file
+oggJoin $3 $TMP_VIDEOFILE $TMP_AUDIOFILE
+
+#
+# remove
+rm -f $TMP_VIDEOFILE $TMP_AUDIOFILE
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 678a828..f0fcbad 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -1,158 +1,28 @@
-SET ( EXECUTABLES oggSplit oggDump oggJoin oggCut oggLength oggCat oggSlideshow
-      oggTranscode oggThumb oggSilence )
-
-SET ( LIBRARY_SRC effector.cpp crossfader.cpp crossfader.cpp
-				  mediaUnit.cpp mediaRepository.cpp fileRepository.cpp
-                  rawMediaPacket.cpp mediaDecoder.cpp mediaEncoder.cpp
-                  mediaConverter.cpp oggDecoder.cpp oggStreamDecoder.cpp
-                  oggPage.cpp oggPacket.cpp ringbuffer.cpp
-                  oggRingbuffer.cpp crc.cpp granulePosInterpreter.cpp
-                  mediaOutputDecoder.cpp mediaInputEncoder.cpp
-                  streamSerializer.cpp oggBOSExtractorFactory.cpp
-                  oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp
-                  streamParameter.cpp streamMux.cpp bufferRepository.cpp
-                  oggComment.cpp
-                  theoraPosInterpreter.cpp theoraStreamParameter.cpp
-                  theoraExtractor.cpp
-                  vorbisPosInterpreter.cpp vorbisStreamParameter.cpp
-                  vorbisExtractor.cpp
-                  cmdlineextractor.cpp basePlane.cpp rgbPlane.cpp
-                  blendElement.cpp
-                  katePosInterpreter.cpp kateStreamParameter.cpp
-                  kateExtractor.cpp
-                  effector.cpp crossfader.cpp plainPicture.cpp
-                  lowpassEffect.cpp kenburnseffect.cpp
-              pictureResize.cpp pictureBlend.cpp pictureLoader.cpp
-                  hookHandler.cpp videoHook.cpp audioHook.cpp
-                  vorbisDecoder.cpp vorbisEncoder.cpp audioPacket.cpp
-                  audioConverter.cpp theoraDecoder.cpp theoraEncoder.cpp
-          helper.cpp log.cpp
-    )
-
-SET ( RESAMPLE_SRC libresample/filterkit.c libresample/resample.c
-      libresample/resamplesubs.c )
-
-
-# These are the
-SET ( CODER_LIBRARY_SRC theoraDecoder.cpp theoraEncoder.cpp
-                        vorbisDecoder.cpp vorbisEncoder.cpp
-                        audioPacket.cpp audioConverter.cpp
-    )
-
-SET ( HEADER 
-exception.h
-effector.h 
-crossfader.h 
-crossfader.h
-mediaUnit.h 
-mediaRepository.h 
-fileRepository.h
-rawMediaPacket.h 
-mediaDecoder.h 
-mediaEncoder.h
-mediaConverter.h 
-oggDecoder.h 
-oggStreamDecoder.h
-oggPage.h 
-oggPacket.h 
-ringbuffer.h
-oggRingbuffer.h 
-crc.h 
-granulePosInterpreter.h
-mediaOutputDecoder.h 
-mediaInputEncoder.h
-streamSerializer.h 
-oggBOSExtractorFactory.h
-oggStreamEncoder.h 
-oggEncoder.h 
-streamExtractor.h
-streamParameter.h 
-streamMux.h 
-bufferRepository.h
-oggComment.h
-theoraPosInterpreter.h 
-theoraStreamParameter.h
-theoraExtractor.h
-vorbisPosInterpreter.h 
-vorbisStreamParameter.h
-vorbisExtractor.h
-cmdlineextractor.h 
-basePlane.h 
-rgbPlane.h
-blendElement.h
-katePosInterpreter.h 
-kateStreamParameter.h
-kateExtractor.h
-effector.h 
-crossfader.h 
-plainPicture.h
-lowpassEffect.h 
-kenburnseffect.h
-pictureResize.h 
-pictureBlend.h 
-pictureLoader.h
-hookHandler.h 
-videoHook.h 
-audioHook.h
-vorbisDecoder.h 
-vorbisEncoder.h 
-audioPacket.h
-audioConverter.h 
-theoraDecoder.h 
-theoraEncoder.h
-helper.h 
-log.h
-refObject.h
-definition.h
-oggHeader.h
-theoraHeader.h
-vorbisHeader.h
-kateHeader.h
-oggTypes.h
-streamConfig.h
-th_helper.h
-wishList.h
+INCLUDE_DIRECTORIES ( ${THEORADEC_INCLUDE_DIRS}
+                      ${THEORAENC_INCLUDE_DIRS}
+                      ${VORBIS_INCLUDE_DIRS}
+                      ${VORBISENC_INCLUDE_DIRS}
+                      ${OGG_INCLUDE_DIRS}
+                      ${GD_INCLUDE_DIRS}
+                      ${CMAKE_CURRENT_LIST_DIR}
+                      ${CMAKE_CURRENT_LIST_DIR}/base
+                      ${CMAKE_CURRENT_LIST_DIR}/effect
+                      ${CMAKE_CURRENT_LIST_DIR}/misc
+                      ${CMAKE_CURRENT_LIST_DIR}/ovt_kate
+                      ${CMAKE_CURRENT_LIST_DIR}/ovt_vorbis
+                      ${CMAKE_CURRENT_LIST_DIR}/ovt_theora
+                      ${CMAKE_CURRENT_LIST_DIR}/main
+                      ${CMAKE_CURRENT_LIST_DIR}/libresample
 )
 
-# ADD_DEFINITIONS ( -DDEBUG )
-
-INCLUDE_DIRECTORIES ( ${THEORADEC_INCLUDE_DIRS} ${THEORAENC_INCLUDE_DIRS}
-                      ${VORBIS_INCLUDE_DIRS} ${VORBISENC_INCLUDE_DIRS}
-                      ${OGG_INCLUDE_DIRS} ${GD_INCLUDE_DIRS} )
-
-IF ( $ENV{MAKE_PACKAGE} )
-  ADD_LIBRARY ( oggvideotools STATIC ${LIBRARY_SRC} ${RESAMPLE_SRC} )
-ELSE ( $ENV{MAKE_PACKAGE} )
-  ADD_LIBRARY ( oggvideotools SHARED ${LIBRARY_SRC} ${RESAMPLE_SRC} )
-ENDIF ( $ENV{MAKE_PACKAGE} )
-  TARGET_LINK_LIBRARIES ( oggvideotools ${ALL_LIBS})
-
-IF ( $ENV{MAKE_PACKAGE} )
-  MESSAGE ( " Creating static Executables ${ALL_STATIC_LIBS}" )
-  FOREACH ( exec ${EXECUTABLES} )
-    ADD_EXECUTABLE ( ${exec} ${exec}.cpp )
-    TARGET_LINK_LIBRARIES ( ${exec} oggvideotools ${ALL_STATIC_LIBS} )
-  ENDFOREACH ( exec ${EXECUTABLES} )
-
-  IF ( WIN32 )
-    MESSAGE ( "Installing additional library ${GD_EXTERNAL}" )
-    INSTALL ( FILES ${GD_EXTERNAL} DESTINATION bin )
-	INSTALL ( FILES ${CMAKE_SOURCE_DIR}/win32/GD-COPYING.TXT DESTINATION doc )
-  ENDIF ( WIN32 )
-
-ELSE ( $ENV{MAKE_PACKAGE} )
-
-  MESSAGE ( "Libraries are: ${ALL_LIBS}" )
-  FOREACH ( exec ${EXECUTABLES} )
-    ADD_EXECUTABLE ( ${exec} ${exec}.cpp )
-    TARGET_LINK_LIBRARIES ( ${exec} oggvideotools )
-#    ADD_EXECUTABLE ( ${exec}_static ${exec}.cpp ${LIBRARY_SRC} ${RESAMPLE_SRC} )
-#    TARGET_LINK_LIBRARIES ( ${exec}_static ${ALL_LIBS} ) 
-  ENDFOREACH ( exec ${EXECUTABLES} )
-   
-ENDIF ( $ENV{MAKE_PACKAGE} )
+ADD_SUBDIRECTORY ( base )
+ADD_SUBDIRECTORY ( effect )
+ADD_SUBDIRECTORY ( binaries )
+ADD_SUBDIRECTORY ( misc )
+ADD_SUBDIRECTORY ( ovt_kate )
+ADD_SUBDIRECTORY ( ovt_vorbis )
+ADD_SUBDIRECTORY ( ovt_theora )
+ADD_SUBDIRECTORY ( main )
+ADD_SUBDIRECTORY ( libresample )
 
-INSTALL ( TARGETS ${EXECUTABLES} DESTINATION bin )
-INSTALL ( TARGETS oggvideotools DESTINATION lib )
-INSTALL ( FILES ${HEADER} DESTINATION include/oggvt )
 
diff --git a/src/base/CMakeLists.txt b/src/base/CMakeLists.txt
new file mode 100644
index 0000000..f1427ef
--- /dev/null
+++ b/src/base/CMakeLists.txt
@@ -0,0 +1,25 @@
+SET ( LIBRARY_BASE_SRC
+      oggPage.cpp
+      oggPacket.cpp
+      oggComment.cpp
+      oggDecoder.cpp
+      oggEncoder.cpp
+      oggRingbuffer.cpp
+      oggStreamDecoder.cpp
+      oggStreamEncoder.cpp
+      mediaUnit.cpp
+      mediaRepository.cpp
+      mediaDecoder.cpp
+      mediaEncoder.cpp
+      mediaConverter.cpp
+      granulePosInterpreter.cpp
+      mediaOutputDecoder.cpp
+      mediaInputEncoder.cpp
+      streamParameter.cpp
+      streamExtractor.cpp
+      bufferRepository.cpp
+      fileRepository.cpp
+      rawMediaPacket.cpp
+)
+
+ADD_LIBRARY ( ovtbase ${LIBRARY_BASE_SRC} )
diff --git a/src/bufferRepository.cpp b/src/base/bufferRepository.cpp
similarity index 92%
rename from src/bufferRepository.cpp
rename to src/base/bufferRepository.cpp
index 6dd34e6..43e9e8d 100644
--- a/src/bufferRepository.cpp
+++ b/src/base/bufferRepository.cpp
@@ -1,7 +1,7 @@
 #include "bufferRepository.h"
 
 BufferRepository::BufferRepository(const std::string& name)
-    : MediaRepository(MediaUnit::readwrite, name)
+  : MediaRepository(MediaUnit::readwrite, name)
 {
 }
 
diff --git a/src/bufferRepository.h b/src/base/bufferRepository.h
similarity index 100%
rename from src/bufferRepository.h
rename to src/base/bufferRepository.h
diff --git a/src/fileRepository.cpp b/src/base/fileRepository.cpp
similarity index 79%
rename from src/fileRepository.cpp
rename to src/base/fileRepository.cpp
index 7428d18..2036251 100644
--- a/src/fileRepository.cpp
+++ b/src/base/fileRepository.cpp
@@ -22,6 +22,7 @@
 #include <iostream>
 #include <cstring>
 #include <cerrno>
+// #include <fstream> .. later
 
 #include "rawMediaPacket.h"
 #include "fileRepository.h"
@@ -29,14 +30,14 @@
 #include "log.h"
 
 FileRepository::FileRepository()
-    : MediaRepository(read, "FileRepository"), fileDescriptor(0), filename(""), bunchSize(4096),
+  : MediaRepository(read, "FileRepository"), fileDescriptor(0), filename(""), bunchSize(4096),
     eof(true)
 {
 
 }
 
 FileRepository::FileRepository(const std::string& _filename, MediaDirection_t type)
-    : MediaRepository(type, "FileRepository"), filename(_filename), bunchSize(4096), eof(false)
+  : MediaRepository(type, "FileRepository"), filename(_filename), bunchSize(4096), eof(false)
 {
   eof = true;
   if (mediaDirection == write) {
@@ -65,6 +66,7 @@ void FileRepository::close()
   if (fileDescriptor) {
     fclose(fileDescriptor);
     fileDescriptor = 0;
+    repositoryAvailable = false;
   }
 }
 
@@ -86,7 +88,7 @@ bool FileRepository::isEndOfFile()
 MediaUnit& FileRepository::operator<<(RawMediaPacket& packet)
 {
   if ((mediaDirection == write) && (repositoryAvailable == true)) {
-    if (fwrite(packet.getData(),1,packet.size(),fileDescriptor) != packet.size()) {
+    if (fwrite(&(packet->getData())[0],1,packet->getSize(),fileDescriptor) != packet->getSize()) {
       throw OggException(name+"::operator<<: "+strerror(errno));
     }
   }
@@ -97,16 +99,19 @@ MediaUnit& FileRepository::operator<<(RawMediaPacket& packet)
 MediaUnit& FileRepository::operator>>(RawMediaPacket& packet)
 {
   uint32 readBytes;
-  unsigned char* buffer = new unsigned char[bunchSize];
+  std::vector<uint8_t> buffer(bunchSize);
 
   if (mediaDirection == read) {
 
-    if ((readBytes = fread(buffer,1,bunchSize,fileDescriptor)) < 0) {
+    if ((readBytes = fread(buffer.data(),1,bunchSize,fileDescriptor)) < 0) {
       logger.error() << name << "::operator>>: "<< strerror(errno) << "\n";
       return(*this);
     }
 
-    packet = RawMediaPacket(new RawMediaData(buffer, readBytes, false)); // do not create copy
+    if (buffer.size() > readBytes)
+      buffer.resize(readBytes);
+
+    packet = std::make_shared<RawMediaPacketInternal>(buffer, false); // do not create copy
 
     if (readBytes < bunchSize) {
       repositoryAvailable = false;
diff --git a/src/fileRepository.h b/src/base/fileRepository.h
similarity index 100%
rename from src/fileRepository.h
rename to src/base/fileRepository.h
diff --git a/src/granulePosInterpreter.cpp b/src/base/granulePosInterpreter.cpp
similarity index 85%
rename from src/granulePosInterpreter.cpp
rename to src/base/granulePosInterpreter.cpp
index cec24cd..693a031 100644
--- a/src/granulePosInterpreter.cpp
+++ b/src/base/granulePosInterpreter.cpp
@@ -1,7 +1,7 @@
 #include "granulePosInterpreter.h"
 
 GranulePosInterpreter::GranulePosInterpreter()
-    : initialized(false), actualGranulePosition(0)
+  : initialized(false), actualGranulePosition(0)
 {
 }
 
diff --git a/src/granulePosInterpreter.h b/src/base/granulePosInterpreter.h
similarity index 100%
rename from src/granulePosInterpreter.h
rename to src/base/granulePosInterpreter.h
diff --git a/src/mediaConverter.cpp b/src/base/mediaConverter.cpp
similarity index 98%
rename from src/mediaConverter.cpp
rename to src/base/mediaConverter.cpp
index 398a1cf..9768af7 100644
--- a/src/mediaConverter.cpp
+++ b/src/base/mediaConverter.cpp
@@ -25,7 +25,7 @@
 #include "log.h"
 
 MediaConverter::MediaConverter()
-    : mediaConverterState(mdec_free)
+  : mediaConverterState(mdec_free)
 {
 }
 
diff --git a/src/mediaConverter.h b/src/base/mediaConverter.h
similarity index 96%
rename from src/mediaConverter.h
rename to src/base/mediaConverter.h
index 4adf69b..7f867e0 100644
--- a/src/mediaConverter.h
+++ b/src/base/mediaConverter.h
@@ -69,11 +69,12 @@ public:
   bool isEmpty();
   bool isEndOfStream();
 
-  virtual std::string configuration() const {
+  virtual std::string configuration() const
+  {
     return (std::string(""));
-  };
+  }
 
-  virtual void reset() {};
+  virtual void reset() {}
 };
 
 #endif /*MEDIACONVERTER_H_*/
diff --git a/src/mediaDecoder.cpp b/src/base/mediaDecoder.cpp
similarity index 100%
rename from src/mediaDecoder.cpp
rename to src/base/mediaDecoder.cpp
diff --git a/src/mediaDecoder.h b/src/base/mediaDecoder.h
similarity index 100%
rename from src/mediaDecoder.h
rename to src/base/mediaDecoder.h
diff --git a/src/mediaEncoder.cpp b/src/base/mediaEncoder.cpp
similarity index 87%
rename from src/mediaEncoder.cpp
rename to src/base/mediaEncoder.cpp
index 8dc99f0..9e92b07 100644
--- a/src/mediaEncoder.cpp
+++ b/src/base/mediaEncoder.cpp
@@ -1,7 +1,7 @@
 #include "mediaEncoder.h"
 
 MediaEncoder::MediaEncoder()
-    : useFixBunches(0), bunchsize(false)
+  : useFixBunches(0), bunchsize(false)
 {
 }
 
diff --git a/src/mediaEncoder.h b/src/base/mediaEncoder.h
similarity index 100%
rename from src/mediaEncoder.h
rename to src/base/mediaEncoder.h
diff --git a/src/mediaInputEncoder.cpp b/src/base/mediaInputEncoder.cpp
similarity index 88%
rename from src/mediaInputEncoder.cpp
rename to src/base/mediaInputEncoder.cpp
index 93afc77..84278c6 100644
--- a/src/mediaInputEncoder.cpp
+++ b/src/base/mediaInputEncoder.cpp
@@ -1,7 +1,7 @@
 #include "mediaInputEncoder.h"
 
 MediaInputEncoder::MediaInputEncoder(const uint8 _streamNo)
-    : streamNo(_streamNo)
+  : streamNo(_streamNo)
 {
 }
 
diff --git a/src/mediaInputEncoder.h b/src/base/mediaInputEncoder.h
similarity index 100%
rename from src/mediaInputEncoder.h
rename to src/base/mediaInputEncoder.h
diff --git a/src/mediaOutputDecoder.cpp b/src/base/mediaOutputDecoder.cpp
similarity index 89%
rename from src/mediaOutputDecoder.cpp
rename to src/base/mediaOutputDecoder.cpp
index dcfce2f..7779c63 100644
--- a/src/mediaOutputDecoder.cpp
+++ b/src/base/mediaOutputDecoder.cpp
@@ -1,7 +1,7 @@
 #include "mediaOutputDecoder.h"
 
 MediaOutputDecoder::MediaOutputDecoder(const uint8 _streamNo)
-    : streamID(_streamNo)
+  : streamID(_streamNo)
 {
 }
 
diff --git a/src/mediaOutputDecoder.h b/src/base/mediaOutputDecoder.h
similarity index 100%
rename from src/mediaOutputDecoder.h
rename to src/base/mediaOutputDecoder.h
diff --git a/src/mediaRepository.cpp b/src/base/mediaRepository.cpp
similarity index 89%
rename from src/mediaRepository.cpp
rename to src/base/mediaRepository.cpp
index e3ef252..beadeae 100644
--- a/src/mediaRepository.cpp
+++ b/src/base/mediaRepository.cpp
@@ -23,12 +23,12 @@
 #include "mediaRepository.h"
 
 MediaRepository::MediaRepository()
-    : MediaUnit(MediaUnit::read, std::string("")), repositoryAvailable(false)
+  : MediaUnit(MediaUnit::read, std::string("")), repositoryAvailable(false)
 {
 }
 
 MediaRepository::MediaRepository(MediaDirection_t type, const std::string name)
-    : MediaUnit(type, name), repositoryAvailable(false)
+  : MediaUnit(type, name), repositoryAvailable(false)
 {
 }
 
diff --git a/src/mediaRepository.h b/src/base/mediaRepository.h
similarity index 100%
rename from src/mediaRepository.h
rename to src/base/mediaRepository.h
diff --git a/src/mediaUnit.cpp b/src/base/mediaUnit.cpp
similarity index 96%
rename from src/mediaUnit.cpp
rename to src/base/mediaUnit.cpp
index f8762a9..0de529e 100644
--- a/src/mediaUnit.cpp
+++ b/src/base/mediaUnit.cpp
@@ -24,7 +24,7 @@
 #include <iostream>
 
 MediaUnit::MediaUnit(MediaDirection_t type, const std::string _name)
-    : name(_name), mediaDirection(type)
+  : name(_name), mediaDirection(type)
 {
 }
 
diff --git a/src/mediaUnit.h b/src/base/mediaUnit.h
similarity index 100%
rename from src/mediaUnit.h
rename to src/base/mediaUnit.h
diff --git a/src/oggComment.cpp b/src/base/oggComment.cpp
similarity index 100%
rename from src/oggComment.cpp
rename to src/base/oggComment.cpp
diff --git a/src/oggComment.h b/src/base/oggComment.h
similarity index 100%
rename from src/oggComment.h
rename to src/base/oggComment.h
diff --git a/src/oggDecoder.cpp b/src/base/oggDecoder.cpp
similarity index 72%
rename from src/oggDecoder.cpp
rename to src/base/oggDecoder.cpp
index f1cfaf5..36deac4 100644
--- a/src/oggDecoder.cpp
+++ b/src/base/oggDecoder.cpp
@@ -30,7 +30,7 @@
 #define min(a,b) (((a)<(b))?(a):(b));
 
 OggDecoder::OggDecoder()
-    : oggRingbuffer(71000) // max page size plus 4KB read size
+  : oggRingbuffer(71000) // max page size plus 4KB read size
 {
   setConfigured();
 }
@@ -46,27 +46,29 @@ void OggDecoder::clear()
 
 void OggDecoder::getNextPages()
 {
-  uint8* data(0);
-  uint32 length(0);
 
-  while (oggRingbuffer.getNextPage(data, length)) {
+  while (1) {
+    std::vector<uint8_t> data; // this will be empty at the end, as we use move semantic
+    uint32 length(0);
 
-    uint32 headerLength = sizeof(OggHeader) + ((OggHeader*)data)->tableSegments;
-    uint32 bodyLength = length - headerLength;
-    OggPage page(new OggPageInternal(data, headerLength, bodyLength));
+    if (oggRingbuffer.getNextPage(data, length)) {
 
-    oggPageList.push_back(page);
+      uint32 headerLength = sizeof(OggHeader) + ((OggHeader*)data.data())->tableSegments;
+      uint32 bodyLength = length - headerLength;
+      auto page = std::make_shared<OggPageInternal>(data, headerLength, bodyLength);
 
-    data = 0;
+      oggPageList.push(page);
 
-    setAvailable();
+      setAvailable();
+    } else
+      break;
   }
 }
 
 OggDecoder& OggDecoder::operator<<(RawMediaPacket& mediaPacket)
 {
   /* insert the raw data into the ring buffer*/
-  oggRingbuffer.addData(mediaPacket.getData(), mediaPacket.size());
+  oggRingbuffer.addData(mediaPacket->getData(), mediaPacket->getSize());
 
   /* extract ogg pages */
   getNextPages();
@@ -76,10 +78,9 @@ OggDecoder& OggDecoder::operator<<(RawMediaPacket& mediaPacket)
 
 OggDecoder& OggDecoder::operator>>(OggPage& page)
 {
-
   if (isAvailable()) {
     page = oggPageList.front();
-    oggPageList.pop_front();
+    oggPageList.pop();
     if (oggPageList.empty())
       setEmpty();
   } else
diff --git a/src/oggDecoder.h b/src/base/oggDecoder.h
similarity index 98%
rename from src/oggDecoder.h
rename to src/base/oggDecoder.h
index b9767d7..79ab658 100644
--- a/src/oggDecoder.h
+++ b/src/base/oggDecoder.h
@@ -29,6 +29,7 @@
 #include "rawMediaPacket.h"
 #include "oggPage.h"
 #include "oggRingbuffer.h"
+#include <queue>
 
 //! class to decode a raw bytestream into Ogg packets
 /*! This class awaits raw packets (in form of a RawMediaPacket). These
@@ -60,7 +61,7 @@ class OggDecoder : public MediaDecoder {
 
 protected:
   OggRingbuffer              oggRingbuffer;
-  std::list<OggPage>         oggPageList;
+  std::queue<OggPage>       oggPageList;
 
   void getNextPages();
 
diff --git a/src/base/oggDecoderFactory.cpp b/src/base/oggDecoderFactory.cpp
new file mode 100644
index 0000000..1ff2aa2
--- /dev/null
+++ b/src/base/oggDecoderFactory.cpp
@@ -0,0 +1,29 @@
+#include "oggDecoderFactory.h"
+
+OggDecoderFactory::OggDecoderFactory()
+{
+}
+
+OggDecoderFactory::~OggDecoderFactory()
+{
+}
+
+
+OggStreamDecoder* OggDecoderFactory::getOggStreamDecoder(OggPage& page)
+{
+  if (oggPage.bos()) {
+    switch (getStreamType(OggPage)) {
+    case ogg_theora:
+      return()
+    }
+  } else
+    return(0);
+}
+
+
+
+OggStreamDecoder* OggDecoderFactory::getOggStreamDecoder(OggPacket& packet)
+{
+
+}
+
diff --git a/src/base/oggDecoderFactory.h b/src/base/oggDecoderFactory.h
new file mode 100644
index 0000000..2d5ddcd
--- /dev/null
+++ b/src/base/oggDecoderFactory.h
@@ -0,0 +1,21 @@
+#ifndef OGGDECODERFACTORY_H_
+#define OGGDECODERFACTORY_H_
+
+#include "oggPage.h"
+#include "oggPacket.h"
+#include "oggTypes.h"
+#include "oggStreamDecoder.h"
+
+class OggDecoderFactory {
+public:
+  OggDecoderFactory();
+  virtual ~OggDecoderFactory();
+
+  static OggStreamDecoder* getOggStreamDecoder(OggPage& page);
+  static OggStreamDecoder* getOggStreamDecoder(OggPacket& packet);
+
+  static OggType getStreamType(OggPage& page);
+  static OggType getStreamType(OggPacket& packet);
+};
+
+#endif /*OGGDECODERFACTORY_H_*/
diff --git a/src/oggEncoder.cpp b/src/base/oggEncoder.cpp
similarity index 83%
rename from src/oggEncoder.cpp
rename to src/base/oggEncoder.cpp
index 213a552..5235861 100644
--- a/src/oggEncoder.cpp
+++ b/src/base/oggEncoder.cpp
@@ -26,7 +26,7 @@
 #include "log.h"
 
 PageBufferElement::PageBufferElement()
-    : time(-1), empty(true), interpreter(0)
+  : time(-1), empty(true), interpreter(0)
 {
 }
 
@@ -35,7 +35,7 @@ PageBufferElement::~PageBufferElement()
 }
 
 OggEncoder::OggEncoder()
-    : withBuffer(false)
+  : withBuffer(false)
 {
   setConfigured();
 }
@@ -61,17 +61,10 @@ void OggEncoder::flush()
 
 void OggEncoder::serializePage(OggPage& page)
 {
-  unsigned char* bunch = new unsigned char[page.length()];
 
-  if (bunch) {
-    memcpy(bunch, page.data(), page.length());
-
-    rawPacketList.push_back(RawMediaPacket(new RawMediaData(bunch, page.length(), false)));
-
-    setAvailable();
-  } else
-    logger.error() << "OggEncoder::operator<<: Out of Memory\n";
+  rawPacketList.push_back(std::make_shared<RawMediaPacketInternal>(page->data(), true));
 
+  setAvailable();
 }
 
 void OggEncoder::insertNextPage(OggPage& page)
@@ -87,8 +80,8 @@ OggEncoder& OggEncoder::operator<<(OggPage page)
     return(*this);
   }
   /*
-      uint8  streamNo(page.getStreamNo());
-      double time(oggBuffer[streamNo].interpreter->getTime(page.granulepos()));
+      uint8  streamNo(page->getStreamNo());
+      double time(oggBuffer[streamNo].interpreter->getTime(page->granulepos()));
 
       double nextTime(-2);
       uint8  nextStreamNo(0);
diff --git a/src/oggEncoder.h b/src/base/oggEncoder.h
similarity index 100%
rename from src/oggEncoder.h
rename to src/base/oggEncoder.h
diff --git a/src/oggHeader.h b/src/base/oggHeader.h
similarity index 91%
rename from src/oggHeader.h
rename to src/base/oggHeader.h
index 34e59cf..c675575 100644
--- a/src/oggHeader.h
+++ b/src/base/oggHeader.h
@@ -29,11 +29,17 @@ struct OggHeader {
   char    ogg[4];
   char    version;
 
+#ifdef LITTLE_ENDIAN
   char    pack_type:1;
   char    page_type:1;
   char    last:1;
   char    reserved:5;
-
+#else
+  char    reserved:5;
+  char    last:1;
+  char    page_type:1;
+  char    pack_type:1;
+#endif
   int64   position;
   uint32  serial;
   uint32  pageNo;
diff --git a/src/base/oggPacket.cpp b/src/base/oggPacket.cpp
new file mode 100644
index 0000000..970884e
--- /dev/null
+++ b/src/base/oggPacket.cpp
@@ -0,0 +1,281 @@
+/*
+ * OggPacket will carry all relevant information of an ogg packet
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <iostream>
+#include <sstream>
+#include <cstring>
+
+#include "oggPacket.h"
+#include "log.h"
+
+OggPacketInternal::OggPacketInternal()
+  : oggPacket {/*packet*/0,/*bytes*/0, /*b_o_s*/0, /*e_o_s*/0, /*granualpos*/-1, /*packetno*/0},
+streamType(OggType::unknown), streamNo(255), streamHeader(false)
+{
+}
+
+OggPacketInternal::OggPacketInternal(uint8* data, uint32 length,
+                                     uint32 packetNo, int64 granulePos, PacketType packetType)
+  : oggPacket {/*packet*/data,/*bytes*/length, /*b_o_s*/0, /*e_o_s*/0, /*granualpos*/granulePos, /*packetno*/packetNo},
+streamType(OggType::unknown), streamNo(255), streamHeader(false)
+{
+  switch (packetType) {
+  case PacketType::bos:
+    oggPacket.b_o_s = 256;
+    break;
+  case PacketType::eos:
+    oggPacket.e_o_s = 256;
+    break;
+  default: {
+  }
+  }
+
+}
+
+OggPacket OggPacketInternal::clone()
+{
+  /* a bit nasty, as ogg_packet is c */
+  uint8* data = new uint8[oggPacket.bytes];
+  memcpy(data, oggPacket.packet, oggPacket.bytes);
+
+  PacketType packetType(PacketType::normal);
+
+  if (oggPacket.b_o_s)
+    packetType = PacketType::bos;
+
+  if (oggPacket.e_o_s)
+    packetType = PacketType::eos;
+
+  OggPacket pkt = std::make_shared<OggPacketInternal>(data, oggPacket.bytes, oggPacket.packetno, oggPacket.granulepos, packetType);
+
+  pkt->streamNo = streamNo;
+  pkt->streamType = streamType;
+  pkt->streamHeader = streamHeader;
+
+  return pkt;
+}
+
+OggPacket OggPacketInternal::getPtr()
+{
+  return shared_from_this();
+}
+
+OggPacket OggPacketInternal::create(uint8 *data, uint32 length, uint32 packetNo, int64 granulePos, OggPacketInternal::PacketType packetType)
+{
+  return std::make_shared<OggPacketInternal>(data, length, packetNo, granulePos, packetType);
+
+}
+
+
+OggPacketInternal::~OggPacketInternal()
+{
+  delete[] oggPacket.packet;
+}
+
+
+int64 OggPacketInternal::granulepos()
+{
+  return oggPacket.granulepos;
+}
+
+void OggPacketInternal::setGranulepos(int64 pos)
+{
+  oggPacket.granulepos = pos;
+}
+
+void OggPacketInternal::setStreamHeader()
+{
+  streamHeader = true;
+}
+
+bool OggPacketInternal::isStreamHeader()
+{
+  return streamHeader;
+}
+
+uint32 OggPacketInternal::getPacketNo()
+{
+  return oggPacket.packetno;
+}
+
+uint32 OggPacketInternal::length()
+{
+  return oggPacket.bytes;
+}
+
+bool OggPacketInternal::isBOS()
+{
+  return oggPacket.b_o_s;
+}
+
+bool OggPacketInternal::isEOS()
+{
+  return oggPacket.e_o_s;
+}
+
+void OggPacketInternal::setBOS()
+{
+  oggPacket.b_o_s = 1;
+}
+
+void OggPacketInternal::setEOS()
+{
+  oggPacket.e_o_s = 1;
+}
+
+void OggPacketInternal::unsetBOS()
+{
+  oggPacket.b_o_s = 0;
+}
+
+void OggPacketInternal::unsetEOS()
+{
+  oggPacket.e_o_s = 0;
+}
+
+/*
+ogg_packet OggPacketInternal::toLibogg()
+{
+  return(*objPtr);
+}
+*/
+uint8 OggPacketInternal::getStreamNo()
+{
+  return streamNo;
+}
+
+OggType OggPacketInternal::getStreamType()
+{
+  return streamType;
+}
+
+void OggPacketInternal::setStreamNo(int8 no)
+{
+  streamNo = no;
+}
+
+void OggPacketInternal::setStreamType(OggType type)
+{
+  streamType = type;
+}
+
+/*
+void OggPacketInternal::fromLibogg(ogg_packet pack)
+{
+  // copy all information including the pointers
+  bytes      = pack.bytes;
+  packetno   = pack.packetno;
+  granulepos = pack.granulepos;
+  b_o_s      = pack.b_o_s;
+  e_o_s      = pack.e_o_s;
+
+  packet = new uint8[pack.bytes];
+
+  if (packet) {
+    memcpy(packet, pack.packet, pack.bytes);
+  }
+  else {
+    logger.error() << "OggPacketInternal::fromLibogg: out of memory\n";
+  }
+}
+*/
+
+uint8* OggPacketInternal::data()
+{
+  return oggPacket.packet;
+}
+
+/* print levels:
+ * 1) only data length information
+ * 2) header information
+ * 3) additional header information
+ * 4) header dump
+ * 5) body dump
+ */
+std::string OggPacketInternal::print(uint8 level)
+{
+  std::stringstream retStream;
+
+  retStream << "\nOgg Packet: packet length = " << oggPacket.bytes << std::endl;
+
+  if (level < 1)
+    return(retStream.str());
+
+  retStream << "\nHeader Information:"
+            << "\n\tBegin of Stream     : ";
+
+  if (oggPacket.b_o_s)
+    retStream << "true";
+  else
+    retStream << "false";
+
+  retStream << "\n\tEnd of Stream       : ";
+
+  if (oggPacket.e_o_s)
+    retStream << "true";
+  else
+    retStream << "false";
+
+  retStream << "\n\tGranule Position    : " << oggPacket.granulepos;
+  retStream << "\n\tPacket Number       : " << oggPacket.packetno;
+
+  retStream << std::endl;
+
+  if (level < 3)
+    return(retStream.str());
+
+  retStream << "\n\tStream Number       : " << (int)streamNo;
+  retStream << "\n\tStream Type         : ";
+
+  switch (streamType) {
+  case OggType::vorbis:
+    retStream << "Vorbis";
+    break;
+  case OggType::theora:
+    retStream << "Theora";
+    break;
+  case OggType::kate:
+    retStream << "Kate";
+    break;
+  case OggType::unknown:
+  default:
+    retStream << "unknown";
+    break;
+  }
+  retStream << std::endl;
+
+  if (level < 4)
+    return(retStream.str());
+
+  retStream << "\nPacket Hex dump:" << std::hex;
+
+  for (int32 c(0); c<oggPacket.bytes; ++c) {
+    if ((c%16) == 0)
+      retStream << std::endl;
+    if (((unsigned) (oggPacket.packet[c])) < 16)
+      retStream << "0";
+    retStream << (unsigned) (oggPacket.packet[c]);
+  }
+
+  retStream << std::dec << std::endl;
+
+  return(retStream.str());
+}
diff --git a/src/base/oggPacket.cpp.orig b/src/base/oggPacket.cpp.orig
new file mode 100644
index 0000000..75f1f57
--- /dev/null
+++ b/src/base/oggPacket.cpp.orig
@@ -0,0 +1,281 @@
+/*
+ * OggPacket will carry all relevant information of an ogg packet
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <iostream>
+#include <sstream>
+#include <cstring>
+
+#include "oggPacket.h"
+#include "log.h"
+
+OggPacketInternal::OggPacketInternal()
+  : oggPacket {/*packet*/0,/*bytes*/0, /*b_o_s*/0, /*e_o_s*/0, /*granualpos*/-1, /*packetno*/0},
+streamType(OggType::unknown), streamNo(255), streamHeader(false)
+{
+}
+
+OggPacketInternal::OggPacketInternal(uint8* data, uint32 length,
+                                     uint32 packetNo, int64 granulePos, PacketType packetType)
+  : oggPacket {/*packet*/data,/*bytes*/length, /*b_o_s*/0, /*e_o_s*/0, /*granualpos*/granulePos, /*packetno*/packetNo},
+streamType(OggType::unknown), streamNo(255), streamHeader(false)
+{
+  switch (packetType) {
+  case PacketType::bos:
+    oggPacket.b_o_s = 256;
+    break;
+  case PacketType::eos:
+    oggPacket.e_o_s = 256;
+    break;
+  default:
+  {}
+  }
+
+}
+
+OggPacket OggPacketInternal::clone()
+{
+  /* a bit nasty, as ogg_packet is c */
+  uint8* data = new uint8[oggPacket.bytes];
+  memcpy(data, oggPacket.packet, oggPacket.bytes);
+
+  PacketType packetType(PacketType::normal);
+
+  if (oggPacket.b_o_s)
+    packetType = PacketType::bos;
+
+  if (oggPacket.e_o_s)
+    packetType = PacketType::eos;
+
+  OggPacket pkt = std::make_shared<OggPacketInternal>(data, oggPacket.bytes, oggPacket.packetno, oggPacket.granulepos, packetType);
+
+  pkt->streamNo = streamNo;
+  pkt->streamType = streamType;
+  pkt->streamHeader = streamHeader;
+
+  return pkt;
+}
+
+OggPacket OggPacketInternal::getPtr()
+{
+  return shared_from_this();
+}
+
+OggPacket OggPacketInternal::create(uint8 *data, uint32 length, uint32 packetNo, int64 granulePos, OggPacketInternal::PacketType packetType)
+{
+  return std::make_shared<OggPacketInternal>(data, length, packetNo, granulePos, packetType);
+
+}
+
+
+OggPacketInternal::~OggPacketInternal()
+{
+  delete[] oggPacket.packet;
+}
+
+
+int64 OggPacketInternal::granulepos()
+{
+  return oggPacket.granulepos;
+}
+
+void OggPacketInternal::setGranulepos(int64 pos)
+{
+  oggPacket.granulepos = pos;
+}
+
+void OggPacketInternal::setStreamHeader()
+{
+  streamHeader = true;
+}
+
+bool OggPacketInternal::isStreamHeader()
+{
+  return streamHeader;
+}
+
+uint32 OggPacketInternal::getPacketNo()
+{
+  return oggPacket.packetno;
+}
+
+uint32 OggPacketInternal::length()
+{
+  return oggPacket.bytes;
+}
+
+bool OggPacketInternal::isBOS()
+{
+  return oggPacket.b_o_s;
+}
+
+bool OggPacketInternal::isEOS()
+{
+  return oggPacket.e_o_s;
+}
+
+void OggPacketInternal::setBOS()
+{
+  oggPacket.b_o_s = 1;
+}
+
+void OggPacketInternal::setEOS()
+{
+  oggPacket.e_o_s = 1;
+}
+
+void OggPacketInternal::unsetBOS()
+{
+  oggPacket.b_o_s = 0;
+}
+
+void OggPacketInternal::unsetEOS()
+{
+  oggPacket.e_o_s = 0;
+}
+
+/*
+ogg_packet OggPacketInternal::toLibogg()
+{
+  return(*objPtr);
+}
+*/
+uint8 OggPacketInternal::getStreamNo()
+{
+  return streamNo;
+}
+
+OggType OggPacketInternal::getStreamType()
+{
+  return streamType;
+}
+
+void OggPacketInternal::setStreamNo(int8 no)
+{
+  streamNo = no;
+}
+
+void OggPacketInternal::setStreamType(OggType type)
+{
+  streamType = type;
+}
+
+/*
+void OggPacketInternal::fromLibogg(ogg_packet pack)
+{
+  // copy all information including the pointers
+  bytes      = pack.bytes;
+  packetno   = pack.packetno;
+  granulepos = pack.granulepos;
+  b_o_s      = pack.b_o_s;
+  e_o_s      = pack.e_o_s;
+
+  packet = new uint8[pack.bytes];
+
+  if (packet) {
+    memcpy(packet, pack.packet, pack.bytes);
+  }
+  else {
+    logger.error() << "OggPacketInternal::fromLibogg: out of memory\n";
+  }
+}
+*/
+
+uint8* OggPacketInternal::data()
+{
+  return oggPacket.packet;
+}
+
+/* print levels:
+ * 1) only data length information
+ * 2) header information
+ * 3) additional header information
+ * 4) header dump
+ * 5) body dump
+ */
+std::string OggPacketInternal::print(uint8 level)
+{
+  std::stringstream retStream;
+
+  retStream << "\nOgg Packet: packet length = " << oggPacket.bytes << std::endl;
+
+  if (level < 1)
+    return(retStream.str());
+
+  retStream << "\nHeader Information:"
+            << "\n\tBegin of Stream     : ";
+
+  if (oggPacket.b_o_s)
+    retStream << "true";
+  else
+    retStream << "false";
+
+  retStream << "\n\tEnd of Stream       : ";
+
+  if (oggPacket.e_o_s)
+    retStream << "true";
+  else
+    retStream << "false";
+
+  retStream << "\n\tGranule Position    : " << oggPacket.granulepos;
+  retStream << "\n\tPacket Number       : " << oggPacket.packetno;
+
+  retStream << std::endl;
+
+  if (level < 3)
+    return(retStream.str());
+
+  retStream << "\n\tStream Number       : " << (int)streamNo;
+  retStream << "\n\tStream Type         : ";
+
+  switch (streamType) {
+  case OggType::vorbis:
+    retStream << "Vorbis";
+    break;
+  case OggType::theora:
+    retStream << "Theora";
+    break;
+  case OggType::kate:
+    retStream << "Kate";
+    break;
+  case OggType::unknown:
+  default:
+    retStream << "unknown";
+    break;
+  }
+  retStream << std::endl;
+
+  if (level < 4)
+    return(retStream.str());
+
+  retStream << "\nPacket Hex dump:" << std::hex;
+
+  for (int32 c(0); c<oggPacket.bytes; ++c) {
+    if ((c%16) == 0)
+      retStream << std::endl;
+    if (((unsigned) (oggPacket.packet[c])) < 16)
+      retStream << "0";
+    retStream << (unsigned) (oggPacket.packet[c]);
+  }
+
+  retStream << std::dec << std::endl;
+
+  return(retStream.str());
+}
diff --git a/src/oggPacket.h b/src/base/oggPacket.h
similarity index 72%
rename from src/oggPacket.h
rename to src/base/oggPacket.h
index d062e12..def30c3 100644
--- a/src/oggPacket.h
+++ b/src/base/oggPacket.h
@@ -23,47 +23,50 @@
 #define OGGPACKET_H_
 
 #include <string>
+#include <memory>
+
 #ifdef HAVE_LIBOGG
 #include <ogg/ogg.h>
 #endif
 
 #include "definition.h"
-#include "refObject.h"
+//#include "refObject.h"
 #include "oggTypes.h"
 
-class OggPacketInternal : public ogg_packet {
+class OggPacketInternal;
+
+typedef std::shared_ptr<OggPacketInternal> OggPacket;
+
+class OggPacketInternal : public std::enable_shared_from_this<OggPacketInternal> {
 
 public:
 
-  enum PacketType {
+  enum class PacketType {
     normal,
     bos,
     eos
   };
 
+protected:
+  ogg_packet oggPacket;
+
   /* information about the stream type and the stream No */
   OggType streamType;
   uint8   streamNo;
   bool    streamHeader;
 
+public:
   OggPacketInternal();
   OggPacketInternal(uint8* data, uint32 length, uint32 packetNo,
-                    int64 granulePos=-1, PacketType packetType = normal);
-
-  virtual ~OggPacketInternal();
+                    int64 granulePos=-1, PacketType packetType = PacketType::normal);
 
-  OggPacketInternal* clone();
-};
+  ~OggPacketInternal();
 
-class OggPacket : public RefObject<OggPacketInternal> {
-
-public:
-  OggPacket();
-  OggPacket(const OggPacket& packet);
-  OggPacket(OggPacketInternal* internalPacket);
-  virtual ~OggPacket();
+  OggPacket clone();
+  OggPacket getPtr();
+  static OggPacket create(uint8* data, uint32 length, uint32 packetNo,
+                          int64 granulePos=-1, PacketType packetType = PacketType::normal);
 
-  OggPacket& operator=(const OggPacket& packet);
 
   int64   granulepos();
 
@@ -72,6 +75,11 @@ public:
   uint32  getPacketNo();
   uint8   getStreamNo();
   OggType getStreamType();
+  ogg_packet* getUnderlayingOggPacketPtr()
+  {
+    return &oggPacket;
+  }
+//  void    cleanPacketPtr() { oggPacket.packet = 0; /* no delete */ }
 
   void    setStreamType(OggType type);
   void    setStreamNo(int8 streamNo);
@@ -86,11 +94,14 @@ public:
   void    setEOS();
   void    unsetEOS();
 
+  void    setPacketno(int64_t no)
+  {
+    oggPacket.packetno = no;
+  }
+
   uint32 length();
   uint8* data();
 
-  OggPacket clone();
-
   /*
     ogg_packet toLibogg();
     void fromLibogg(ogg_packet packet);
diff --git a/src/base/oggPage.cpp b/src/base/oggPage.cpp
new file mode 100644
index 0000000..d28ce59
--- /dev/null
+++ b/src/base/oggPage.cpp
@@ -0,0 +1,280 @@
+/*
+ * OggPage will carry all relevant information of an ogg page
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <sstream>
+#include <cstring>
+
+#include "oggPage.h"
+#include "oggHeader.h"
+#include "crc.h"
+
+/* OggPageInternal */
+
+OggPageInternal::OggPageInternal()
+  : dataPtr(0), headerLength(0), bodyLength(0), streamNo(255), empty(true)
+{
+}
+
+OggPageInternal::OggPageInternal(std::vector<uint8_t>& _dataPtr, uint32 _headerLength, uint32 _bodyLength)
+  : headerLength(_headerLength), bodyLength(_bodyLength),  streamNo(255), empty(false)
+{
+  dataPtr = std::move(_dataPtr);
+}
+
+OggPageInternal::~OggPageInternal()
+{
+
+}
+
+bool OggPageInternal::isContinued()
+{
+  return(((OggHeader*)(&dataPtr[0]))->pack_type);
+}
+
+void OggPageInternal::setContinued()
+{
+  ((OggHeader*)(&dataPtr[0]))->pack_type = 1;
+}
+
+bool OggPageInternal::isBOS()
+{
+  return(((OggHeader*)(&dataPtr[0]))->page_type);
+}
+
+bool OggPageInternal::isEOS()
+{
+  return(((OggHeader*)(&dataPtr[0]))->last);
+}
+
+void OggPageInternal::setBOS()
+{
+  ((OggHeader*)(&dataPtr[0]))->page_type = 1;
+}
+
+void OggPageInternal::unsetBOS()
+{
+  ((OggHeader*)(&dataPtr[0]))->page_type = 0;
+}
+
+void OggPageInternal::setEOS()
+{
+  ((OggHeader*)(&dataPtr[0]))->last = 1;
+}
+
+void OggPageInternal::unsetEOS()
+{
+  ((OggHeader*)(&dataPtr[0]))->last = 0;
+}
+
+void OggPageInternal::setStreamNo(uint8 streamNo)
+{
+  streamNo = streamNo;
+}
+
+uint8 OggPageInternal::getStreamNo()
+{
+  return(streamNo);
+}
+
+uint32 OggPageInternal::version()
+{
+  return(((OggHeader*)(&dataPtr[0]))->version);
+}
+
+uint32 OggPageInternal::packets()
+{
+  uint32 segments(((OggHeader*)(&dataPtr[0]))->tableSegments);
+  uint32 packets(0);
+  uint8* oggPtr=&dataPtr[0]+sizeof(OggHeader);
+
+  for (uint32 i(0); i<segments; ++i)
+    if (oggPtr[i]<0xff)packets++;
+
+  return(packets);
+
+}
+
+int64 OggPageInternal::granulepos()
+{
+  return(((OggHeader*)(&dataPtr[0]))->position);
+}
+
+uint32 OggPageInternal::serialno()
+{
+  return(((OggHeader*)(&dataPtr[0]))->serial);
+}
+
+uint32 OggPageInternal::pageno()
+{
+  return(((OggHeader*)(&dataPtr[0]))->pageNo);
+}
+
+uint32 OggPageInternal::length()
+{
+  return(headerLength + bodyLength);
+}
+
+std::vector<uint8_t>& OggPageInternal::data()
+{
+  return(dataPtr);
+}
+
+bool OggPageInternal::isEmpty()
+{
+  return(empty);
+}
+
+void OggPageInternal::createCRC()
+{
+  OggHeader* hdr = (OggHeader*)(&dataPtr[0]);
+  hdr->checksum  = 0;
+  hdr->checksum  = Crc::create(&dataPtr[0], length());
+}
+
+OggPage OggPageInternal::clone()
+{
+  OggPage page;
+
+  if (!dataPtr.empty()) {
+
+    std::vector<uint8_t> newDataPtr = dataPtr;
+
+    page = std::make_shared<OggPageInternal>(newDataPtr, headerLength, bodyLength);
+
+  }
+
+  return page;
+}
+
+OggPage OggPageInternal::create(std::vector<uint8_t>& data, uint32_t headerLength, uint32_t bodyLength)
+{
+  OggPage page;
+
+  if (length() > 0) {
+    page = std::make_shared<OggPageInternal>(data, headerLength, bodyLength);
+  }
+
+  return page;
+}
+
+OggPage OggPageInternal::getPtr()
+{
+  return shared_from_this();
+}
+
+/* print levels:
+ * 0) only data length information
+ * 1) header information
+ * 2) additional header information
+ * 3) header dump
+ * 4) body dump
+ */
+std::string OggPageInternal::print(uint8 level)
+{
+  std::stringstream retStream;
+
+  retStream << "Ogg Page: header length = " << std::dec << headerLength
+            << " and body length = " << std::dec << bodyLength
+            << std::endl;
+
+  if (level < 1)
+    return(retStream.str());
+
+  OggHeader* header = (OggHeader*)(&dataPtr[0]);
+  retStream << "Header Information:"
+            << "\n\tOgg Version      : " << (uint32)header->version
+            << "\n\tSerial No        : 0x" << std::hex << header->serial << std::dec
+            << "\n\tPacket Type      : ";
+
+  if (header->pack_type)
+    retStream << "continued packet";
+  else
+    retStream << "fresh packet";
+
+  retStream << "\n\tPage Type        : ";
+
+  if (header->page_type)
+    retStream << "begin of stream marker";
+  else
+    retStream << "normal page";
+
+  retStream << "\n\tLast Page        : ";
+
+  if (header->last)
+    retStream << "end of stream marker";
+  else
+    retStream << "normal page";
+
+  retStream << "\n\tGranule Position : " << header->position << "(0x" << std::hex << header->position << std::dec << ")";
+  retStream << "\n\tPage Number      : " << header->pageNo;
+  retStream << "\n\tChecksum         : 0x" << std::hex << header->checksum << std::dec;
+  retStream << "\n\tTable Segments   : " << (uint32) header->tableSegments;
+  retStream << std::endl << std::endl;
+
+  if (level < 2)
+    return(retStream.str());
+
+  retStream << "Segments:";
+
+  for (uint32 c(0); c<header->tableSegments; ++c) {
+    if ((c%16) == 0)
+      retStream << std::endl;
+    retStream << " "<< std::hex;
+    if (((unsigned int) (dataPtr[c+sizeof(OggHeader)])) < 16)
+      retStream << "0";
+    retStream << (unsigned int) (dataPtr[c+sizeof(OggHeader)]);
+  }
+
+  retStream << std::endl << std::endl;
+
+  if (level < 3)
+    return(retStream.str());
+
+  retStream << "Header Hex dump: ";
+  for (uint32 c(0); c<headerLength; ++c) {
+    if ((c%16) == 0)
+      retStream << std::endl;
+    retStream << " " << std::hex;
+    if (((unsigned int) (dataPtr[c])) < 16)
+      retStream << "0";
+    retStream << (unsigned int) (dataPtr[c]);
+  }
+  retStream << std::dec << std::endl << std::endl;
+
+  if (level < 4)
+    return(retStream.str());
+
+  retStream << "Body Hex dump: ";
+
+  for (uint32 c(0); c<bodyLength; ++c) {
+    if ((c%16) == 0)
+      retStream << std::endl;
+    retStream << " " << std::hex;
+    if (((unsigned int) (dataPtr[c+headerLength])) < 16)
+      retStream << "0";
+    retStream << (unsigned int) (dataPtr[c+headerLength]);
+  }
+
+  retStream << std::dec << std::endl;
+
+  return(retStream.str());
+}
+
diff --git a/src/oggPage.h b/src/base/oggPage.h
similarity index 73%
rename from src/oggPage.h
rename to src/base/oggPage.h
index 4a137dc..59d0af0 100644
--- a/src/oggPage.h
+++ b/src/base/oggPage.h
@@ -23,27 +23,23 @@
 #define OGGPAGE_H_
 
 #include <string>
-/*
-#ifdef HAVE_LIBOGG
-#include <ogg/ogg.h>
-#endif
-*/
-
-#include "refObject.h"
+#include <memory>
+#include <vector>
+#include <cstdint>
 #include "definition.h"
 
 /// class to store one ogg page
 /** this class is easy to handle, as it only carries the
  *  data area that starts with "OggS".
- *  The toLibogg() method should be called only if an
- *  ogg_page is needed. It will NOT provide a deep copy
- *  so that the data will be lost, when the object is
- *  deleted. */
-class OggPageInternal {
+ **/
+class OggPageInternal;
+typedef std::shared_ptr<OggPageInternal> OggPage;
 
-public:
+class OggPageInternal : public std::enable_shared_from_this<OggPageInternal> {
+
+protected:
   //! pointer to the packet data
-  uint8* data;
+  std::vector<uint8_t> dataPtr;
 
   //! header length
   uint32 headerLength;
@@ -57,25 +53,12 @@ public:
   //! internal information: unused page
   bool  empty;
 
-  OggPageInternal();
-  OggPageInternal(uint8* data, uint32 headerLength, uint32 bodyLength);
-  virtual ~OggPageInternal();
-
-  /* actually we will not create an interface to the original ogg lib
-  ogg_page toLibogg();
-  void fromLibogg(ogg_page page);
-  */
-};
-
-class OggPage : public RefObject<OggPageInternal> {
-
 public:
-  OggPage();
-  OggPage(const OggPage& page);
-  OggPage(OggPageInternal* pagePtr);
-  virtual ~OggPage();
 
-  OggPage& operator=(const OggPage& page);
+  OggPageInternal();
+  OggPageInternal(std::vector<uint8_t>& data, uint32 headerLength, uint32 bodyLength);
+  ~OggPageInternal();
+
 
   //! Is this page continued ?
   bool     isContinued();
@@ -111,11 +94,20 @@ public:
   void     setStreamNo(uint8 streamNo);
 
   uint32   length();
-  uint8*   data();
+  std::vector<uint8_t>&   data();
+  uint32   getHeaderLength()
+  {
+    return headerLength;
+  }
 
   OggPage  clone();
+  OggPage  create(std::vector<uint8_t>& data, uint32_t headerLength, uint32_t bodyLength);
+  OggPage  getPtr();
 
   std::string print(uint8 level);
+
 };
 
+
+
 #endif /*OGGPAGE_H_*/
diff --git a/src/oggRingbuffer.cpp b/src/base/oggRingbuffer.cpp
similarity index 53%
rename from src/oggRingbuffer.cpp
rename to src/base/oggRingbuffer.cpp
index 6dba8ee..8730aea 100644
--- a/src/oggRingbuffer.cpp
+++ b/src/base/oggRingbuffer.cpp
@@ -31,34 +31,37 @@
 #include "oggRingbuffer.h"
 #include "oggHeader.h"
 #include "exception.h"
+#include "oggPage.h"
 #include "log.h"
 
-OggRingbuffer::OggRingbuffer(unsigned int buffersize)
-    :ringbuffer(buffersize)
+OggRingbuffer::OggRingbuffer(uint32_t buffersize)
+  :ringbuffer(buffersize)
 {
 }
 
-OggRingbuffer::OggRingbuffer(unsigned char* data, unsigned int len)
-    :ringbuffer(data, len)
-{
-}
+//OggRingbuffer::OggRingbuffer(uint8_t* data, uint32_t len)
+//    :ringbuffer(data, len)
+//{
+//}
 
 
 OggRingbuffer::~OggRingbuffer()
 {
 }
 
-bool OggRingbuffer::getNextPageLength(unsigned int& length, int pageNum)
+bool OggRingbuffer::getNextPageLength(uint32_t& length, int pageNum)
 {
   lock();
 
   int tmpend  = end;
-  int tmpend2 = end;
   int tmpused = used;
   length = 0;
 
   for (; pageNum; pageNum--) {
-    tmpend = tmpend2;
+
+    logger.debug() << "get new page no " << pageNum << " available data is "<< tmpused << std::endl;
+    uint32_t tmplen = 0;
+
     if (tmpused < (int) sizeof(OggHeader)) {
       unlock();
       return(false);
@@ -66,45 +69,57 @@ bool OggRingbuffer::getNextPageLength(unsigned int& length, int pageNum)
 
     // test is this aligned?
     char starter[5];
-    for (unsigned int i=0; i<5; ++i) {
-      starter[i] = fifo[tmpend];
-      tmpend+=1;
-      tmpend%=size;
+    for (uint32_t i=0; i<5; ++i) {
+      starter[i] = fifo[(tmpend+i)%size];
+      logger.debug() << "data " << std::hex << "0x" << (int)starter[i] << " ("<<std::dec <<starter[i]<<")\n";
     }
+    tmpend+=5;
+    tmpend%=size;
 
     if (strncmp(starter, "OggS", 4) != 0) {
       unlock();
+      logger.debug() << "Error: ogg string is " << std::hex << "0x" << (int)starter[0]
+                     << " 0x" << (int)starter[1] << " 0x" << (int)starter[2]
+                     << " 0x" << (int)starter[3] << " 0x" << (int)starter[4] << std::endl;
+      dump();
       throw OggException("OggRingbuffer::getNextPageLength: ERROR ogg packet not aligned");
     }
 
+    if ('\0' != starter[4]) {
+      unlock();
+      throw OggException("OggRingbuffer::getNextPageLength: ERROR unsupported stream structure version");
+    }
+
     tmpend += sizeof(OggHeader)-6; // jump to the segment table
     tmpend %= size;
 
-    unsigned int readsegments = fifo[tmpend];
+    uint32_t readsegments = fifo[tmpend];
 
     tmpend += 1;
     tmpend %= size;
 
-    length += sizeof(OggHeader) + readsegments;
+    tmplen += sizeof(OggHeader) + readsegments;
 
     if (tmpused < (int)(sizeof(OggHeader)+readsegments)) {
       unlock();
       return(false);
     }
 
-    for (unsigned int i=0; i<readsegments; ++i) {
-      length += fifo[tmpend];
+    for (uint32_t i=0; i<readsegments; ++i) {
+      tmplen += fifo[tmpend];
       tmpend += 1;
       tmpend %= size;
     }
 
-    if (tmpused < (int)length) {
+    if (tmpused < (int)tmplen) {
       unlock();
       return(false);
     }
-    tmpused -= length;
-    tmpend2 = end + length;
-    tmpend2 %= size;
+
+    length += tmplen;
+    tmpused -= tmplen;
+    tmpend = end + length;
+    tmpend %= size;
 
   }
   unlock();
@@ -112,7 +127,25 @@ bool OggRingbuffer::getNextPageLength(unsigned int& length, int pageNum)
 
 }
 
-bool OggRingbuffer::getNextPages(unsigned char*& data, unsigned int& length, unsigned int size)
+//bool OggRingbuffer::getNextPages(uint8_t*& data, uint32_t& length, uint32_t size)
+//{
+//  if (!used)
+//    return(false);
+
+//  if (!getNextPageLength(length,size))
+//    return(false);
+
+//  if (!data)
+//    data = new uint8_t[length];
+
+//  if (length != getData(data, length))
+//    return(false);
+
+
+//  return(true);
+//}
+
+bool OggRingbuffer::getNextPages(std::vector<uint8_t>& data, uint32_t& length, uint32_t size)
 {
   if (!used)
     return(false);
@@ -120,9 +153,6 @@ bool OggRingbuffer::getNextPages(unsigned char*& data, unsigned int& length, uns
   if (!getNextPageLength(length,size))
     return(false);
 
-  if (!data)
-    data = new unsigned char[length];
-
   if (length != getData(data, length))
     return(false);
 
@@ -130,7 +160,14 @@ bool OggRingbuffer::getNextPages(unsigned char*& data, unsigned int& length, uns
   return(true);
 }
 
-bool OggRingbuffer::getNextPage(unsigned char*& data, unsigned int& length)
+
+
+//bool OggRingbuffer::getNextPage(uint8_t*& data, uint32_t& length)
+//{
+//  return(getNextPages(data, length, 1));
+//}
+
+bool OggRingbuffer::getNextPage(std::vector<uint8_t>& data, uint32_t& length)
 {
   return(getNextPages(data, length, 1));
 }
@@ -142,9 +179,9 @@ void OggRingbuffer::dump()
     if ((c%16) == 0)
       std::cerr << std::endl;
     std::cerr << " " << std::hex;
-    if (fifo[(c+begin)%size] < 16)
+    if (fifo[(c+end)%size] < 16)
       std::cerr << "0";
-    std::cerr << (unsigned int)fifo[(c+begin)%size];
+    std::cerr << (uint32_t)fifo[(c+end)%size];
   }
 
   std::cerr << std::dec << std::endl;
diff --git a/src/oggRingbuffer.h b/src/base/oggRingbuffer.h
similarity index 70%
rename from src/oggRingbuffer.h
rename to src/base/oggRingbuffer.h
index 99097d5..b0bd261 100644
--- a/src/oggRingbuffer.h
+++ b/src/base/oggRingbuffer.h
@@ -34,14 +34,16 @@ protected:
   void dump();
 
 public:
-  OggRingbuffer(unsigned int buffersize = 64000);
-  OggRingbuffer(unsigned char* data, unsigned int len);
-  virtual ~OggRingbuffer();
+  OggRingbuffer(uint32_t buffersize = 64000);
+  OggRingbuffer(uint8_t* data, uint32_t len);
+  ~OggRingbuffer();
 
-  bool getNextPageLength(unsigned int& length, int pageNum=1);
-  bool getNextPage(unsigned char*& data, unsigned int& length);
-  bool getNextPages(unsigned char*& data, unsigned int& length, unsigned int pageNum);
+  bool getNextPageLength(uint32_t& length, int pageNum=1);
+  bool getNextPage(uint8_t*& data, uint32_t& length);
+  bool getNextPages(uint8_t*& data, uint32_t& length, uint32_t pageNum);
 
+  bool getNextPages(std::vector<uint8_t> &data, uint32_t &length, uint32_t size);
+  bool getNextPage(std::vector<uint8_t> &data, uint32_t &length);
 };
 
 
diff --git a/src/oggStreamDecoder.cpp b/src/base/oggStreamDecoder.cpp
similarity index 92%
rename from src/oggStreamDecoder.cpp
rename to src/base/oggStreamDecoder.cpp
index 7af81f9..5ac3962 100644
--- a/src/oggStreamDecoder.cpp
+++ b/src/base/oggStreamDecoder.cpp
@@ -31,7 +31,7 @@
 #include "log.h"
 
 OggStreamDecoder::SegmentElement::SegmentElement(uint8* _data, uint32 length) :
-    data(_data), length(length)
+  data(_data), length(length)
 {
 }
 
@@ -48,7 +48,7 @@ void OggStreamDecoder::init(OggPage page)
 {
 
   /* if this is not a Begin Of Stream page, do nothing */
-  if (!page.isBOS()) {
+  if (!page->isBOS()) {
     logger.error() << "OggStreamDecoder: ogg page is not a begin of stream\n";
     return;
   }
@@ -56,7 +56,7 @@ void OggStreamDecoder::init(OggPage page)
   packetCount = 0;
 
   /* extract and remember the serial number of this stream */
-  serialNo = page.serialno();
+  serialNo = page->serialno();
   setConfigured();
 
 }
@@ -84,12 +84,12 @@ OggStreamDecoder& OggStreamDecoder::operator<<(OggPage& page)
     throw OggException("OggStreamDecoder::operator<<: This stream is not is not configured yet");
   }
 
-  if (page.serialno() != serialNo) {
+  if (page->serialno() != serialNo) {
     throw OggException("OggStreamDecoder::operator<<: page does not belong to this stream");
   }
 
   /* extract the header */
-  uint8* data(page.data());
+  uint8* data(&(page->data())[0]);
   OggHeader* header = (OggHeader*)(data);
   data += sizeof(OggHeader);
 
@@ -159,14 +159,14 @@ OggStreamDecoder& OggStreamDecoder::operator<<(OggPage& page)
       tmpSegment = SegmentElement(newPacketPtr, overallLength);
     } else {
       // we found a full packet
-      OggPacketInternal::PacketType packetType(OggPacketInternal::normal);
+      OggPacketInternal::PacketType packetType(OggPacketInternal::PacketType::normal);
       int64 granulePosition(-1);
 
-      if ((i == 0) && (page.isBOS()))
-        packetType = OggPacketInternal::bos;
+      if ((i == 0) && (page->isBOS()))
+        packetType = OggPacketInternal::PacketType::bos;
 
-      if ((i == segmentDataList.size()-1) && (page.isEOS()))
-        packetType = OggPacketInternal::eos;
+      if ((i == segmentDataList.size()-1) && (page->isEOS()))
+        packetType = OggPacketInternal::PacketType::eos;
 
       if (i == infoPosition)
         granulePosition = header->position;
@@ -209,7 +209,7 @@ OggStreamDecoder& OggStreamDecoder::operator>>(OggPacket& packet)
 
   /* is this the last packet within this stream,
    * then set the stream status */
-  if (packet.isEOS()) {
+  if (packet->isEOS()) {
     setEndOfStream();
   } else {
     if (oggPacketList.empty()) {
diff --git a/src/oggStreamDecoder.h b/src/base/oggStreamDecoder.h
similarity index 100%
rename from src/oggStreamDecoder.h
rename to src/base/oggStreamDecoder.h
diff --git a/src/oggStreamEncoder.cpp b/src/base/oggStreamEncoder.cpp
similarity index 83%
rename from src/oggStreamEncoder.cpp
rename to src/base/oggStreamEncoder.cpp
index 29d432a..07c36de 100644
--- a/src/oggStreamEncoder.cpp
+++ b/src/base/oggStreamEncoder.cpp
@@ -36,9 +36,9 @@
 std::vector<uint32> OggStreamEncoder::usedSerialNo;
 
 OggStreamEncoder::OggStreamEncoder(uint32 serial)
-    : maxPageSize(4096), streamNo(0), dataLength(0), dataSegments(0), usedData(0), pageCounter(0)
+  : maxPageSize(4096), streamNo(0), dataLength(0), dataSegments(0), usedData(0), pageCounter(0)
 //   packetCounter(0), positionInterpreterEnabled(false), pageKeepEnabled(false),
-    //posInterpreter(0)
+  //posInterpreter(0)
 {
   uint32 newSerial = findUniqueSerial(serial);
   streamSerialNo = newSerial;
@@ -98,16 +98,17 @@ void OggStreamEncoder::addPacket(OggPacket& packet)
    * Let's start to calculate the actual length */
   oggPacketList.push_back(packet);
 
-  dataLength             += packet.length();
-  uint32 actSegmentsSize  = (packet.length()+255)/255;
-  uint8  actSegments[maxSegmentEntries];
+  dataLength             += packet->length();
+  uint32 actSegmentsSize  = (packet->length()+255)/255;
+  std::vector<uint8_t> actSegments(actSegmentsSize/*maxSegmentEntries*/, 0xff);
+  //uint8  actSegments[maxSegmentEntries];
 
   if (actSegmentsSize > maxSegmentEntries)
     throw OggException("OggStreamEncoder::addPacket: Not able to handle this packet size");
 
   /* calculate the segment table part of this packet */
-  memset(actSegments, 0xff, actSegmentsSize-1);
-  actSegments[actSegmentsSize-1] = packet.length()%255;
+//  memset(actSegments, 0xff, actSegmentsSize-1);
+  actSegments[actSegmentsSize-1] = packet->length()%255;
 
   segmentsBuffer.addData(actSegments, actSegmentsSize);
 
@@ -126,22 +127,28 @@ bool OggStreamEncoder::getNextPacketLength(uint32 pageBorder, uint32& length,
   }
 
   /* get the actually available segments (maximum 255) */
-  uint8 actSegments[255];
+//  uint8 actSegments[255];
+  std::vector<uint8_t> actSegments(255);
   uint32 actSegmentsSize = segmentsBuffer.peekFront(actSegments,255);
 
   /* and calculate, how many segments we want to include into the
    * actual page */
-  for (uint32 count(0); count<actSegmentsSize; ++count) {
-    length  += actSegments[count];
+  bool end_found(false);
+  for (auto& actSegment : actSegments ) { //uint32 count(0); count<actSegmentsSize; ++count) {
+
     segments++;
+    if (end_found) {
+      if (actSegment == 0)
+        continue;
+      else
+        break;
+    }
+
+    length  += actSegment;// actSegments[count];
+
     if ((length >= pageBorder) || (segments >= 255)) {
       // this is a "sonderlocke" for zero size segments
-      count++;
-      while ((count < actSegmentsSize) && (actSegments[count] == 0)) {
-        segments++;
-        count++;
-      }
-      return(true);
+      end_found = true;
     }
   }
 
@@ -158,12 +165,12 @@ OggStreamEncoder& OggStreamEncoder::operator<<(OggPacket packet)
   if (!isConfigured()) {
 
     // this must be the bos packet
-    if (!packet.isBOS()) {
+    if (!packet->isBOS()) {
       logger.error() << "OggStreamEncoder::operator<<: First packet must be a BOS packet\n";
       return(*this);
     } else {
       // The first BOS packet defines the stream number
-      streamNo = packet.getStreamNo();
+      streamNo = packet->getStreamNo();
     }
     /* add the packet to the temporal buffer */
     addPacket(packet);
@@ -198,7 +205,7 @@ OggStreamEncoder& OggStreamEncoder::operator>>(OggPage& page)
   page = oggPageList.front();
   oggPageList.pop_front();
 
-  page.obj()->streamNo = streamNo;
+  page->setStreamNo(streamNo);
 
   if (oggPageList.empty())
     setEmpty();
@@ -226,15 +233,17 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
   }
 
   uint32 overallLength = sizeof(OggHeader) + segmentsSize + bodyLength;
-  uint8* pageData = new uint8[overallLength];
+  std::vector<uint8_t> pageData(overallLength);
+  //uint8* pageData = new uint8[overallLength];
 
   /* an ogg page looks like this:
    * --------------------------------------------------------
    * | Ogg Header | Segments Table | Packet1 | Packet2 | ...
    * --------------------------------------------------------
    */
-  OggHeader* header   ((OggHeader*)pageData);
-  uint8*     segments (pageData+sizeof(OggHeader));
+  uint8_t* pageBeginPtr = &pageData[0];
+  OggHeader* header   ((OggHeader*)pageBeginPtr);
+  uint8*     segments (pageBeginPtr+sizeof(OggHeader));
   uint8*     body     (segments+segmentsSize);
 
   /* set the header information */
@@ -259,16 +268,18 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
   std::list<OggPacket>::iterator it(oggPacketList.begin());
 
   /* if this is a bos packet, this would surely be the first packet */
-  if (it->isBOS())
+  if ((*it)->isBOS())
     header->page_type = 1;
 
   uint32 arrayIndex(0);
 
   for (; it != oggPacketList.end(); it++) {
 
-    uint32 cpyLength = min((it->length()-usedData),(bodyLength-arrayIndex));
+    OggPacket pkt(*it);
+    uint32 packetLength = pkt->length();
+    uint32 cpyLength = min((packetLength-usedData),(bodyLength-arrayIndex));
 
-    memcpy(body+arrayIndex, it->data()+usedData, cpyLength);
+    memcpy(body+arrayIndex, pkt->data()+usedData, cpyLength);
     arrayIndex += cpyLength;
 
     /* is this the end of the actual page */
@@ -278,9 +289,9 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
        * on this page? */
       if (usedData != 0) {
         usedData += cpyLength;
-        if (usedData == it->length()) {
+        if (usedData == packetLength) {
           usedData = 0;
-          if (it->isEOS())
+          if (pkt->isEOS())
             header->last = 1;
 
           /* the packet is fully used, so point to the next valid packet */
@@ -290,7 +301,7 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
 
       } else {
 
-        if (cpyLength == it->length()) {
+        if (cpyLength == packetLength) {
 
           /* this packet ended on this page */
           usedData = 0;
@@ -299,7 +310,7 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
 //          onePacketCompleted = true;
 
           /* Is it the end of a stream? Then mark it as such */
-          if (it->isEOS())
+          if (pkt->isEOS())
             header->last = 1;
 
           /* the packet is fully used, so point to the next valid packet */
@@ -312,7 +323,7 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
       }
 
       // we found the end of the page
-      if (usedData)
+      if (usedData || it == oggPacketList.end())
         break;
     }
 
@@ -336,11 +347,11 @@ void OggStreamEncoder::createPage(uint32 minPageSize)
   if (oggPacketList.begin() != it) {
     std::list<OggPacket>::iterator it1 = it;
     it1--;
-    header->position = it1->granulepos();
+    header->position = (*it1)->granulepos();
     oggPacketList.erase(oggPacketList.begin(), it);
   }
 
-  header->checksum = Crc::create(pageData, overallLength);
+  header->checksum = Crc::create(pageBeginPtr, overallLength);
 
   OggPage page(new OggPageInternal(pageData, sizeof(OggHeader)+segmentsSize, bodyLength));
   oggPageList.push_back(page);
diff --git a/src/oggStreamEncoder.h b/src/base/oggStreamEncoder.h
similarity index 100%
rename from src/oggStreamEncoder.h
rename to src/base/oggStreamEncoder.h
diff --git a/src/oggTypes.h b/src/base/oggTypes.h
similarity index 64%
rename from src/oggTypes.h
rename to src/base/oggTypes.h
index 679b66c..4f01229 100644
--- a/src/oggTypes.h
+++ b/src/base/oggTypes.h
@@ -23,17 +23,33 @@
 #ifndef OGGTYPES_H_
 #define OGGTYPES_H_
 
+#include <cstdint>
+#include <type_traits>
+
+#if __GNUC__ > 4 || \
+              (__GNUC__ == 4 && (__GNUC_MINOR__ > 9 || \
+                                 (__GNUC_MINOR__ == 9 && \
+                                  __GNUC_PATCHLEVEL__ > 2)))
+
+template<typename E>
+constexpr auto to_integral(E e) -> typename std::underlying_type<E>::type {
+  return static_cast<typename std::underlying_type<E>::type>(e);
+}
+#else
+#define to_integral(a) (int)(a)
+#endif
+
 #define MAXIDCHARS 7
 
-enum OggType {
-  ogg_unknown,
-  ogg_vorbis,
-  ogg_theora,
-  ogg_kate,
-  ogg_maxOggType
+enum class OggType {
+  unknown,
+  vorbis,
+  theora,
+  kate,
+  maxOggType
 };
 
-static const char OggTypeMap[ogg_maxOggType][MAXIDCHARS] = {
+static const uint8_t OggTypeMap[to_integral(OggType::maxOggType)][MAXIDCHARS] = {
   { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 },
   { 0x01, 'v', 'o', 'r', 'b', 'i', 's' },
   { 0x80, 't', 'h', 'e', 'o', 'r', 'a' },
diff --git a/src/base/rawMediaPacket.cpp b/src/base/rawMediaPacket.cpp
new file mode 100644
index 0000000..6e0c726
--- /dev/null
+++ b/src/base/rawMediaPacket.cpp
@@ -0,0 +1,93 @@
+/*
+ * RawMediaPacket class to carry a raw bunch of data
+ *
+ * Copyright (C) 2005-2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <string.h>
+#include "rawMediaPacket.h"
+
+RawMediaPacketInternal::RawMediaPacketInternal()
+{
+}
+
+RawMediaPacketInternal::RawMediaPacketInternal(std::vector<uint8_t>& _data, bool copy)
+{
+  setData(_data, copy);
+}
+
+RawMediaPacketInternal::~RawMediaPacketInternal()
+{
+}
+
+const std::vector<uint8_t> &RawMediaPacketInternal::getData()
+{
+  return data;
+}
+
+void RawMediaPacketInternal::setData(std::vector<uint8_t>& _data, bool copy)
+{
+//    data = _data;
+
+  if (copy) {
+    data = _data;
+  } else {
+    data = std::move(_data);
+  }
+}
+
+uint32 RawMediaPacketInternal::getSize()
+{
+  return(data.size());
+}
+
+/*********************************/
+
+//RawMediaPacket::RawMediaPacket()
+//{
+//}
+
+//RawMediaPacket::RawMediaPacket(const RawMediaPacket& packet)
+//    : RefObject<RawMediaPacketInternal>(packet)
+//{
+//}
+
+//RawMediaPacket::RawMediaPacket(RawMediaPacketInternal* dataPtr)
+//    : RefObject<RawMediaPacketInternal>(dataPtr)
+//{
+//}
+
+//RawMediaPacket::~RawMediaPacket()
+//{
+//}
+
+//uint8* RawMediaPacket::getData(uint32& length)
+//{
+//  return(objPtr->getData(length));
+//}
+
+//uint8* RawMediaPacket::getData()
+//{
+//  return(objPtr->getData());
+//}
+
+//uint32 RawMediaPacket::size()
+//{
+//  return(objPtr->size());
+//}
+
diff --git a/src/rawMediaPacket.h b/src/base/rawMediaPacket.h
similarity index 61%
rename from src/rawMediaPacket.h
rename to src/base/rawMediaPacket.h
index 1e20282..875536e 100644
--- a/src/rawMediaPacket.h
+++ b/src/base/rawMediaPacket.h
@@ -22,41 +22,29 @@
 #ifndef RAWMEDIAPACKET_H_
 #define RAWMEDIAPACKET_H_
 
+#include <memory>
+#include <vector>
+#include <cstdint>
+
 #include "definition.h"
-#include "refObject.h"
+//#include "refObject.h"
 
-class RawMediaData {
+class RawMediaPacketInternal {
 
 protected:
-  uint8* data;
-  uint32 length;
+  std::vector<uint8_t> data;
 
 public:
-  RawMediaData();
-  RawMediaData(uint8* data, uint32 length, bool copy);
-  virtual ~RawMediaData();
+  RawMediaPacketInternal();
+  RawMediaPacketInternal(std::vector<uint8_t>& _data, bool copy);
+  ~RawMediaPacketInternal();
 
-  void   setData(uint8* data, uint32 length, bool copy);
-  uint8* getData(uint32& length);
-  uint8* getData();
-  uint32 size();
+  void   setData(std::vector<uint8_t>& _data, bool copy);
+  const std::vector<uint8_t>& getData();
+  uint32 getSize();
 
 };
 
-class RawMediaPacket : public RefObject<RawMediaData> {
-
-public:
-
-  RawMediaPacket();
-  RawMediaPacket(const RawMediaPacket& data);
-  RawMediaPacket(RawMediaData* data);
-
-  virtual ~RawMediaPacket();
-
-  uint8* getData(uint32& length);
-  uint8* getData();
-  uint32 size();
-
-};
+typedef std::shared_ptr<RawMediaPacketInternal> RawMediaPacket;
 
 #endif /*RAWMEDIAPACKET_H_*/
diff --git a/src/refObject.h b/src/base/refObject.h
similarity index 90%
rename from src/refObject.h
rename to src/base/refObject.h
index 34455ee..b7a0645 100644
--- a/src/refObject.h
+++ b/src/base/refObject.h
@@ -61,19 +61,19 @@ public:
 /* Implementation Part */
 
 template<class C> inline RefObject<C>::RefObject()
-    : refCounter(new unsigned int), objPtr(new C)
+  : refCounter(new unsigned int), objPtr(new C)
 {
   (*refCounter) = 1;
 }
 
 template<class C> inline RefObject<C>::RefObject(C* objPtr)
-    : refCounter(new unsigned int), objPtr(objPtr)
+  : refCounter(new unsigned int), objPtr(objPtr)
 {
   (*refCounter) = 1;
 }
 
 template<class C> inline RefObject<C>::RefObject(const RefObject& refObj)
-    : refCounter(refObj.refCounter), objPtr(refObj.objPtr)
+  : refCounter(refObj.refCounter), objPtr(refObj.objPtr)
 {
   if (this == &refObj)
     return;
diff --git a/src/streamConfig.h b/src/base/streamConfig.h
similarity index 100%
rename from src/streamConfig.h
rename to src/base/streamConfig.h
diff --git a/src/streamExtractor.cpp b/src/base/streamExtractor.cpp
similarity index 86%
rename from src/streamExtractor.cpp
rename to src/base/streamExtractor.cpp
index 16a5dd5..1604510 100644
--- a/src/streamExtractor.cpp
+++ b/src/base/streamExtractor.cpp
@@ -1,12 +1,12 @@
 #include "streamExtractor.h"
 
 ExtractorInformation::ExtractorInformation()
-    : type(ogg_unknown), serialNo(0), parameter(0), numOfHeaderPackets(0)
+  : type(OggType::unknown), serialNo(0), parameter(0), numOfHeaderPackets(0)
 {
 }
 
 ExtractorInformation::ExtractorInformation(const ExtractorInformation& extractorInfo)
-    : type(extractorInfo.type), serialNo(extractorInfo.serialNo),
+  : type(extractorInfo.type), serialNo(extractorInfo.serialNo),
     parameter(0), numOfHeaderPackets(extractorInfo.numOfHeaderPackets)
 {
   if (extractorInfo.parameter)
diff --git a/src/streamExtractor.h b/src/base/streamExtractor.h
similarity index 100%
rename from src/streamExtractor.h
rename to src/base/streamExtractor.h
diff --git a/src/streamParameter.cpp b/src/base/streamParameter.cpp
similarity index 100%
rename from src/streamParameter.cpp
rename to src/base/streamParameter.cpp
diff --git a/src/streamParameter.h b/src/base/streamParameter.h
similarity index 100%
rename from src/streamParameter.h
rename to src/base/streamParameter.h
diff --git a/src/binaries/CMakeLists.txt b/src/binaries/CMakeLists.txt
new file mode 100644
index 0000000..508d638
--- /dev/null
+++ b/src/binaries/CMakeLists.txt
@@ -0,0 +1,17 @@
+SET ( EXECUTABLES oggSplit oggDump oggJoin oggCut oggLength oggCat oggSilence )
+
+SET ( EXEC_WITH_GD oggSlideshow oggThumb oggTranscode )
+
+FOREACH ( exec ${EXECUTABLES} )
+  ADD_EXECUTABLE ( ${exec} ${exec}.cpp )
+ TARGET_LINK_LIBRARIES ( ${exec} ovtmain ovtkate ovtvorbis ovttheora ovtbase ovteffect ovtmisc resample ${ALL_LIBS} )
+ENDFOREACH ( exec ${EXECUTABLES} )
+INSTALL ( TARGETS ${EXECUTABLES} DESTINATION bin )
+
+IF ( HAVE_LIBGD )
+FOREACH ( exec ${EXEC_WITH_GD} )
+  ADD_EXECUTABLE ( ${exec} ${exec}.cpp )
+  TARGET_LINK_LIBRARIES ( ${exec} ovtmain ovtkate ovtvorbis ovttheora ovtbase ovteffect ovtmisc resample ${ALL_LIBS}  )
+ENDFOREACH ( exec ${EXEC_WITH_GD} )
+INSTALL ( TARGETS ${EXEC_WITH_GD} DESTINATION bin )
+ENDIF ( HAVE_LIBGD )
diff --git a/src/oggCat.cpp b/src/binaries/oggCat.cpp
similarity index 89%
rename from src/oggCat.cpp
rename to src/binaries/oggCat.cpp
index 708e74d..d82e035 100644
--- a/src/oggCat.cpp
+++ b/src/binaries/oggCat.cpp
@@ -32,6 +32,7 @@
 
 #include <cstdlib>
 #include <ctime>
+#include <unistd.h>
 
 #include "definition.h"
 #include "helper.h"
@@ -89,19 +90,19 @@ bool getNextFile(std::string& fileName, StreamSerializer* &serializer,
 
   for (uint32 i(0); i<actConfigList.size(); ++i) {
 
-    if (origConfigList[i].type == ogg_unknown)
+    if (origConfigList[i].type == OggType::unknown)
       continue;
 
     origCounter++;
 
     for (uint32 j(0); j<origConfigList.size(); ++j) {
-      if ((actConfigList[i].type == ogg_theora) && (!theoraFound)) {
+      if ((actConfigList[i].type == OggType::theora) && (!theoraFound)) {
         theoraFound == true;
         streamMap[i] = j;
         matchCounter++;
       }
 
-      if ((actConfigList[i].type == ogg_vorbis) && (!vorbisFound)) {
+      if ((actConfigList[i].type == OggType::vorbis) && (!vorbisFound)) {
         vorbisFound == true;
         streamMap[i] = j;
         matchCounter++;
@@ -111,7 +112,7 @@ bool getNextFile(std::string& fileName, StreamSerializer* &serializer,
 
   if (matchCounter != origCounter) {
     logger.error()
-    << "I could not find enough matching streams for file <fileName>\n";
+        << "I could not find enough matching streams for file <fileName>\n";
     delete serializer;
     serializer = 0;
     return (false);
@@ -123,19 +124,21 @@ bool getNextFile(std::string& fileName, StreamSerializer* &serializer,
 
 void printHelpScreen(const std::string& progName)
 {
-  logger.error() << "usage: " << progName << " [Options]"
-  << " <outputFile> <inputFile1> <inputFile2> [ <inputFile3> [ ... ] ]\n"
-  << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
-  << "Options:\n" << "  -p    presize cutting (-pa for audio only)\n"
-  << "  -d    datarate of output stream\n"
-  << "  -q    video quality of output stream\n"
-  << "  -D    datarate of output audio stream\n"
-  << "  -Q    audio quality of output stream\n"
-  << "  -s    video size (e.g. 240x160)\n"
-  << "  -f    video framerate\n" << "  -F    audio Sample rate\n"
-  << "  -N    channel numbers\n"
-  << "  -x    no existens check for output file (for interactive usage)\n"
-  << "  -rv   reencode video stream\n"<< "\n";
+  logger.error() << "usage: " << progName << " [options]"
+                 << " <outputFile> <inputFile1> <inputFile2> [ <inputFile3> [ ... ] ]\n"
+                 << "   or: [options] -o <outputFile> <inputFile1> <inputFile2> [ <inputFile3> [ ... ] ]\n"
+                 << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
+                 << "Options:\n" << "  -p    presize cutting (-pa for audio only)\n"
+                 << "  -d    datarate of output stream\n"
+                 << "  -q    video quality of output stream\n"
+                 << "  -D    datarate of output audio stream\n"
+                 << "  -Q    audio quality of output stream\n"
+                 << "  -s    video size (e.g. 240x160)\n"
+                 << "  -f    video framerate\n" << "  -F    audio Sample rate\n"
+                 << "  -N    channel numbers\n"
+                 << "  -x    no existens check for output file (for interactive usage)\n"
+                 << "  -o    output file (alternative - if set, the first name is an input file!)\n"
+                 << "  -rv   reencode video stream\n"<< "\n";
 }
 
 void analyseVideoTranscoding(WishList& wishList,
@@ -291,7 +294,7 @@ int oggCatCmd(int argc, char* argv[])
       CmdlineExtractor::extractUint32(framesize, optarg, 'x');
       if (framesize.size() != 2) {
         logger.error()
-        << "please specify the size in the following way: -s320x480\n";
+            << "please specify the size in the following way: -s320x480\n";
         exit( -1);
       }
       wishList.width = framesize[0];
@@ -320,7 +323,7 @@ int oggCatCmd(int argc, char* argv[])
         break;
       }
       logger.error()
-      << "please specify the framerate in the following way -f25:2 or -f24\n";
+          << "please specify the framerate in the following way -f25:2 or -f24\n";
       exit( -1);
 
       break;
@@ -438,7 +441,7 @@ int oggCatCmd(int argc, char* argv[])
 
     StreamConfig& decoderConfig(originalConfigList[i]);
 
-    if (decoderConfig.type == ogg_theora) {
+    if (decoderConfig.type == OggType::theora) {
       if (foundTheora == false) {
         foundTheora = true;
         StreamConfig encoderConfig;
@@ -469,7 +472,7 @@ int oggCatCmd(int argc, char* argv[])
 
         /* grap the information extracted by the decoder */
         theoraDecoderConfig
-        = static_cast<TheoraStreamParameter*>(decoderConfig.parameter);
+          = static_cast<TheoraStreamParameter*>(decoderConfig.parameter);
 
         /* create a config for the output stream and keep a pointer */
         theoraEncoderConfig = new TheoraStreamParameter;
@@ -504,12 +507,12 @@ int oggCatCmd(int argc, char* argv[])
 
       } else {
         logger.warning()
-        << "oggCat found more than one theora stream, only the first stream is handled\n";
+            << "oggCat found more than one theora stream, only the first stream is handled\n";
       }
       continue;
     }
 
-    if (decoderConfig.type == ogg_vorbis) {
+    if (decoderConfig.type == OggType::vorbis) {
       if (foundVorbis == false) {
         StreamConfig encoderConfig;
 
@@ -532,7 +535,7 @@ int oggCatCmd(int argc, char* argv[])
 
         /* */
         vorbisDecoderConfig
-        = static_cast<VorbisStreamParameter*>(decoderConfig.parameter);
+          = static_cast<VorbisStreamParameter*>(decoderConfig.parameter);
 
         /* */
         encoderConfig.parameter = vorbisEncoderConfig;
@@ -556,7 +559,7 @@ int oggCatCmd(int argc, char* argv[])
         streamCounter++;
       } else {
         logger.warning()
-        << "oggCat found more than one vorbis stream, only the first stream is handled\n";
+            << "oggCat found more than one vorbis stream, only the first stream is handled\n";
       }
       continue;
     }
@@ -566,7 +569,7 @@ int oggCatCmd(int argc, char* argv[])
   }
 
   logger.info() << "Output Configuration: " << std::endl
-  << "--------------------- " << std::endl;
+                << "--------------------- " << std::endl;
 
   for (uint32 i(0); i< hookList.size(); ++i) {
     logger.info() << hookList[i]->encoderConfiguration() << std::endl;
@@ -603,7 +606,7 @@ int oggCatCmd(int argc, char* argv[])
 
     logger.info() << "  " << time << "      \r";
 
-    uint32 hookStreamID = streamMap[packet.getStreamNo()];
+    uint32 hookStreamID = streamMap[packet->getStreamNo()];
 
     if (hookStreamID == 255)
       continue;
@@ -655,11 +658,11 @@ int oggCatCmd(int argc, char* argv[])
       StreamConfig& decoderConfig(ConfigList[l]);
 
       /* of the actual stream is a theora stream investigate more */
-      if (decoderConfig.type == ogg_theora) {
+      if (decoderConfig.type == OggType::theora) {
         /* run through the stream map to find the original stream,
          * this stream should be mapped to */
         for (uint32 k(0); k<hookList.size(); ++k) {
-          if ((hookList[k]->getType() == ogg_theora) && (foundTheora
+          if ((hookList[k]->getType() == OggType::theora) && (foundTheora
               == false)) {
             foundTheora = true;
 //            logger.debug() << "Theora found ("<< l <<") -> "<<k<<std::endl;
@@ -687,11 +690,11 @@ int oggCatCmd(int argc, char* argv[])
         }
       }
 
-      if (decoderConfig.type == ogg_vorbis) {
+      if (decoderConfig.type == OggType::vorbis) {
         /* run through the stream map to find the original stream,
          * this stream should be mapped to */
         for (uint32 k(0); k<hookList.size(); ++k) {
-          if ((hookList[k]->getType() == ogg_vorbis) && (foundVorbis
+          if ((hookList[k]->getType() == OggType::vorbis) && (foundVorbis
               == false)) {
             foundVorbis = true;
 //            logger.debug() << "Vorbis found ("<< l <<") -> "<<k<<std::endl;
@@ -722,7 +725,7 @@ int oggCatCmd(int argc, char* argv[])
 
     if (streamCounter != newStreamCounter) {
       logger.error() << "File <"<<argv[j]
-      <<"> does not carry enough streams\n";
+                     <<"> does not carry enough streams\n";
       continue;
     }
 
@@ -741,7 +744,7 @@ int oggCatCmd(int argc, char* argv[])
 
       logger.info() << "  " << time << "        \r";
 
-      uint32 hookStreamID = streamMap[packet.getStreamNo()];
+      uint32 hookStreamID = streamMap[packet->getStreamNo()];
 
       if (hookStreamID == 255)
         continue;
diff --git a/src/oggCut.cpp b/src/binaries/oggCut.cpp
similarity index 83%
rename from src/oggCut.cpp
rename to src/binaries/oggCut.cpp
index d66f3b5..96fdc3e 100644
--- a/src/oggCut.cpp
+++ b/src/binaries/oggCut.cpp
@@ -29,6 +29,7 @@
 #include <map>
 #include <cstdlib>
 #include <ctime>
+#include <unistd.h>
 
 #include "fileRepository.h"
 #include "streamSerializer.h"
@@ -42,7 +43,8 @@ struct ListElement {
   double time;
   OggPacket packet;
   ListElement(double _time, OggPacket _packet) :
-      time(_time), packet(_packet) {
+    time(_time), packet(_packet)
+  {
   }
 };
 
@@ -63,16 +65,17 @@ uint32 _atoi(const char* data)
 void printHelpScreen(const std::string& progName)
 {
   logger.error() << "usage: "<< progName << "[options] <input.ogv> <output.ogv> \n"
-  << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
-  << "Options are:\n"
-  << " -s time     : Start time in milliseconds from start\n"
-  << "               if no start time is given, 0 is assumed\n"
-  << " -e time     : End time in milliseconds\n"
-  << "               if no end time or -1 is given, the end of the\n"
-  << "               file is assumed\n"
-  << " -l length   : Length of the cut area\n"
-  << " -i input    : Input file (alternative) \n"
-  << " -o output   : Output file (alternative) \n";
+                 <<        "or   : "<< progName << "[options] -i <input.ogv> -o <output.ogv> \n"
+                 << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
+                 << "Options are:\n"
+                 << " -s time     : Start time in milliseconds from start\n"
+                 << "               if no start time is given, 0 is assumed\n"
+                 << " -e time     : End time in milliseconds\n"
+                 << "               if no end time or -1 is given, the end of the\n"
+                 << "               file is assumed\n"
+                 << " -l length   : Length of the cut area\n"
+                 << " -i input    : Input file (alternative) \n"
+                 << " -o output   : Output file (alternative) \n";
 }
 
 void bufferedOutput(StreamMux& streamMux, double time, OggPacket packet)
@@ -219,10 +222,10 @@ int oggCutCmd(int argc, char* argv[])
   for (uint32 i(0); i<streamConfigList.size(); ++i) {
     StreamConfig& conf(streamConfigList[i]);
     logger.info() << "Stream No: "<<(int)conf.streamNo<<"(0x"<<std::hex
-    << conf.serialNo<<std::dec<<")\n";
+                  << conf.serialNo<<std::dec<<")\n";
     if (streamConfigList[i].parameter)
       logger.info() << streamConfigList[i].parameter->toString();
-    if (streamConfigList[i].type == ogg_theora)
+    if (streamConfigList[i].type == OggType::theora)
       foundTheora = true;
     offset[i] = -1;
   }
@@ -245,11 +248,11 @@ int oggCutCmd(int argc, char* argv[])
     time = streamSerializer.getNextPacket(packet);
 
 #ifdef DEBUG
-    if (packet.getStreamType() == ogg_theora) {
+    if (packet.getStreamType() == OggType::theora) {
       logger.debug() << "theora ";
     }
 
-    if (packet.getStreamType() == ogg_vorbis) {
+    if (packet.getStreamType() == OggType::vorbis) {
       logger.debug() << "vorbis ";
     }
 
@@ -264,11 +267,11 @@ int oggCutCmd(int argc, char* argv[])
       if (!startMarker) {
 
         /* we are doing packet analysation by ourselfs - may be changed */
-        if ((!foundTheora) || ((packet.getStreamType() == ogg_theora)
-                               &&(!(packet.data()[0] & 0x40)))) {
+        if ((!foundTheora) || ((packet->getStreamType() == OggType::theora)
+                               &&(!(packet->data()[0] & 0x40)))) {
           startMarker = true;
           beginTime   = time;
-          offset[packet.getStreamNo()] = time;
+          offset[packet->getStreamNo()] = time;
         }
       }
 
@@ -276,16 +279,16 @@ int oggCutCmd(int argc, char* argv[])
       if (startMarker) {
 
         /* if this stream has no offset calculated, do it now */
-        if (offset[packet.getStreamNo()] < 0) {
-          offset[packet.getStreamNo()] = time;
+        if (offset[packet->getStreamNo()] < 0) {
+          offset[packet->getStreamNo()] = time;
 #ifdef DEBUG
           logger.debug() << "offset for stream No <"<<(int)packet.getStreamNo()
-          <<"> is "<<offset[packet.getStreamNo()] - beginTime <<std::endl;
+                         <<"> is "<<offset[packet->getStreamNo()] - beginTime <<std::endl;
 #endif // DEBUG
         }
 
         /* we need to bufferd the output to the stream, as the streams are not 100% in sync */
-        bufferedOutput(streamMux, (time - offset[packet.getStreamNo()]), packet);
+        bufferedOutput(streamMux, (time - offset[packet->getStreamNo()]), packet);
       }
 
     }
diff --git a/src/oggDump.cpp b/src/binaries/oggDump.cpp
similarity index 90%
rename from src/oggDump.cpp
rename to src/binaries/oggDump.cpp
index 37480c2..efdfd20 100644
--- a/src/oggDump.cpp
+++ b/src/binaries/oggDump.cpp
@@ -31,6 +31,7 @@
 #include <fstream>
 #include <ostream>
 #include <cstdlib>
+#include <unistd.h>
 
 #include "fileRepository.h"
 #include "rawMediaPacket.h"
@@ -52,12 +53,12 @@ void printHelp(std::string programName)
 {
   logger.error() << "usage <"<<programName<<"> [options] file" << std::endl;
   logger.error() << "Options are:\n"
-  << " -h         : help screen        \n"
-  << " -g         : dump pages         \n"
-  << " -p         : dump packets       \n"
-  << " -l <level> : information depth; default: 5 (most information)\n"
-  << " -s         : promt for streams to dump\n"
-  << " -o <file>  : output dump information to a file\n";
+                 << " -h         : help screen        \n"
+                 << " -g         : dump pages         \n"
+                 << " -p         : dump packets       \n"
+                 << " -l <level> : information depth; default: 5 (most information)\n"
+                 << " -s         : promt for streams to dump\n"
+                 << " -o <file>  : output dump information to a file\n";
 }
 
 void dumpPacketof(std::string& file, uint8 dumpLevel, bool promptForStreams, std::string& outFilename)
@@ -86,13 +87,13 @@ void dumpPacketof(std::string& file, uint8 dumpLevel, bool promptForStreams, std
     std::cout << "Config of stream No. "<<i<<"\n"
               << "StreamType: ";
     switch (configList[i].type) {
-    case ogg_kate:
+    case OggType::kate:
       std::cout << "kate\n";
       break;
-    case ogg_theora:
+    case OggType::theora:
       std::cout << "theora\n";
       break;
-    case ogg_vorbis:
+    case OggType::vorbis:
       std::cout << "vorbis\n";
       break;
     }
@@ -123,7 +124,7 @@ void dumpPacketof(std::string& file, uint8 dumpLevel, bool promptForStreams, std
 
     print = true;
     for (uint32 i(0); i<outputStreamNo.size(); ++i)
-      if (outputStreamNo[i] == packet.getStreamNo())
+      if (outputStreamNo[i] == packet->getStreamNo())
         print = false;
 
     if (!print)
@@ -131,10 +132,10 @@ void dumpPacketof(std::string& file, uint8 dumpLevel, bool promptForStreams, std
 
     if (outFilename.empty()) {
       std::cout << "\nTime: " << _time;
-      std::cout << packet.print(dumpLevel);
+      std::cout << packet->print(dumpLevel);
     } else {
       outStream << "\nTime: " << _time;
-      outStream << packet.print(dumpLevel);
+      outStream << packet->print(dumpLevel);
     }
   }
 }
@@ -240,15 +241,15 @@ int oggDumpCmd(int argc, char* argv[])
       oggDecoder >> oggPage;
 
       /* what ID has this page / what stream does this page belongs to */
-      uint32 serialID = oggPage.serialno();
+      uint32 serialID = oggPage->serialno();
 
-      if (oggPage.isBOS()) {
+      if (oggPage->isBOS()) {
 
         bool addPage(false);
 
         switch (OggBOSExtractorFactory::getStreamType(oggPage)) {
 
-        case ogg_theora: {
+        case OggType::theora: {
           std::cout << "Found theora stream with ID= 0x" << std::hex
                     << serialID << std::dec << std::endl;
           if (promptForStreams) {
@@ -263,7 +264,7 @@ int oggDumpCmd(int argc, char* argv[])
         }
         break;
 
-        case ogg_vorbis: {
+        case OggType::vorbis: {
           std::cout << "Found vorbis stream with ID= 0x" << std::hex
                     << serialID << std::dec << std::endl;
           if (promptForStreams) {
@@ -279,7 +280,7 @@ int oggDumpCmd(int argc, char* argv[])
         }
         break;
 
-        case ogg_kate: {
+        case OggType::kate: {
           std::cout << "Found kate stream with ID= 0x" << std::hex
                     << serialID << std::dec << std::endl;
           if (promptForStreams) {
@@ -328,11 +329,11 @@ int oggDumpCmd(int argc, char* argv[])
             // are there any bos pages, then print them first
             if (!bosPages.empty()) {
               for (uint32 j(0); j<bosPages.size(); ++j)
-                outputString += bosPages[j].print(dumpLevel);
+                outputString += bosPages[j]->print(dumpLevel);
               bosPages.clear();
             }
 
-            outputString += oggPage.print(dumpLevel);
+            outputString += oggPage->print(dumpLevel);
 
             if (outFilename.empty())
               std::cout << outputString;
diff --git a/src/oggJoin.cpp b/src/binaries/oggJoin.cpp
similarity index 94%
rename from src/oggJoin.cpp
rename to src/binaries/oggJoin.cpp
index 0f754f4..f2d7bdd 100644
--- a/src/oggJoin.cpp
+++ b/src/binaries/oggJoin.cpp
@@ -77,11 +77,11 @@ bool getNextPage(JoinElement* element, OggPage& page)
 void printHelpScreen(const std::string& progName)
 {
   logger.error() << "usage: " << progName
-  << " <outputFile> <inputFile1> <inputFile2> [ <inputFile3> [ ... ] ]\n"
-  << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
-  << "oggJoin will multiplex a number of ogg streams into \n"
-  << "one file. Actually every stream must be placed in a \n"
-  << "single file.\n\n";
+                 << " <outputFile> <inputFile1> <inputFile2> [ <inputFile3> [ ... ] ]\n"
+                 << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
+                 << "oggJoin will multiplex a number of ogg streams into \n"
+                 << "one file. Actually every stream must be placed in a \n"
+                 << "single file.\n\n";
 }
 
 int oggJoinCmd(int argc, char* argv[])
@@ -178,7 +178,7 @@ int oggJoinCmd(int argc, char* argv[])
       if (decoderList[i]->closed)
         continue;
 
-      double testTime(decoderList[i]->position->getTime(decoderList[i]->nextPage.granulepos()));
+      double testTime(decoderList[i]->position->getTime(decoderList[i]->nextPage->granulepos()));
       if ((smallestTime < -9) || (smallestTime > testTime)) {
         smallestTime = testTime;
         smallestID   = i;
diff --git a/src/oggLength.cpp b/src/binaries/oggLength.cpp
similarity index 96%
rename from src/oggLength.cpp
rename to src/binaries/oggLength.cpp
index 07ec77c..f506a8d 100644
--- a/src/oggLength.cpp
+++ b/src/binaries/oggLength.cpp
@@ -27,6 +27,7 @@
 #include <iostream>
 #include <string>
 #include <cstdlib>
+#include <unistd.h>
 
 #include "fileRepository.h"
 #include "streamSerializer.h"
@@ -109,9 +110,9 @@ int oggLengthCmd(int argc, char* argv[])
 
     if (time < 0) {
       break;
-    } else if (packet.getStreamType() == ogg_theora)
+    } else if (packet->getStreamType() == OggType::theora)
       timeTheora = time;
-    if (packet.getStreamType() == ogg_vorbis)
+    if (packet->getStreamType() == OggType::vorbis)
       timeVorbis = time;
 
     retTime = time;
diff --git a/src/binaries/oggScroll.cpp b/src/binaries/oggScroll.cpp
new file mode 100644
index 0000000..0429115
--- /dev/null
+++ b/src/binaries/oggScroll.cpp
@@ -0,0 +1,217 @@
+/*
+ * oggScroll is a tool to scroll through a theora stream
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <iostream>
+#include <map>
+#include <termios.h>
+#include <SDL/SDL.h>
+
+#include "fileRepository.h"
+#include "streamSerializer.h"
+#include "theoraDecoder.h"
+#include "theoraStreamParameter.h"
+#include "SDLvideoOutput.h"
+#include "exception.h"
+#include "log.h"
+
+void printHelpScreen(std::string& progName)
+{
+  logger.error() << "usage: " << progName << "[options]\n";
+}
+
+int getChar()
+{
+  termios origTerminal;
+  termios tempTerminal;
+  int character;
+
+  /* get the actuall terminal state */
+  if ((tcgetattr (STDIN_FILENO, &tempTerminal)) == -1)
+    exit(-1);
+
+  origTerminal = tempTerminal;
+
+
+  tempTerminal.c_iflag =
+    tempTerminal.c_iflag & ~(BRKINT | ICRNL | INPCK | ISTRIP | IXON);
+  tempTerminal.c_oflag = tempTerminal.c_iflag & ~(OPOST);
+  tempTerminal.c_cflag = tempTerminal.c_cflag & ~(CSIZE | PARENB);
+  tempTerminal.c_lflag = tempTerminal.c_lflag & ~(ECHO|ICANON|IEXTEN|ISIG);
+  tempTerminal.c_cflag = tempTerminal.c_cflag | CS8;
+  tempTerminal.c_cc[VMIN]  = 1;
+  tempTerminal.c_cc[VTIME] = 0;
+
+  /*Jetzt setzten wir den raw-Modus*/
+  /*
+   *    if ((tcsetattr (fd, TCSAFLUSH, &new_io)) == -1)
+   */
+
+  /* change terminal to raw behaviour */
+  tcsetattr (STDIN_FILENO, TCSAFLUSH, &tempTerminal);
+//  cfmakeraw(&tempTerminal);
+
+  /* wait for a keypress event */
+  character = getchar();
+
+  /* restore the old terminal */
+  tcsetattr (STDIN_FILENO, TCSANOW, &origTerminal);
+
+  return(character);
+}
+
+int oggScrollCmd(int argc, char* argv[])
+{
+  std::string inputFile;
+  std::string programName(argv[0]);
+
+  int opt;
+  while ((opt = getopt(argc, argv, "h")) != EOF)
+
+    switch (opt) {
+
+    case 'h':
+      printHelpScreen(programName);
+      exit(-1);
+
+    }
+
+  argc -= optind;
+  argv += optind;
+
+  if (argc == 1)
+    inputFile = std::string(argv[0]);
+  else {
+    printHelpScreen(programName);
+    exit(-1);
+  }
+
+  if (inputFile.empty()) {
+    logger.error() << "Error: please define an input and output file with -i and -o\n\n";
+    return(-1);
+  }
+
+  /* create the */
+  StreamSerializer streamSerializer;
+  TheoraDecoder    theoraDecoder;
+  uint8            foundTheora(0);
+  std::vector<OggComment> commentList;
+
+  if (!streamSerializer.open(inputFile)) {
+    logger.error() << "Error: can not open file <"<<inputFile<<">\n";
+    return(-1);
+  }
+
+  uint8 theoraStreamNo(0);
+
+  /* create the headers */
+  std::vector<StreamConfig> streamConfigList;
+  streamSerializer.getStreamConfig(streamConfigList);
+
+  TheoraStreamParameter* theoraConfig(0);
+
+  /* Output some stream information */
+  for (uint32 i(0); i<streamConfigList.size(); ++i) {
+    if (streamConfigList[i].type != ogg_unknown) {
+      logger.info() << streamConfigList[i].parameter->toString();
+    }
+    if (streamConfigList[i].type == ogg_theora) {
+      // take the first theora stream
+      if (!foundTheora) {
+        theoraStreamNo = streamConfigList[i].streamNo;
+        theoraConfig   = (TheoraStreamParameter*)streamConfigList[i].parameter;
+        theoraDecoder.initDecoder(streamConfigList[i], commentList);
+      }
+      foundTheora++;
+    }
+  }
+
+  OggPacket packet;
+  double time;
+
+  if (foundTheora == 0) {
+    logger.error() << "I did not find any theora stream\n";
+    exit(-1);
+  }
+
+  /* create SDL video object */
+  VideoInfo sdlInfo;
+  sdlInfo.frame_width  = theoraConfig->pictureX;
+  sdlInfo.frame_height = theoraConfig->pictureY;
+  sdlInfo.offset_x=0;
+  sdlInfo.offset_y=0;
+
+  //TheoraVideoPacket picture;
+  th_ycbcr_buffer picture;
+  SDLvideoOutput videoOut;
+  videoOut.init(sdlInfo);
+
+  /* play back the pictures */
+  bool keyframeSearch(false);
+  bool avail(true);
+
+  while (1==1) {
+
+    time = streamSerializer.getNextPacket(packet);
+    while (avail) {
+//      logger.debug() << time<<"   -   Stream No: "<<(int)packet.getStreamNo()<< "  theora Stream No: "<<(int)theoraStreamNo<<"\n";
+      if ((packet.getStreamNo() != theoraStreamNo) || ((keyframeSearch) && (!TheoraDecoder::isPacketKeyframe(packet)))) {
+        if (!streamSerializer.available())
+          avail = false;
+        else
+          time = streamSerializer.getNextPacket(packet);
+      } else
+        break;
+
+    }
+
+    if (!avail)
+      break;
+
+    theoraDecoder << packet;
+    theoraDecoder >> picture;
+    videoOut      << picture;
+
+    logger.info() << "\rTime: "<<time<<"                    ";
+
+    int key(getChar());
+    if (key == 'q')
+      break;
+
+    if (key == '+')
+      keyframeSearch=true;
+    else
+      keyframeSearch=false;
+  }
+
+
+  return(0);
+}
+
+int main(int argc, char* argv[])
+{
+  try {
+    return oggScrollCmd(argc, argv);
+  } catch (OggException & e) {
+    logger.error() << "Fatal error: " << e.what() << std::endl;
+    return -1;
+  }
+}
+
diff --git a/src/oggSilence.cpp b/src/binaries/oggSilence.cpp
similarity index 99%
rename from src/oggSilence.cpp
rename to src/binaries/oggSilence.cpp
index ec0a7d2..c37d1dc 100644
--- a/src/oggSilence.cpp
+++ b/src/binaries/oggSilence.cpp
@@ -30,6 +30,7 @@
 #include <sstream>
 #include <cstdlib>
 #include <ctime>
+#include <unistd.h>
 
 #include "vorbisEncoder.h"
 #include "streamMux.h"
diff --git a/src/oggSlideshow.cpp b/src/binaries/oggSlideshow.cpp
similarity index 66%
rename from src/oggSlideshow.cpp
rename to src/binaries/oggSlideshow.cpp
index 1aef196..50b0eea 100644
--- a/src/oggSlideshow.cpp
+++ b/src/binaries/oggSlideshow.cpp
@@ -36,6 +36,8 @@
 #include <cstring>
 #include <ctime>
 #include <exception>
+#include <memory>
+#include <unistd.h>
 
 #include "th_helper.h"
 
@@ -46,10 +48,13 @@
 #include "cmdlineextractor.h"
 
 #include "effector.h"
+#include "effectorTypes.h"
 #include "crossfader.h"
 #include "kenburnseffect.h"
 #include "lowpassEffect.h"
 #include "plainPicture.h"
+#include "shiftEffect.h"
+#include "shiftblendEffect.h"
 
 #include "pictureLoader.h"
 #include "pictureResize.h"
@@ -72,6 +77,8 @@ void printHelpScreen(std::string& name)
             << "                      cf - cross fade\n"
             << "                      p  - plain\n"
             << "                      bl - blur\n"
+            << "                      s  - shift\n"
+            << "                      b  - shiftblend\n"
             << " -q <quality>       : quality (0-63)\n"
             << " -c                 : comments in form type=value;type=value\n";
 
@@ -81,26 +88,20 @@ void printHelpScreen(std::string& name)
 //int main(int argc, char* argv[])
 int oggSlideshowCmd(int argc, char* argv[])
 {
-  enum seqType {
-    seqType_KenBurns,
-    seqType_Crossfade,
-    seqType_Plain,
-    seqType_Blur
-  };
-
   /* default values */
   uint32 width(480);
   uint32 height(320);
   uint32 framesPerSecond(24);
   std::string outputFile("slideshow.ogv");
-  uint32 length(8);
   uint32 datarate(0);
   uint32 quality(32);
-  seqType showType(seqType_KenBurns);
   float resample(1.4);
   bool reframe(false);
   std::vector<OggComment> oggComments;
-  uint16 predefine(0);
+  int32 predefine(0);
+  SlideshowElement defaultSlide;
+  defaultSlide.duration = 8;
+  defaultSlide.type = KenBurns;
 
   srand(time(0));
 
@@ -142,11 +143,11 @@ int oggSlideshowCmd(int argc, char* argv[])
       break;
 
     case 'l':
-      length = atoi(optarg); // yes, I know the atoi bug
+      defaultSlide.duration = atof(optarg);
       break;
 
     case 'd':
-      datarate = atoi(optarg); // yes, I know the atoi bug
+      datarate = atoi(optarg);
       break;
 
     case 'r':
@@ -177,27 +178,37 @@ int oggSlideshowCmd(int argc, char* argv[])
 
       if ((typeStr == "kb") || (typeStr =="KenBurns")|| (typeStr == "KB")) {
 
-        showType = seqType_KenBurns;
+        defaultSlide.type = KenBurns;
         break;
       }
       if ((typeStr == "cf") || (typeStr =="crossfade")) {
-        showType = seqType_Crossfade;
+        defaultSlide.type = Crossfade;
         break;
       }
 
       if ((typeStr == "p") || (typeStr =="plain")|| (typeStr == "simple")) {
-        showType = seqType_Plain;
+        defaultSlide.type = Plain;
         break;
       }
 
       if ((typeStr == "b") || (typeStr =="bl") || (typeStr == "blur") ||
           (typeStr == "lp") || (typeStr == "lowpass")) {
-        showType = seqType_Blur;
+        defaultSlide.type = Blur;
+        break;
+      }
+
+      if ((typeStr == "s") || (typeStr =="sh") || (typeStr == "shift")) {
+        defaultSlide.type = Shift;
+        break;
+      }
+
+      if ((typeStr =="sb") || (typeStr == "shiftlend")) {
+        defaultSlide.type = ShiftBlend;
         break;
       }
 
-      std::cerr << "Unknown Type: using Ken Burns";
-      showType = seqType_KenBurns;
+      std::cerr << "Unknown Type: (" << typeStr << ") using Ken Burns";
+      defaultSlide.type = KenBurns;
     }
     break;
 
@@ -271,26 +282,7 @@ int oggSlideshowCmd(int argc, char* argv[])
   /* extract the RGB picture plane */
   RGBPlane pictureRGB;
 
-  /* create the effector */
-  Effector* effector(0);
-  switch (showType) {
-  case seqType_KenBurns:
-    effector = new KenBurnsEffect;
-    break;
-
-  case seqType_Crossfade:
-    effector = new Crossfader;
-    break;
-
-  case seqType_Plain:
-    effector = new PlainPicture;
-    break;
-
-  case seqType_Blur:
-    effector = new LowpassEffect;
-    break;
-
-  }
+  std::auto_ptr<Effector> effector;
 
   bool first(true);
   bool noneFound(true);
@@ -300,14 +292,21 @@ int oggSlideshowCmd(int argc, char* argv[])
     bool last = (i == (argc-1));
     try {
 
-      logger.info() << "\ncreating video stream for picture <"<<argv[i]<<">\n";
+      // initialize the slide specification with default values
+      SlideshowElement slide(defaultSlide);
+
+      // extract the actual slide specifications from the next argument
+      CmdlineExtractor::extractSlideshow(argv[i],',',slide);
+
+      logger.info() << "\ncreating video stream for picture <"
+                    << slide.filename << ">\n";
 
       // extract parameters
 
       uint32 loadWidth;
       uint32 loadHeight;
 
-      if (showType == seqType_KenBurns) {
+      if (slide.type == KenBurns) {
         loadWidth  = (uint32)(width*resample);
         loadHeight = (uint32)(height*resample);
       } else {
@@ -316,7 +315,7 @@ int oggSlideshowCmd(int argc, char* argv[])
       }
 
       bool biggest = (!reframe);
-      if (PictureLoader::load(pictureRGB, argv[i], loadWidth, loadHeight, biggest) == false) {
+      if (PictureLoader::load(pictureRGB, slide.filename, loadWidth, loadHeight, biggest) == false) {
         continue;
       }
       noneFound = false;
@@ -326,68 +325,136 @@ int oggSlideshowCmd(int argc, char* argv[])
         logger.info() << "Picture aspect ratio does not match, doing reframing\n";
         pictureRGB = PictureResize::reframe(pictureRGB, loadWidth, loadHeight);
       }
+
       /* configure the effector */
-      switch (showType) {
+      switch (slide.type) {
 
-      case seqType_KenBurns: {
+      case KenBurns: {
 
         KenBurnsEffect::KenBurnsConfig config;
         if (predefine == 0)
-          config = KenBurnsEffect::createKBconfigRandom(pictureRGB, loadWidth, loadHeight, width, height, length*framesPerSecond, framesPerSecond);
-        else
-          config = KenBurnsEffect::createKBconfigPredefine(pictureRGB, loadWidth, loadHeight, width, height, length*framesPerSecond, framesPerSecond, predefine);
+          config = KenBurnsEffect::createKBconfigRandom(pictureRGB, loadWidth, loadHeight, width, height, slide.duration*framesPerSecond, framesPerSecond);
+        else if (predefine < 0) {
+          config.startpointX = slide.startPosX;
+          config.startpointY = slide.startPosY;
+          config.endpointX = slide.endPosX;
+          config.endpointY = slide.endPosY;
+          config.zoomStart = slide.startZoom;
+          config.zoomEnd = slide.endZoom;
+          config.sequenceLength = slide.duration * framesPerSecond;
+          config.blindLength = framesPerSecond;
+          config.origPlane = pictureRGB;
+          config.outputWidth = width;
+          config.outputHeight = height;
+
+          std::cerr << "s:" << slide.startPosX<<":"<<slide.startPosY<<" -> "<<slide.endPosX<<":"<<slide.endPosY<<"\n";
+        } else
+          config = KenBurnsEffect::createKBconfigPredefine(pictureRGB, loadWidth, loadHeight, width, height, slide.duration*framesPerSecond, framesPerSecond, predefine);
 
 
         config.first = first;
         config.last = last;
-        static_cast<KenBurnsEffect*>(effector)->configure(config);
+
+        if (!effector.get() || GetEffectorType()(*effector) != KenBurns) {
+          effector.reset(new KenBurnsEffect);
+        }
+        static_cast<KenBurnsEffect*>(effector.get())->configure(config);
 
         break;
       }
 
 
-      case seqType_Crossfade: {
+      case Crossfade: {
 
         Crossfader::CrossfaderConfig config;
 
         config.origPlane      = pictureRGB;
         config.blindLength    = framesPerSecond;
-        config.sequenceLength = length*framesPerSecond;
+        config.sequenceLength = slide.duration*framesPerSecond;
+        config.outputWidth    = width;
+        config.outputHeight   = height;
+        config.first          = first;
+
+        if (!effector.get() || GetEffectorType()(*effector) != Crossfade) {
+          effector.reset(new Crossfader);
+        }
+        static_cast<Crossfader*>(effector.get())->configure(config);
+
+        break;
+      }
+
+      case Shift: {
+
+        ShiftEffect::ShiftConfig config;
+
+        config.origPlane      = pictureRGB;
+        config.blindLength    = framesPerSecond;
+        config.sequenceLength = slide.duration*framesPerSecond;
         config.outputWidth    = width;
         config.outputHeight   = height;
         config.first          = first;
 
-        static_cast<Crossfader*>(effector)->configure(config);
+        if (!effector.get() || GetEffectorType()(*effector) != Shift) {
+          effector.reset(new ShiftEffect);
+        }
+        static_cast<ShiftEffect*>(effector.get())->configure(config);
 
         break;
       }
 
-      case seqType_Plain: {
+      case ShiftBlend: {
+
+        ShiftblendEffect::ShiftConfig config;
+
+        config.origPlane      = pictureRGB;
+        config.blindLength    = framesPerSecond;
+        config.sequenceLength = slide.duration*framesPerSecond;
+        config.outputWidth    = width;
+        config.outputHeight   = height;
+        config.first          = first;
+        config.type           = ShiftblendEffect::ShiftConfig::Right;
+
+        if (!effector.get() || GetEffectorType()(*effector) != ShiftBlend) {
+          effector.reset(new ShiftblendEffect);
+        }
+        static_cast<ShiftblendEffect*>(effector.get())->configure(config);
+
+        break;
+      }
+
+      case Plain: {
 
         PlainPicture::PlainPictureConfig config;
 
         config.origPlane      = pictureRGB;
-        config.sequenceLength = length*framesPerSecond;
+        config.sequenceLength = slide.duration*framesPerSecond;
         config.outputWidth    = width;
         config.outputHeight   = height;
 
-        static_cast<PlainPicture*>(effector)->configure(config);
+        if (!effector.get() || GetEffectorType()(*effector) != Plain) {
+          effector.reset(new PlainPicture);
+        }
+        static_cast<PlainPicture*>(effector.get())->configure(config);
 
         break;
       }
 
-      case seqType_Blur : {
+      case Blur : {
 
         LowpassEffect::LowPassPictureConfig config;
 
         config.origPlane = pictureRGB;
         config.blindLength = framesPerSecond;
-        config.sequenceLength = length*framesPerSecond;
+        config.sequenceLength = slide.duration*framesPerSecond;
         config.outputWidth = width;
         config.outputHeight = height;
         config.first = first;
         config.last = last;
-        static_cast<LowpassEffect*>(effector)->configure(config);
+
+        if (!effector.get() || GetEffectorType()(*effector) != Blur) {
+          effector.reset(new LowpassEffect);
+        }
+        static_cast<LowpassEffect*>(effector.get())->configure(config);
         break;
       }
       }
@@ -405,7 +472,7 @@ int oggSlideshowCmd(int argc, char* argv[])
 
         theoraEncoder << theoraPictureBuffer;
         theoraEncoder >> packet;
-        std::cerr << "\r " <<std::fixed << packet.getPacketNo()*1.0/(framesPerSecond*1.0)<<"               ";
+        std::cerr << "\r " <<std::fixed << packet->getPacketNo()*1.0/(framesPerSecond*1.0)<<"               ";
         streamCreate << packet;
 
       }
@@ -425,8 +492,6 @@ int oggSlideshowCmd(int argc, char* argv[])
   streamCreate.setEndOfStream();
   streamCreate.close();
 
-  delete effector;
-
   std::cout << std::endl;
 #ifdef OSX_MALLOC_DEBUG
   std::cout << "Done!\n";
@@ -438,6 +503,7 @@ int oggSlideshowCmd(int argc, char* argv[])
 
 int main(int argc, char* argv[])
 {
+  logger.setLevel(OggLog::LOG_DEBUG);
   try {
     return oggSlideshowCmd(argc, argv);
   } catch (OggException & e) {
diff --git a/src/oggSplit.cpp b/src/binaries/oggSplit.cpp
similarity index 83%
rename from src/oggSplit.cpp
rename to src/binaries/oggSplit.cpp
index 4db9688..14d0a6b 100644
--- a/src/oggSplit.cpp
+++ b/src/binaries/oggSplit.cpp
@@ -41,12 +41,12 @@ struct OutputUnit {
 void printHelpScreen(const std::string& progName)
 {
   logger.error() << "usage: " << progName << " <file.ogv>\n"
-  << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
-  << "oggSplit demultiplexes an ogg file into its streams.\n"
-  << "Every stream is placed into a single file, which are\n"
-  << "called theora_<serialNo>.ogg or vorbis_<serialNo>.ogg.\n"
-  << "The serial number is the unique ogg serial number of\n"
-  << "this stream.\n\n";
+                 << " -- package and version \"" << PACKAGE_STRING << "\"\n\n"
+                 << "oggSplit demultiplexes an ogg file into its streams.\n"
+                 << "Every stream is placed into a single file, which are\n"
+                 << "called theora_<serialNo>.ogg or vorbis_<serialNo>.ogg.\n"
+                 << "The serial number is the unique ogg serial number of\n"
+                 << "this stream.\n\n";
 }
 
 int oggSplitCmd(int argc, char* argv[])
@@ -73,7 +73,6 @@ int oggSplitCmd(int argc, char* argv[])
 
   RawMediaPacket rawDecoderPacket;
   OggDecoder oggDecoder;
-  OggPage oggPage;
 
   /* run through the repository until there is no data left */
   while (!repository.isEndOfFile()) {
@@ -87,38 +86,40 @@ int oggSplitCmd(int argc, char* argv[])
     /* are there any complete ogg Pages available ? */
     while (oggDecoder.isAvailable()) {
 
+      OggPage oggPage;
+
       /* grap the next page */
       oggDecoder >> oggPage;
 
       /* what ID has this page / what stream does this page belongs to */
-      uint32 serialID = oggPage.serialno();
+      uint32 serialID = oggPage->serialno();
 
       /* if this is the start of a stream, create a repository file for it */
-      if (oggPage.isBOS()) {
+      if (oggPage->isBOS()) {
 
         std::stringstream filename;
 
         switch (OggBOSExtractorFactory::getStreamType(oggPage)) {
 
-        case ogg_theora:
+        case OggType::theora:
           filename << "theora_" << std::hex << serialID << std::dec
-          << ".ogv";
+                   << ".ogv";
           break;
 
-        case ogg_vorbis:
+        case OggType::vorbis:
           filename << "vorbis_" << std::hex << serialID << std::dec
-          << ".oga";
+                   << ".oga";
           break;
 
-        case ogg_kate:
+        case OggType::kate:
           filename << "kate_" << std::hex << serialID << std::dec
-          << ".ogv";
+                   << ".ogv";
           break;
 
         default:
           logger.warning() << "unknown type ID "<< std::hex << serialID << std::dec <<"\n";
           filename << "unknown_" << std::hex << serialID << std::dec
-          << ".ogv";
+                   << ".ogv";
 
         }
 
@@ -140,7 +141,7 @@ int oggSplitCmd(int argc, char* argv[])
         outputFileList[serialID].repository << rawOutput;
 
       }
-      if (oggPage.isEOS())
+      if (oggPage->isEOS())
         outputFileList[serialID].repository.close();
     }
   }
diff --git a/src/oggThumb.cpp b/src/binaries/oggThumb.cpp
similarity index 92%
rename from src/oggThumb.cpp
rename to src/binaries/oggThumb.cpp
index 24bd493..7e86ca0 100644
--- a/src/oggThumb.cpp
+++ b/src/binaries/oggThumb.cpp
@@ -220,14 +220,14 @@ std::string getThumbname(const std::string& filename, const std::string& forcedT
 void printHelpScreen(std::string& prog)
 {
   logger.error() << "\nusage: "<<prog<<" [options] file1.ogv [ file2.ogv [ file3.ogv [...] ] ]\n"
-  << "Options:\n"
-  << " -t <time1, time2, time3, ...>         : create thumbnail from frame at time position time1, time2, time3 second\n"
-  << " -f <frameNo1, frameNo2, frameNo3, ...>: create thumbnail from frame number frameNo1, frameNo2, frameNo3\n"
-  << " -s <width>x<height>                   : resize to given values (if one argument is set to 0, it is calculated to meet the aspect ratio)\n"
-  << " -o <output format>                    : formats are jpg or png\n"
-  << " -n <filename>                         : force output filename\n"
-  << "The filename could be given with a %, which will be replaced by the actual picture number\n"
-  << "\n\n";
+                 << "Options:\n"
+                 << " -t <time1, time2, time3, ...>         : create thumbnail from frame at time position time1, time2, time3 second\n"
+                 << " -f <frameNo1, frameNo2, frameNo3, ...>: create thumbnail from frame number frameNo1, frameNo2, frameNo3\n"
+                 << " -s <width>x<height>                   : resize to given values (if one argument is set to 0, it is calculated to meet the aspect ratio)\n"
+                 << " -o <output format>                    : formats are jpg or png\n"
+                 << " -n <filename>                         : force output filename\n"
+                 << "The filename could be given with a %, which will be replaced by the actual picture number\n"
+                 << "\n\n";
 
 }
 
@@ -252,15 +252,17 @@ int oggThumbCmd(int argc, char* argv[])
   };
 
 //#ifdef with_eclipse_CDTBUG
-  struct option longOpts[] = {
-{name: "help"
-, has_arg: 0, flag:
-NULL, val:
-      opt_help},
-{name: "verbose"
- , has_arg: 1, flag:
- NULL, val:
-     opt_verbose}
+  option longOpts[] = {
+    { /* name: */      "help"
+      ,     /* has_arg: */   0,
+      /* flag: */      NULL,
+      /* val: */       opt_help
+    },
+    { /* name:    */    "verbose",
+      /* has_arg: */    1,
+      /* flag:    */    NULL,
+      /* val:     */    opt_verbose
+    }
   };
 //#endif
 
@@ -420,7 +422,7 @@ NULL, val:
     /* Output some stream information */
     for (uint32 i(0); i<streamConfigList.size(); ++i) {
 
-      if (streamConfigList[i].type == ogg_theora) {
+      if (streamConfigList[i].type == OggType::theora) {
         // take the first theora stream
         if (!foundTheora) {
           theoraStreamNo = streamConfigList[i].streamNo;
@@ -491,7 +493,7 @@ NULL, val:
       time = streamSerializer.getNextPacket(packet);
 
       // is this packet a theora frame
-      if (packet.getStreamType() != ogg_theora)
+      if (packet->getStreamType() != OggType::theora)
         continue;
 
       // write actual time
@@ -506,7 +508,7 @@ NULL, val:
       packetList.push_back(packet);
 
       // should this packet be written due to frame number comparison?
-      if (nextFrame == packet.getPacketNo()) {
+      if (nextFrame == packet->getPacketNo()) {
 
         if (tmpframeNoList.empty()) {
           nextFrame = std::numeric_limits<uint32>::max();
diff --git a/src/oggTranscode.cpp b/src/binaries/oggTranscode.cpp
similarity index 88%
rename from src/oggTranscode.cpp
rename to src/binaries/oggTranscode.cpp
index f212c46..6b9f163 100644
--- a/src/oggTranscode.cpp
+++ b/src/binaries/oggTranscode.cpp
@@ -34,6 +34,7 @@
 #include <cstdlib>
 #include <cmath>
 #include <ctime>
+#include <unistd.h>
 
 #ifdef HAVE_CONFIG_H
 #include "config.h"
@@ -67,29 +68,31 @@
 void printHelpScreen(const std::string& progname)
 {
   logger.error() << "usage: "<<progname << " -- package and version \""
-  << PACKAGE_STRING << "\"\n\n"
-  << " [Options] originalFile.ogv newFile.ogv\n" << "  Option: \n"
-  << "    -h     this helpscreen\n"
-  << "    -o     specify output file name (optional)\n"
-  << "    -s     <width x height>  new frame size\n"
-  << "    -f     video framerate in frames per second\n"
-  << "    -F     audio samplerate in Hz\n"
-  << "    -d     video datarate in Bit/s\n"
-  << "    -D     audio datarate in Bit/s\n"
-  << "    -q     theora video quality\n"
-  << "    -N     audio channels\n"
-  << "    -a     add png with alpha channel on top of a frame\n"
-  << "           before the resize process\n"
-  << "    -A     add png with alpha channel on top of a frame\n"
-  << "           after the resize process\n"
-  << "    -p     only use every <x>th packet to create the new video\n"
-  << "    -c     comments for the video stream\n"
-  << "    -C     comments for the audio stream\n"
-  << "    -x     do not ask for overwriting output file\n"
-  << "    -rv    force reencode video stream\n"
-  << "    -ra    force reencode audio stream\n"
-  << "    -Q     resize quality (1=best/slow; 6=worst/fast)\n"
-  << "    -t     stretch picture to new size\n\n";
+                 << PACKAGE_STRING << "\"\n\n"
+                 << " [Options] originalFile.ogv newFile.ogv\n" << "  Option: \n"
+                 << "    -h     this helpscreen\n"
+                 << "    -o     specify output file name (optional)\n"
+                 << "    -s     <width x height>  new frame size\n"
+                 << "    -f     video framerate in frames per second\n"
+                 << "    -F     audio samplerate in Hz\n"
+                 << "    -d     video datarate in Bit/s\n"
+                 << "    -D     audio datarate in Bit/s\n"
+                 << "    -q     theora video quality\n"
+                 << "    -N     audio channels\n"
+                 << "    -a     add png with alpha channel on top of a frame\n"
+                 << "           before the resize process \n"
+                 << "           form: file.png[,<startTime>[,<endTime>[,s]]]\n"
+                 << "           start and end time is in seconds and can be a floating point\n"
+                 << "    -A     add png with alpha channel on top of a frame\n"
+                 << "           after the resize process (same parameters as -a)\n"
+                 << "    -p     only use every <x>th packet to create the new video\n"
+                 << "    -c     comments for the video stream\n"
+                 << "    -C     comments for the audio stream\n"
+                 << "    -x     do not ask for overwriting output file\n"
+                 << "    -rv    force reencode video stream\n"
+                 << "    -ra    force reencode audio stream\n"
+                 << "    -Q     resize quality (1=best/slow; 6=worst/fast)\n"
+                 << "    -t     stretch picture to new size\n\n";
 
 }
 
@@ -365,7 +368,7 @@ int oggTranscodeCmd(int argc, char* argv[])
       CmdlineExtractor::extractUint32(framesize, optarg, 'x');
       if (framesize.size() != 2) {
         logger.error()
-        << "please specify the size in the following way: -s320x480\n";
+            << "please specify the size in the following way: -s320x480\n";
         exit( -1);
       }
       wishList.changeSize = true;
@@ -392,7 +395,7 @@ int oggTranscodeCmd(int argc, char* argv[])
         break;
       }
       logger.error()
-      << "please specify the framerate in the following way -f25:2 or -f24\n";
+          << "please specify the framerate in the following way -f25:2 or -f24\n";
       exit( -1);
 
     }
@@ -556,7 +559,7 @@ int oggTranscodeCmd(int argc, char* argv[])
 
     StreamConfig& decoderConfig(demuxerInformation[i]);
 
-    if (decoderConfig.type == ogg_theora) {
+    if (decoderConfig.type == OggType::theora) {
       if (foundTheora == false) {
         foundTheora = true;
         StreamConfig encoderConfig;
@@ -579,7 +582,7 @@ int oggTranscodeCmd(int argc, char* argv[])
 
         /* grap the information extracted by the decoder */
         theoraDecoderConfig
-        = static_cast<TheoraStreamParameter*>(decoderConfig.parameter);
+          = static_cast<TheoraStreamParameter*>(decoderConfig.parameter);
 
         /* create a config for the output stream and keep a pointer */
         theoraEncoderConfig = new TheoraStreamParameter;
@@ -609,12 +612,12 @@ int oggTranscodeCmd(int argc, char* argv[])
 
       } else {
         logger.warning()
-        << "oggResize found more than one theora stream, only the first stream is handled\n";
+            << "oggResize found more than one theora stream, only the first stream is handled\n";
       }
       continue;
     }
 
-    if (decoderConfig.type == ogg_vorbis) {
+    if (decoderConfig.type == OggType::vorbis) {
       if (foundVorbis == false) {
         StreamConfig encoderConfig;
 
@@ -637,7 +640,7 @@ int oggTranscodeCmd(int argc, char* argv[])
 
         /* */
         vorbisDecoderConfig
-        = static_cast<VorbisStreamParameter*>(decoderConfig.parameter);
+          = static_cast<VorbisStreamParameter*>(decoderConfig.parameter);
 
         /* */
         encoderConfig.parameter = vorbisEncoderConfig;
@@ -660,7 +663,7 @@ int oggTranscodeCmd(int argc, char* argv[])
         streamCounter++;
       } else {
         logger.warning()
-        << "oggResize found more than one vorbis stream, only the first stream is handled\n";
+            << "oggResize found more than one vorbis stream, only the first stream is handled\n";
       }
       continue;
     }
@@ -671,14 +674,14 @@ int oggTranscodeCmd(int argc, char* argv[])
   /* configure stream hook */
 
   logger.info() << "Input Configuration: " << std::endl
-  << "-------------------- " << std::endl;
+                << "-------------------- " << std::endl;
 
   for (uint32 i(0); i< hookList.size(); ++i) {
     logger.info() << hookList[i]->decoderConfiguration() << std::endl;
   }
 
   logger.info() << "Output Configuration: " << std::endl
-  << "--------------------- " << std::endl;
+                << "--------------------- " << std::endl;
 
   for (uint32 i(0); i< hookList.size(); ++i) {
     logger.info() << hookList[i]->encoderConfiguration() << std::endl;
@@ -697,7 +700,7 @@ int oggTranscodeCmd(int argc, char* argv[])
 
     logger.info() << "  "<<time<<"        \r";
 
-    uint32 hookStreamID = streamMap[packet.getStreamNo()];
+    uint32 hookStreamID = streamMap[packet->getStreamNo()];
 
     if (hookStreamID == 255)
       continue;
diff --git a/src/effect/CMakeLists.txt b/src/effect/CMakeLists.txt
new file mode 100644
index 0000000..15b86cc
--- /dev/null
+++ b/src/effect/CMakeLists.txt
@@ -0,0 +1,18 @@
+SET ( LIBRARY_VIDEOEFFECT_SRC
+      effector.cpp
+      effectorTypes.cpp
+      effectorVisitor.cpp
+      crossfader.cpp
+      plainPicture.cpp
+      lowpassEffect.cpp
+      kenburnseffect.cpp
+      pictureResize.cpp
+      pictureBlend.cpp
+      pictureLoader.cpp
+      shiftEffect.cpp
+      shiftblendEffect.cpp
+      basePlane.cpp
+      rgbPlane.cpp
+      blendElement.cpp )
+
+ADD_LIBRARY ( ovteffect ${LIBRARY_VIDEOEFFECT_SRC} )
diff --git a/src/basePlane.cpp b/src/effect/basePlane.cpp
similarity index 80%
rename from src/basePlane.cpp
rename to src/effect/basePlane.cpp
index 62330b8..225aa5a 100644
--- a/src/basePlane.cpp
+++ b/src/effect/basePlane.cpp
@@ -12,12 +12,12 @@
 #include "basePlane.h"
 
 BasePlane::BasePlane()
-    : width(0), height(0), plane(0)
+  : width(0), height(0), plane(0)
 {
 }
 
 BasePlane::BasePlane(uint32 _width, uint32 _height, uint32 color)
-    : width(_width), height(_height), plane(new uint8[_height*_width*4])
+  : width(_width), height(_height), plane(new uint8[_height*_width*4])
 {
   uint32* ptr((uint32*)plane);
   for (uint32 i(0); i<(_height*_width); ++i)
diff --git a/src/basePlane.h b/src/effect/basePlane.h
similarity index 100%
rename from src/basePlane.h
rename to src/effect/basePlane.h
diff --git a/src/blendElement.cpp b/src/effect/blendElement.cpp
similarity index 71%
rename from src/blendElement.cpp
rename to src/effect/blendElement.cpp
index f23e432..42a3700 100644
--- a/src/blendElement.cpp
+++ b/src/effect/blendElement.cpp
@@ -15,15 +15,15 @@
 #include "pictureLoader.h"
 
 BlendElement::BlendElement()
-    :    startTime ( 0 ), endTime ( -1 ),
-    smooth ( false ), unavailable(true), state ( blend_off ), intensity ( 0.0 )
+  :    startTime ( 0 ), endTime ( -1 ),
+       smooth ( false ), unavailable(true), state ( blend_off ), intensity ( 0.0 )
 {
 }
 
 BlendElement::BlendElement ( const std::string& _pictureName, double _startTime, double _endTime,
                              bool _smooth ) :
-    pictureName ( _pictureName ), startTime ( _startTime ), endTime ( _endTime ),
-    smooth ( _smooth ), unavailable(true), state ( blend_off ), intensity ( 0.0 )
+  pictureName ( _pictureName ), startTime ( _startTime ), endTime ( _endTime ),
+  smooth ( _smooth ), unavailable(true), state ( blend_off ), intensity ( 0.0 )
 {
 }
 
diff --git a/src/blendElement.h b/src/effect/blendElement.h
similarity index 100%
rename from src/blendElement.h
rename to src/effect/blendElement.h
diff --git a/src/crossfader.cpp b/src/effect/crossfader.cpp
similarity index 86%
rename from src/crossfader.cpp
rename to src/effect/crossfader.cpp
index f78a5c5..26c2e07 100644
--- a/src/crossfader.cpp
+++ b/src/effect/crossfader.cpp
@@ -17,9 +17,10 @@
 #include "pictureBlend.h"
 #include "pictureResize.h"
 #include "log.h"
+#include "effectorVisitor.h"
 
 Crossfader::Crossfader()
-    : Effector(), state(unconfigured), framecounter(0)
+  : Effector(), state(unconfigured), framecounter(0)
 {
 }
 
@@ -49,8 +50,8 @@ void Crossfader::configure(CrossfaderConfig& _config)
   /* resize the picture to the correct size */
   presentationPlane = PictureResize::reframe(config.origPlane, config.outputWidth, config.outputHeight);
 
-  logger.debug() << "Picture size: "<< presentationPlane->width<<" x "<<presentationPlane->width
-  <<"  -> frame size "<<config.outputWidth <<" x "<<config.outputHeight<<std::endl;
+  logger.debug() << "Picture size: "<< presentationPlane->width<<" x "<<presentationPlane->height
+                 <<"  -> frame size "<<config.outputWidth <<" x "<<config.outputHeight<<std::endl;
 
   if (config.first)
     state = presentation;
@@ -90,6 +91,11 @@ bool Crossfader::available()
   return((state!=unavailable) && (state!=unconfigured));
 }
 
+void Crossfader::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
+
 Effector & Crossfader::operator >>(RGBPlane & plane)
 {
 
diff --git a/src/crossfader.h b/src/effect/crossfader.h
similarity index 94%
copy from src/crossfader.h
copy to src/effect/crossfader.h
index 98b3ee7..2ea719c 100644
--- a/src/crossfader.h
+++ b/src/effect/crossfader.h
@@ -62,6 +62,8 @@ public:
 
   virtual bool available();
 
+  virtual void accept(EffectorVisitor& visitor) const;
+
 };
 
 #endif
diff --git a/src/effector.cpp b/src/effect/effector.cpp
similarity index 100%
rename from src/effector.cpp
rename to src/effect/effector.cpp
diff --git a/src/effector.h b/src/effect/effector.h
similarity index 79%
rename from src/effector.h
rename to src/effect/effector.h
index 29de7f5..1f6449d 100644
--- a/src/effector.h
+++ b/src/effect/effector.h
@@ -13,6 +13,10 @@
 #define EFFECTOR_H
 
 #include "rgbPlane.h"
+
+// Forward declaration
+class EffectorVisitor;
+
 /**
 	@author Yorn <yorn at gmx.net>
 */
@@ -28,6 +32,8 @@ public:
 
   virtual bool available() = 0;
 
+  virtual void accept(EffectorVisitor& visitor) const = 0;
+
 };
 
 #endif
diff --git a/src/effect/effectorTypes.cpp b/src/effect/effectorTypes.cpp
new file mode 100644
index 0000000..f7d8792
--- /dev/null
+++ b/src/effect/effectorTypes.cpp
@@ -0,0 +1,60 @@
+//
+// C++ Implementation: effectortypes
+//
+// Description:
+//
+//
+// Copyright (C) 2010  Bjarne Juul Pasgaard <bjvest at users.sourceforge.net>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+// USA.
+
+#include "effectorTypes.h"
+
+EffectorType GetEffectorType::operator()(const Effector& effector)
+{
+  effector.accept(*this);
+  return t;
+}
+
+void GetEffectorType::visit(const KenBurnsEffect&)
+{
+  t = KenBurns;
+}
+
+void GetEffectorType::visit(const Crossfader&)
+{
+  t = Crossfade;
+}
+
+void GetEffectorType::visit(const LowpassEffect&)
+{
+  t = Blur;
+}
+
+void GetEffectorType::visit(const PlainPicture&)
+{
+  t = Plain;
+}
+
+void GetEffectorType::visit(const ShiftEffect&)
+{
+  t = Shift;
+}
+
+void GetEffectorType::visit(const ShiftblendEffect&)
+{
+  t = ShiftBlend;
+}
diff --git a/src/effect/effectorTypes.h b/src/effect/effectorTypes.h
new file mode 100644
index 0000000..691eaa8
--- /dev/null
+++ b/src/effect/effectorTypes.h
@@ -0,0 +1,83 @@
+//
+// C++ Interface: effectortypes
+//
+// Description:
+// Enumeration of effector types and a a specialized EffectorVisitor that
+// allows for a more effective effector type detection than dynamic_cast<>.
+//
+// Copyright (C) 2010  Bjarne Juul Pasgaard <bjvest at users.sourceforge.net>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+// USA.
+
+#ifndef EFFECTORTYPES_H
+#define EFFECTORTYPES_H
+
+#include "effector.h"
+#include "effectorVisitor.h"
+
+/// @brief Enumeration of the available effector types.
+enum EffectorType {
+  KenBurns,   ///< Ken Burns effect
+  Crossfade,  ///< Cross fading
+  Plain,      ///< Plain pictures
+  Blur,       ///< Bluring at changeover
+  Shift,      ///< Shift left effect
+  ShiftBlend  ///< Shift and blend left effect
+};
+
+// Forward declarations
+class KenBurnsEffect;
+class Crossfader;
+class LowpassEffect;
+class PlainPicture;
+class ShiftEffect;
+class ShiftblendEffect;
+
+/// @brief A functor that determines the type of an
+///        effector specialization.
+///
+/// This is an alternative to dynamic_cast<>, but is often
+/// far more effective and has the advantage of a known
+/// constant-time complexity (in contrast to dynamic_cast<>).
+class GetEffectorType : protected EffectorVisitor {
+public:
+
+  /// @brief The entry point of the functor.
+  ///
+  /// @param effector The effector to determine the type of.
+  ///
+  /// @return The type of the supplied effector.
+  EffectorType operator()(const Effector& effector);
+
+  virtual ~GetEffectorType() {}
+
+protected:
+
+  // Overridden base class methods
+  virtual void visit(const KenBurnsEffect&);
+  virtual void visit(const Crossfader&);
+  virtual void visit(const LowpassEffect&);
+  virtual void visit(const PlainPicture&);
+  virtual void visit(const ShiftEffect&);
+  virtual void visit(const ShiftblendEffect&);
+
+protected:
+
+  EffectorType t;
+
+};
+
+#endif
diff --git a/src/effect/effectorVisitor.cpp b/src/effect/effectorVisitor.cpp
new file mode 100644
index 0000000..056b31d
--- /dev/null
+++ b/src/effect/effectorVisitor.cpp
@@ -0,0 +1,48 @@
+//
+// C++ Implementation: effectorvisitor
+//
+// Description:
+//
+//
+// Copyright (C) 2010  Bjarne Juul Pasgaard <bjvest at users.sourceforge.net>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+// USA.
+
+#include "effectorVisitor.h"
+
+void EffectorVisitor::visit(const KenBurnsEffect&)
+{
+}
+
+void EffectorVisitor::visit(const Crossfader&)
+{
+}
+
+void EffectorVisitor::visit(const LowpassEffect&)
+{
+}
+
+void EffectorVisitor::visit(const PlainPicture&)
+{
+}
+
+void EffectorVisitor::visit(const ShiftEffect&)
+{
+}
+
+void EffectorVisitor::visit(const ShiftblendEffect&)
+{
+}
diff --git a/src/effect/effectorVisitor.h b/src/effect/effectorVisitor.h
new file mode 100644
index 0000000..8e48a8b
--- /dev/null
+++ b/src/effect/effectorVisitor.h
@@ -0,0 +1,54 @@
+//
+// C++ Interface: effectorvisitor
+//
+// Description:
+// A visitor (in accordance with the visitor design patter) for
+// specializations of the Effector class.
+//
+// Copyright (C) 2010  Bjarne Juul Pasgaard <bjvest at users.sourceforge.net>
+//
+// This program is free software; you can redistribute it and/or
+// modify it under the terms of the GNU General Public License
+// as published by the Free Software Foundation; either version 2
+// of the License, or (at your option) any later version.
+//
+// This program is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with this program; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301,
+// USA.
+
+#ifndef EFFECTORVISITOR_H
+#define EFFECTORVISITOR_H
+
+// Forward declarations
+class KenBurnsEffect;
+class Crossfader;
+class LowpassEffect;
+class PlainPicture;
+class ShiftEffect;
+class ShiftblendEffect;
+
+/// @brief A visitor of Effector specialisations
+///
+/// This class takes the role of a visitor in accordance with the
+/// visitor design pattern.
+class EffectorVisitor {
+public:
+
+  virtual ~EffectorVisitor() {};
+
+  virtual void visit(const KenBurnsEffect&);
+  virtual void visit(const Crossfader&);
+  virtual void visit(const LowpassEffect&);
+  virtual void visit(const PlainPicture&);
+  virtual void visit(const ShiftEffect&);
+  virtual void visit(const ShiftblendEffect&);
+
+};
+
+#endif
diff --git a/src/kenburnseffect.cpp b/src/effect/kenburnseffect.cpp
similarity index 97%
rename from src/kenburnseffect.cpp
rename to src/effect/kenburnseffect.cpp
index 119bfe4..d8fcd30 100644
--- a/src/kenburnseffect.cpp
+++ b/src/effect/kenburnseffect.cpp
@@ -19,9 +19,10 @@
 #include "pictureResize.h"
 #include "pictureBlend.h"
 #include "log.h"
+#include "effectorVisitor.h"
 
 KenBurnsEffect::KenBurnsEffect() :
-    Effector(), state(unconfigured)
+  Effector(), state(unconfigured)
 {
 }
 
@@ -141,6 +142,11 @@ bool KenBurnsEffect::available()
   return ((state != unavailable) && (state != unconfigured));
 }
 
+void KenBurnsEffect::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
+
 Effector & KenBurnsEffect::operator >>(RGBPlane & plane)
 {
   switch (state) {
@@ -271,7 +277,7 @@ KenBurnsEffect::KenBurnsConfig KenBurnsEffect::createKBconfigPredefine(
         predefine -= 8;
       } else {
         logger.error() << "Predefine No. <" << predefine
-        << "> not available\n";
+                       << "> not available\n";
         exit(-1);
       }
     }
@@ -279,7 +285,7 @@ KenBurnsEffect::KenBurnsConfig KenBurnsEffect::createKBconfigPredefine(
 
 #ifdef DEBUG
   logger.error()<< "Zooming (" << maxZoomfactor << ") from factor "
-  << config.zoomStart << " to " << config.zoomEnd << std::endl;
+                << config.zoomStart << " to " << config.zoomEnd << std::endl;
 #endif
 
   float availableXStart = pictureWidth - frameWidth * config.zoomStart;
diff --git a/src/kenburnseffect.h b/src/effect/kenburnseffect.h
similarity index 96%
rename from src/kenburnseffect.h
rename to src/effect/kenburnseffect.h
index 2a0c259..948902c 100644
--- a/src/kenburnseffect.h
+++ b/src/effect/kenburnseffect.h
@@ -78,6 +78,7 @@ public:
 
   virtual Effector& operator>>(RGBPlane& plane);
   virtual bool available();
+  virtual void accept(EffectorVisitor& visitor) const;
 
   static KenBurnsConfig createKBconfigRandom(RGBPlane& plane, uint32 pictureWidth, uint32 pictureHeight, uint32 frameWidth, uint32 frameHeight, uint32 sequenceLength, uint32 blindLength);
   static KenBurnsConfig createKBconfigPredefine(RGBPlane& plane, uint32 pictureWidth, uint32 pictureHeight, uint32 frameWidth, uint32 frameHeight, uint32 sequenceLength, uint32 blindLength, uint32 predefine);
diff --git a/src/lowpassEffect.cpp b/src/effect/lowpassEffect.cpp
similarity index 94%
rename from src/lowpassEffect.cpp
rename to src/effect/lowpassEffect.cpp
index 838489b..c92a85e 100644
--- a/src/lowpassEffect.cpp
+++ b/src/effect/lowpassEffect.cpp
@@ -16,9 +16,10 @@
 
 #include "pictureResize.h"
 #include "log.h"
+#include "effectorVisitor.h"
 
 LowpassEffect::LowpassEffect()
-    : state(unconfigured)
+  : state(unconfigured)
 {
 }
 
@@ -128,4 +129,7 @@ bool LowpassEffect::available()
   return((state != unavailable) && (state != unconfigured));
 }
 
-
+void LowpassEffect::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
diff --git a/src/lowpassEffect.h b/src/effect/lowpassEffect.h
similarity index 95%
rename from src/lowpassEffect.h
rename to src/effect/lowpassEffect.h
index 662230b..0d84dcc 100644
--- a/src/lowpassEffect.h
+++ b/src/effect/lowpassEffect.h
@@ -66,6 +66,8 @@ public:
 
   virtual bool available();
 
+  virtual void accept(EffectorVisitor& visitor) const;
+
 };
 
 
diff --git a/src/pictureBlend.cpp b/src/effect/pictureBlend.cpp
similarity index 99%
rename from src/pictureBlend.cpp
rename to src/effect/pictureBlend.cpp
index 8673ed1..bfca8dd 100644
--- a/src/pictureBlend.cpp
+++ b/src/effect/pictureBlend.cpp
@@ -95,7 +95,6 @@ RGBPlane PictureBlend::alphaBlend(RGBPlane& origPlane, RGBPlane & alphaPlane, fl
         positionAlpha = 4*(j*alphaPlane->width+i);
 
         factor = intensity*((127-alphaPlane->plane[positionAlpha+3])*1.0)/127.0;
-
         for (uint32 k(0); k<3; ++k) {
           pixel1 = origPlane->plane[position+k];
           pixel2 = alphaPlane->plane[positionAlpha+k];
diff --git a/src/pictureBlend.h b/src/effect/pictureBlend.h
similarity index 100%
rename from src/pictureBlend.h
rename to src/effect/pictureBlend.h
diff --git a/src/pictureLoader.cpp b/src/effect/pictureLoader.cpp
similarity index 97%
rename from src/pictureLoader.cpp
rename to src/effect/pictureLoader.cpp
index f7d10a1..0242853 100644
--- a/src/pictureLoader.cpp
+++ b/src/effect/pictureLoader.cpp
@@ -11,7 +11,6 @@
 //
 #include "pictureLoader.h"
 
-#include <gd.h>
 #include <iostream>
 #include <cstring>
 #include <errno.h>
@@ -32,7 +31,7 @@ PictureLoader::~PictureLoader()
 {
 }
 
-
+#ifdef WITH_GD2LIB
 bool PictureLoader::load(RGBPlane& retPlane, const std::string& filename, uint32 _width, uint32 _height,
                          bool useBiggest)
 {
@@ -49,7 +48,7 @@ bool PictureLoader::load(RGBPlane& retPlane, const std::string& filename, uint32
 
   if (in == 0) {
     logger.error() << "PictureLoader::load: Cannot open file <"<<filename<<">: "
-    << strerror(errno) << "\n";
+                   << strerror(errno) << "\n";
     return(false);
   }
 
@@ -81,7 +80,7 @@ bool PictureLoader::load(RGBPlane& retPlane, const std::string& filename, uint32
 
 #ifdef DEBUG
     logger.debug() << "wanted: "<<_width<<"x"<<_height<<"  orig: "
-    <<origWidth<<"x"<<origHeight<<std::endl;
+                   <<origWidth<<"x"<<origHeight<<std::endl;
 #endif
 
     if (useBiggest) {
@@ -97,8 +96,8 @@ bool PictureLoader::load(RGBPlane& retPlane, const std::string& filename, uint32
     }
 #ifdef DEBUG
     logger.debug() << "recalculating ("<<factor<<") image to "
-    <<(uint32) (origWidth*factor+0.5)<< "x"
-    << (uint32) (origHeight*factor+0.5)<<std::endl;
+                   <<(uint32) (origWidth*factor+0.5)<< "x"
+                   << (uint32) (origHeight*factor+0.5)<<std::endl;
 #endif
 
     gdImagePtr resampled = gdImageCreateTrueColor((uint32) (origWidth
@@ -183,7 +182,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
   SuffixType type = identifySuffix(filename);
   if (type == suffix_unknown) {
     logger.error() << "PictureLoader::identifySuffix: Cannot identify suffix of <"
-    << filename << ">\n";
+                   << filename << ">\n";
     return(false);
   }
 
@@ -205,7 +204,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
   FILE* out = fopen(filename.c_str(), "wb");
   if (out == 0) {
     logger.error() << "PictureLoader::save: Cannot open file <"<<filename<<">: "
-    << strerror(errno) << "\n";
+                   << strerror(errno) << "\n";
     return(false);
   }
 
@@ -236,7 +235,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
       gdImagePng(resampled, out);
       break;
 
-      //    case suffix_gif:
+    //    case suffix_gif:
 
     default:
       logger.error() << "cannot identify suffix\n";
@@ -257,7 +256,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
       gdImagePng(im, out);
       break;
 
-      //    case suffix_gif:
+    //    case suffix_gif:
 
     default:
       logger.error() << "cannot identify suffix\n";
@@ -269,7 +268,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
   /* Close file */
   if (fclose(out) != 0) {
     logger.error() << "Error writing file <" << filename << ">: "
-    << strerror(errno) << "\n";
+                   << strerror(errno) << "\n";
     gdImageDestroy(im);
     return(false);
   }
@@ -279,6 +278,7 @@ bool PictureLoader::save(RGBPlane& pic, const std::string& filename, uint32 newW
 
   return (true);
 }
+#endif //WITH_GD2LIB
 
 #ifdef HAVE_LIBTHEORAENC
 
diff --git a/src/pictureLoader.h b/src/effect/pictureLoader.h
similarity index 94%
rename from src/pictureLoader.h
rename to src/effect/pictureLoader.h
index f109ae9..0bfdb46 100644
--- a/src/pictureLoader.h
+++ b/src/effect/pictureLoader.h
@@ -15,7 +15,10 @@
 #include <string>
 
 #include "rgbPlane.h"
+
+#ifdef WITH_GD2LIB
 #include <gd.h>
+#endif
 
 #ifdef HAVE_LIBTHEORAENC
 #include <theora/codec.h>
@@ -34,8 +37,10 @@ protected:
     suffix_gif
   };
 
+#ifdef WITH_GD2LIB
   static RGBPlane convertToRgbPlane(gdImagePtr im);
   static SuffixType identifySuffix(const std::string& filename);
+#endif
 
 public:
 
@@ -43,8 +48,10 @@ public:
 
   virtual ~PictureLoader();
 
+#ifdef WITH_GD2LIB
   static bool load(RGBPlane& retPlane, const std::string& filename, uint32 width=0, uint32 height=0, bool useBiggest = true);
   static bool save(RGBPlane& pic, const std::string& filename, uint32 width=0, uint32 height=0);
+#endif
 
 #ifdef HAVE_LIBTHEORAENC
   static void exportYCrCb_theora(RGBPlane& plane, th_ycbcr_buffer& buffer, int pixel_format=TH_PF_420);
diff --git a/src/pictureResize.cpp b/src/effect/pictureResize.cpp
similarity index 74%
rename from src/pictureResize.cpp
rename to src/effect/pictureResize.cpp
index 0cbb697..fe29349 100644
--- a/src/pictureResize.cpp
+++ b/src/effect/pictureResize.cpp
@@ -14,6 +14,7 @@
 #include <cmath>
 #include <iostream>
 #include <cstdlib>
+#include <cstring>
 #include "exception.h"
 #include "log.h"
 
@@ -63,8 +64,8 @@ uint32 PictureResize::calculateKernelValue(RGBPlane& pic, float posX,
 
   if (p) {
     logger.debug() << "kernel calculation at position "<<posX<<" x "<<posY
-    <<" rad "<<radius <<" kerne "<<xStart<<"x"<<yStart<<"->"<<xEnd
-    <<"x"<<yEnd<<" \n";
+                   <<" rad "<<radius <<" kerne "<<xStart<<"x"<<yStart<<"->"<<xEnd
+                   <<"x"<<yEnd<<" \n";
   }
 #endif
 
@@ -85,8 +86,8 @@ uint32 PictureResize::calculateKernelValue(RGBPlane& pic, float posX,
 #ifdef DEBUG
         if (p) {
           logger.debug() << "     Pos: "<<j<<" x "<<i<<" -> distance "
-          <<tmpDistance <<"radius: "<<radius<<" weight: "
-          <<tmpWeight << " - UNCOUNTED   ";
+                         <<tmpDistance <<"radius: "<<radius<<" weight: "
+                         <<tmpWeight << " - UNCOUNTED   ";
         }
         counter1++;
 #endif
@@ -101,17 +102,17 @@ uint32 PictureResize::calculateKernelValue(RGBPlane& pic, float posX,
 #ifdef DEBUG
       if (p) {
         logger.debug() << "     Pos: "<<j<<" x "<<i<<" -> distance "
-        <<tmpDistance <<"radius: "<<radius<<" weight: "
-        <<tmpWeight;
+                       <<tmpDistance <<"radius: "<<radius<<" weight: "
+                       <<tmpWeight;
       }
 
       if (position > 4*pic->width*pic->height) {
         logger.error() << "Error: calculating for Position "<<posX<<" x "
-        <<posY<<" at kernel position "<<j<<" x "<<i
-        <<"  with radius "<<radius<<" \n";
+                       <<posY<<" at kernel position "<<j<<" x "<<i
+                       <<"  with radius "<<radius<<" \n";
         logger.error() << "Picture size: "<<pic->width << " x "
-        << pic->height<<"    Kernel window: "<<xStart <<":"
-        <<yStart<<" -> "<<xEnd<<":"<<yEnd<<"\n";
+                       << pic->height<<"    Kernel window: "<<xStart <<":"
+                       <<yStart<<" -> "<<xEnd<<":"<<yEnd<<"\n";
         abort();
       }
 #endif
@@ -183,8 +184,8 @@ uint32 PictureResize::calculateKernelValueFix(RGBPlane& pic, float posX,
 
   if (p) {
     logger.debug() << "kernel calculation at position "<<posXF<<" x "<<posYF
-    <<" rad "<<radiusF <<" kerne "<<xStart<<"x"<<yStart<<"->"<<xEnd
-    <<"x"<<yEnd<<" \n";
+                   <<" rad "<<radiusF <<" kerne "<<xStart<<"x"<<yStart<<"->"<<xEnd
+                   <<"x"<<yEnd<<" \n";
   }
 #endif
 
@@ -214,8 +215,8 @@ uint32 PictureResize::calculateKernelValueFix(RGBPlane& pic, float posX,
 #ifdef DEBUG
       if (p) {
         logger.debug() << "     Pos: "<<j<<" x "<<i<<" -> distance "
-        <<tmpDistance <<" radius: "<<radiusF<<" weight: "
-        <<tmpWeight << " - UNCOUNTED   ";
+                       <<tmpDistance <<" radius: "<<radiusF<<" weight: "
+                       <<tmpWeight << " - UNCOUNTED   ";
       }
       counter1++;
 #endif
@@ -225,8 +226,8 @@ uint32 PictureResize::calculateKernelValueFix(RGBPlane& pic, float posX,
 #ifdef DEBUG
     if (p) {
       logger.debug() << "     Pos: "<<j<<" x "<<i<<" -> distance "
-      <<tmpDistance <<" radius: "<<radiusF<<" weight: "
-      <<tmpWeight;
+                     <<tmpDistance <<" radius: "<<radiusF<<" weight: "
+                     <<tmpWeight;
     }
 #endif
 
@@ -235,11 +236,11 @@ uint32 PictureResize::calculateKernelValueFix(RGBPlane& pic, float posX,
 #ifdef DEBUG
     if (position > 4*pic->width*pic->height) {
       logger.debug() << "Error: calculating for Position "<<posX<<" x "<<posY
-      <<" at kernel position "<<j<<" x "<<i<<"  with radius "
-      <<radiusF<<" \n";
+                     <<" at kernel position "<<j<<" x "<<i<<"  with radius "
+                     <<radiusF<<" \n";
       logger.debug() << "Picture size: "<<pic->width << " x "<< pic->height
-      <<"    Kernel window: "<<xStart <<":"<<yStart<<" -> "<<xEnd
-      <<":"<<yEnd<<"\n";
+                     <<"    Kernel window: "<<xStart <<":"<<yStart<<" -> "<<xEnd
+                     <<":"<<yEnd<<"\n";
       abort();
     }
 #endif
@@ -424,6 +425,27 @@ uint32 PictureResize::linearInterpolation(RGBPlane pic, float x, float y)
 
   RGB[2] = (uint8)endpoint;
 
+  /* ALPHA */
+
+  value_x1y1 = pic->plane[pixelDistance*(pos_y1*pic->width+pos_x1)+3];
+  value_x1y2 = pic->plane[pixelDistance*(pos_y2*pic->width+pos_x1)+3];
+  value_x2y1 = pic->plane[pixelDistance*(pos_y1*pic->width+pos_x2)+3];
+  value_x2y2 = pic->plane[pixelDistance*(pos_y2*pic->width+pos_x2)+3];
+
+  inter_x1y1_x1y2 = (value_x1y2-value_x1y1)*part_y + value_x1y1;
+  inter_x2y1_x2y2 = (value_x2y2-value_x2y1)*part_y + value_x2y1;
+
+  endpoint = (inter_x2y1_x2y2 - inter_x1y1_x1y2) * part_x + inter_x1y1_x1y2
+             + 0.5;
+
+  if (endpoint > 255)
+    endpoint = 255;
+
+  if (endpoint < 0)
+    endpoint = 0;
+
+  RGB[3] = (uint8)endpoint;
+
   return (retValue);
 
 }
@@ -445,9 +467,9 @@ RGBPlane PictureResize::resize(RGBPlane& picture, uint32 width, uint32 height,
 
 #ifdef DEBUG
   logger.debug() << "Resizing from "<<picture->width<<" : "<<picture->height
-  <<"  to  "<<retPlane->width<<" : "<<retPlane->height<<"\n";
+                 <<"  to  "<<retPlane->width<<" : "<<retPlane->height<<"\n";
   logger.debug() << "using resizefactor "<<resizeFactorX<<" : "<<resizeFactorY
-  <<"  with radius "<<radius<<"\n";
+                 <<"  with radius "<<radius<<"\n";
 #endif
   bool p(false);
 
@@ -466,8 +488,8 @@ RGBPlane PictureResize::resize(RGBPlane& picture, uint32 width, uint32 height,
 #endif
 
         ((uint32*)(retPlane->plane))[j+heightAddition]
-        = calculateKernelValue(picture, j *resizeFactorX, i
-                               *resizeFactorY, radius, p);
+          = calculateKernelValue(picture, j *resizeFactorX, i
+                                 *resizeFactorY, radius, p);
       }
     }
   } else {
@@ -486,8 +508,8 @@ RGBPlane PictureResize::resize(RGBPlane& picture, uint32 width, uint32 height,
 #endif
 
         ((uint32*)(retPlane->plane))[j+heightAddition]
-        = linearInterpolation(picture, j *resizeFactorX, i
-                              *resizeFactorY);
+          = linearInterpolation(picture, j *resizeFactorX, i
+                                *resizeFactorY);
       }
     }
   }
@@ -545,6 +567,9 @@ RGBPlane PictureResize::reframe(RGBPlane & picture, uint32 width,
   if ((picture->width == width) && (picture->height == height))
     return (picture);
 
+  if (((picture->width == width) || (picture->height == height)) && aspectCorrection > 0.999 && aspectCorrection < 1.0001 )
+    return reframe_fixed(picture, width, height, background);
+
   RGBPlane newPlane(width, height);
 
   uint32 planesize(width*height);
@@ -578,7 +603,7 @@ RGBPlane PictureResize::reframe(RGBPlane & picture, uint32 width,
 
 #ifdef DEBUG
   logger.debug() << "Reframe - OffsetX: "<<offsetX<<" OffsetY: "<<offsetY
-  <<" resize : "<<resizeFactor<<std::endl;
+                 <<" resize : "<<resizeFactor<<std::endl;
 #endif
 
   uint32 position_new;
@@ -597,8 +622,8 @@ RGBPlane PictureResize::reframe(RGBPlane & picture, uint32 width,
     for (uint32 j(offsetX); j <(newPlane->width-offsetX); ++j) {
       position_new = (((float)i)*newPlane->width+j);
       ((uint32*)(newPlane->plane))[position_new]
-      = calculateKernelValue(picture, resizePlaneCounterX,
-                             resizePlaneCounterY, radius);
+        = calculateKernelValue(picture, resizePlaneCounterX,
+                               resizePlaneCounterY, radius);
       resizePlaneCounterX += (resizeFactor/aspectCorrection);
     }
     resizePlaneCounterY += resizeFactor;
@@ -608,6 +633,43 @@ RGBPlane PictureResize::reframe(RGBPlane & picture, uint32 width,
   return (newPlane);
 }
 
+RGBPlane PictureResize::reframe_fixed(RGBPlane & picture, uint32 width,
+                                      uint32 height, uint32 background)
+{
+  std::cout << "fixed reframe (from " << picture->width <<":"<<picture->height<<" to " << width << ":"<<height<<")  \n";
+  if (picture->width > width || picture->height > height)
+    throw OggException("picture too big");
+
+  if ((picture->width == width) && (picture->height == height))
+    return (picture);
+
+  RGBPlane newPlane(width, height);
+
+  uint32 planesize(width*height);
+
+  // fill the plane with the given background
+  uint32* plPtr((uint32*)(newPlane->plane));
+  for (uint32 i(0); i<planesize; ++i)
+    plPtr[i] = background;
+  // setBackground
+
+  uint32* plPtrOrig((uint32*)(picture->plane));
+  uint32 offsetX((width - picture->width)/2);
+  uint32 offsetY((height - picture->height)/2);
+
+  std::cout << "offset: X=" << offsetX << "  offset Y=" << offsetY << std::endl;
+
+  for (uint32 i(0); i<picture->height; ++i) {
+    uint heightAddNew = (i+offsetY)*width;
+    uint heightAddOrig = i*picture->width;
+    for (uint32 j(0); j < picture->width; ++j) {
+      plPtr[heightAddNew+offsetX+j] = plPtrOrig[heightAddOrig+j];
+    }
+  }
+
+  return (newPlane);
+}
+
 RGBPlane PictureResize::subframe(RGBPlane & picture, uint32 newWidth,
                                  uint32 newHeight, float offsetWidth, float offsetHeight,
                                  float scaleFactor, uint8 quality)
@@ -616,13 +678,13 @@ RGBPlane PictureResize::subframe(RGBPlane & picture, uint32 newWidth,
   if (((((float)newWidth)/scaleFactor)+offsetWidth> picture->width)
       || ((((float)newHeight) /scaleFactor)+offsetHeight> picture->height)) {
     logger.error() << "new width: "<<newWidth<<" / "<<scaleFactor<<" + "
-    <<offsetWidth << " = " << (((float)newWidth)/scaleFactor)
-    +offsetWidth <<" must be smaller then "<<picture->width
-    <<std::endl;
+                   <<offsetWidth << " = " << (((float)newWidth)/scaleFactor)
+                   +offsetWidth <<" must be smaller then "<<picture->width
+                   <<std::endl;
     logger.error() << "new width: "<<newHeight<<" / "<< scaleFactor<<" + "
-    <<offsetHeight << " = " <<(((float)newHeight)/scaleFactor)
-    +offsetHeight <<" must be smaller then "<<picture->height
-    <<std::endl;
+                   <<offsetHeight << " = " <<(((float)newHeight)/scaleFactor)
+                   +offsetHeight <<" must be smaller then "<<picture->height
+                   <<std::endl;
     throw OggException("PicConverter::subPic: new width/height is/are to big");
   }
 
@@ -642,9 +704,9 @@ RGBPlane PictureResize::subframe(RGBPlane & picture, uint32 newWidth,
       heightAddition = i*newWidth;
       for (uint32 j(0); j < newWidth; ++j) {
         ((uint32*)(retPlane->plane))[j+heightAddition]
-        = calculateKernelValue(picture, ((float)j)
-                               *resizeFactor+offsetWidth, ((float)i)
-                               *resizeFactor+offsetHeight, radius);
+          = calculateKernelValue(picture, ((float)j)
+                                 *resizeFactor+offsetWidth, ((float)i)
+                                 *resizeFactor+offsetHeight, radius);
 
       }
     }
@@ -653,9 +715,9 @@ RGBPlane PictureResize::subframe(RGBPlane & picture, uint32 newWidth,
       heightAddition = i*newWidth;
       for (uint32 j(0); j < newWidth; ++j) {
         ((uint32*)(retPlane->plane))[j+heightAddition]
-        = linearInterpolation(picture, ((float)j) *resizeFactor
-                              +offsetWidth, ((float)i)*resizeFactor
-                              +offsetHeight);
+          = linearInterpolation(picture, ((float)j) *resizeFactor
+                                +offsetWidth, ((float)i)*resizeFactor
+                                +offsetHeight);
 
       }
     }
@@ -666,3 +728,30 @@ RGBPlane PictureResize::subframe(RGBPlane & picture, uint32 newWidth,
 
 }
 
+RGBPlane PictureResize::concatenate(RGBPlane& picture1, RGBPlane& picture2, RGBPlane& picture3)
+{
+  if (picture1.getHeight() != picture2.getHeight()) {
+
+    logger.error()
+        << picture1.getHeight() <<" " <<picture2.getHeight();
+    throw(OggException("Height of picture 1 and 2 do not match"));
+  }
+
+  if (picture1.getWidth() != picture2.getWidth()) {
+    throw(OggException("Width of picture 1 and 2 do not match"));
+  }
+
+  RGBPlane retPlane(picture1.getWidth()*2, picture1.getHeight(), 0xffffffff);
+
+  uint32 width = picture1.getWidth();
+  for (uint32 hcnt(0); hcnt<picture1.getHeight(); ++hcnt) {
+    uint32* retRgbaPlane = ((uint32*)retPlane->plane)+width*hcnt*2;
+    uint32* pic1RgbaPlane = ((uint32*)picture1->plane)+width*hcnt;
+    uint32* pic2RgbaPlane = ((uint32*)picture2->plane)+width*hcnt;
+    memcpy(retRgbaPlane, pic1RgbaPlane, width*sizeof(uint32));
+    memcpy(retRgbaPlane+width, pic2RgbaPlane, width*sizeof(uint32));
+  }
+
+  return retPlane;
+}
+
diff --git a/src/pictureResize.h b/src/effect/pictureResize.h
similarity index 89%
rename from src/pictureResize.h
rename to src/effect/pictureResize.h
index 210aa7c..42b32d9 100644
--- a/src/pictureResize.h
+++ b/src/effect/pictureResize.h
@@ -46,8 +46,12 @@ public:
   //! Method keeps the aspect ratio during resize
   static RGBPlane reframe(RGBPlane& picture, uint32 width, uint32 height, uint8 quality=1, uint32 background=0, double aspectCorrection=1);
 
+  static RGBPlane reframe_fixed(RGBPlane & picture, uint32 width, uint32 height, uint32 background);
+
   static RGBPlane subframe(RGBPlane& picture, uint32 newWidth, uint32 newHeight, float offsetWidth, float offsetHeight, float resizeFactor, uint8 quality=1);
 
+  static RGBPlane concatenate(RGBPlane& picture1, RGBPlane& picture2, RGBPlane& picture3);
+
 };
 
 #endif
diff --git a/src/plainPicture.cpp b/src/effect/plainPicture.cpp
similarity index 85%
rename from src/plainPicture.cpp
rename to src/effect/plainPicture.cpp
index bbde1db..7bc6ffc 100644
--- a/src/plainPicture.cpp
+++ b/src/effect/plainPicture.cpp
@@ -16,9 +16,10 @@
 #include "pictureLoader.h"
 #include <cstdlib>
 #include "log.h"
+#include "effectorVisitor.h"
 
 PlainPicture::PlainPicture()
-    : Effector(), state(unconfigured), framecounter(0)
+  : Effector(), state(unconfigured), framecounter(0)
 {
 }
 
@@ -50,7 +51,7 @@ void PlainPicture::configure(PlainPictureConfig & _config)
   config = _config;
 
   logger.debug() << "PlanePicture::configure: "<< config.origPlane->width << "x" << config.origPlane->height<<" -> "
-  <<config.outputWidth<<"x"<<config.outputHeight<<std::endl;
+                 <<config.outputWidth<<"x"<<config.outputHeight<<std::endl;
 
   /* resize the picture to the correct size */
   if ((config.origPlane->width != config.outputWidth) || (config.origPlane->height != config.outputHeight)) {
@@ -71,4 +72,7 @@ bool PlainPicture::available()
 
 }
 
-
+void PlainPicture::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
diff --git a/src/plainPicture.h b/src/effect/plainPicture.h
similarity index 93%
rename from src/plainPicture.h
rename to src/effect/plainPicture.h
index ef99e33..acfd5c2 100644
--- a/src/plainPicture.h
+++ b/src/effect/plainPicture.h
@@ -56,6 +56,8 @@ public:
 
   virtual bool available();
 
+  virtual void accept(EffectorVisitor& visitor) const;
+
 };
 
 #endif
diff --git a/src/rgbPlane.cpp b/src/effect/rgbPlane.cpp
similarity index 83%
rename from src/rgbPlane.cpp
rename to src/effect/rgbPlane.cpp
index 9013314..75a24c3 100644
--- a/src/rgbPlane.cpp
+++ b/src/effect/rgbPlane.cpp
@@ -22,7 +22,7 @@ RGBPlane::~RGBPlane()
 }
 
 RGBPlane::RGBPlane(uint32 width, uint32 height, uint32 color)
-    : RefObject<BasePlane>(new BasePlane(width, height, color))
+  : RefObject<BasePlane>(new BasePlane(width, height, color))
 {
 }
 
diff --git a/src/rgbPlane.h b/src/effect/rgbPlane.h
similarity index 88%
rename from src/rgbPlane.h
rename to src/effect/rgbPlane.h
index 1cf1e0f..4cb4d2b 100644
--- a/src/rgbPlane.h
+++ b/src/effect/rgbPlane.h
@@ -30,10 +30,12 @@ public:
 
   virtual ~RGBPlane();
 
-  const uint32 getWidth() const {
+  const uint32 getWidth() const
+  {
     return objPtr->width;
   }
-  const uint32 getHeight() const {
+  const uint32 getHeight() const
+  {
     return objPtr->height;
   }
 
diff --git a/src/effect/shiftEffect.cpp b/src/effect/shiftEffect.cpp
new file mode 100644
index 0000000..962c806
--- /dev/null
+++ b/src/effect/shiftEffect.cpp
@@ -0,0 +1,136 @@
+/*
+ * shiftEffect.cpp
+ *
+ *  Created on: 16.03.2014
+ *      Author: seger
+ */
+
+#include "shiftEffect.h"
+
+#include <iostream>
+#include <cstring>
+#include <cmath>
+
+#include "pictureBlend.h"
+#include "pictureResize.h"
+#include "log.h"
+#include "effectorVisitor.h"
+
+ShiftEffect::ShiftEffect()
+  :state(unconfigured), framecounter(0)
+{
+
+}
+
+ShiftEffect::~ShiftEffect()
+{
+
+}
+
+bool ShiftEffect::available()
+{
+  return((state!=unavailable) && (state!=unconfigured));
+}
+
+void ShiftEffect::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
+
+Effector& ShiftEffect::operator >>(RGBPlane& plane)
+{
+
+  switch (state) {
+
+  case shifting: {
+    doShift(plane);
+    break;
+  }
+
+  case presentation: {
+    doPresentation(plane);
+    break;
+  }
+
+  default: {
+    logger.error() << "no frame available\n";
+    break;
+  }
+  }
+
+  return(*this);
+
+}
+
+void ShiftEffect::configure(ShiftConfig& _config)
+{
+
+  framecounter = 0;
+
+  config = _config;
+
+  if (config.first) {
+
+    lastPlane = RGBPlane(config.outputWidth, config.outputHeight);
+
+    /* blank the plane */
+    uint32 planesize = config.outputWidth*config.outputHeight*4; // 3 Colors + Alpha channel
+    memset(lastPlane->plane, 0x00, planesize);
+
+  }
+
+
+  /* resize the picture to the correct size */
+  presentationPlane = PictureResize::reframe(config.origPlane, config.outputWidth, config.outputHeight);
+
+  logger.debug() << "Picture size: "<< presentationPlane->width<<" x "<<presentationPlane->width
+                 <<"  -> frame size "<<config.outputWidth <<" x "<<config.outputHeight<<std::endl;
+
+  if (config.first)
+    state = presentation;
+  else {
+    logger.debug() << "Shifting -- \n";
+    shiftPlane = PictureResize::concatenate(lastPlane, presentationPlane, lastPlane);
+    logger.debug() << "Shifting -- (" << shiftPlane.getWidth()<<":"<<shiftPlane.getHeight()<<") \n";
+    state = shifting;
+  }
+}
+
+void ShiftEffect::doShift(RGBPlane& plane)
+{
+
+  // linear
+  // float factor((framecounter*1.0)/(config.blindLength*1.0));
+  static const float pi = 3.14159265359;
+  //
+  float fact((framecounter*1.0)/(config.blindLength*1.0)*pi + pi);
+  float factor = (1.0 + cos(fact))/2.0;
+
+  logger.debug() << "  Shifting:"<< factor <<" \n";
+  plane = PictureResize::subframe(shiftPlane, config.outputWidth, config.outputHeight, ((float)config.outputWidth)*factor, 0, 1);
+
+  logger.debug() << "  Subframe -- (" << plane.getWidth()<<":"<<plane.getHeight()<<") \n";
+
+  framecounter++;
+  if (framecounter > config.blindLength) {
+    logger.debug() << "Presenting -- \n";
+    state = presentation;
+  }
+
+}
+
+void ShiftEffect::doPresentation(RGBPlane& plane)
+{
+
+  plane = presentationPlane;
+
+  framecounter++;
+  if (framecounter > config.sequenceLength) {
+    lastPlane = presentationPlane;
+
+    state = unavailable;
+  }
+
+}
+
+
diff --git a/src/crossfader.h b/src/effect/shiftEffect.h
similarity index 53%
copy from src/crossfader.h
copy to src/effect/shiftEffect.h
index 98b3ee7..2b3a457 100644
--- a/src/crossfader.h
+++ b/src/effect/shiftEffect.h
@@ -1,25 +1,18 @@
-//
-// C++ Interface: crossfader
-//
-// Description:
-//
-//
-// Author: Yorn <yorn at gmx.net>, (C) 2009
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-#ifndef CROSSFADER_H
-#define CROSSFADER_H
+/*
+ * shiftEffect.h
+ *
+ *  Created on: 16.03.2014
+ *      Author: seger
+ */
+
+#ifndef SHIFTEFFECT_H_
+#define SHIFTEFFECT_H_
 
 #include "effector.h"
 
-/**
-	@author Yorn <yorn at gmx.net>
-*/
-class Crossfader : public Effector {
+class ShiftEffect: public Effector {
 public:
-  class CrossfaderConfig {
+  class ShiftConfig {
   public:
     bool first;
 
@@ -32,12 +25,12 @@ public:
     RGBPlane origPlane;
   };
 
+protected:
   RGBPlane presentationPlane;
 
-protected:
   enum State {
     unconfigured,
-    crossfade,
+    shifting,
     presentation,
     unavailable
   };
@@ -45,23 +38,27 @@ protected:
   State state;
 
   RGBPlane lastPlane;
+  RGBPlane shiftPlane;
   uint32 framecounter;
 
-  CrossfaderConfig config;
+  ShiftConfig config;
 
-  void doCrossfade(RGBPlane& plane);
+  void doShift(RGBPlane& plane);
   void doPresentation(RGBPlane& plane);
 
+
 public:
-  Crossfader();
-  ~Crossfader();
+  ShiftEffect();
+  virtual ~ShiftEffect();
 
-  void configure(CrossfaderConfig& config);
+  void configure(ShiftConfig& config);
 
   virtual Effector& operator>>(RGBPlane& plane);
 
   virtual bool available();
 
+  virtual void accept(EffectorVisitor& visitor) const;
+
 };
 
-#endif
+#endif /* SHIFTEFFECT_H_ */
diff --git a/src/effect/shiftblendEffect.cpp b/src/effect/shiftblendEffect.cpp
new file mode 100644
index 0000000..36b2d7a
--- /dev/null
+++ b/src/effect/shiftblendEffect.cpp
@@ -0,0 +1,141 @@
+/*
+ * shiftEffect.cpp
+ *
+ *  Created on: 16.03.2014
+ *      Author: seger
+ */
+
+#include "shiftblendEffect.h"
+
+#include <iostream>
+#include <cstring>
+#include <cmath>
+
+#include "pictureBlend.h"
+#include "pictureResize.h"
+#include "log.h"
+#include "effectorVisitor.h"
+
+ShiftblendEffect::ShiftblendEffect()
+  :state(unconfigured), framecounter(0)
+{
+
+}
+
+ShiftblendEffect::~ShiftblendEffect()
+{
+
+}
+
+bool ShiftblendEffect::available()
+{
+  return((state!=unavailable) && (state!=unconfigured));
+}
+
+void ShiftblendEffect::accept(EffectorVisitor& visitor) const
+{
+  visitor.visit(*this);
+}
+
+Effector& ShiftblendEffect::operator >>(RGBPlane& plane)
+{
+
+  switch (state) {
+
+  case shifting: {
+    doShift(plane);
+    break;
+  }
+
+  case presentation: {
+    doPresentation(plane);
+    break;
+  }
+
+  default: {
+    logger.error() << "no frame available\n";
+    break;
+  }
+  }
+
+  return(*this);
+
+}
+
+void ShiftblendEffect::configure(ShiftConfig& _config)
+{
+
+  framecounter = 0;
+
+  config = _config;
+
+  if (config.first) {
+
+    lastPlane = RGBPlane(config.outputWidth, config.outputHeight);
+
+    /* blank the plane */
+    uint32 planesize = config.outputWidth*config.outputHeight*4; // 3 Colors + Alpha channel
+    memset(lastPlane->plane, 0x00, planesize);
+
+  }
+
+  /* resize the picture to the correct size */
+  presentationPlane = PictureResize::reframe(config.origPlane, config.outputWidth, config.outputHeight);
+
+  logger.debug() << "Picture size: "<< presentationPlane->width<<" x "<<presentationPlane->width
+                 <<"  -> frame size "<<config.outputWidth <<" x "<<config.outputHeight<<std::endl;
+
+  RGBPlane blackplane_full_alpha(config.outputWidth, config.outputHeight, 0x7f7f7f7f );
+
+  if (config.first)
+    state = presentation;
+  else {
+    logger.debug() << "Shifting -- \n";
+//	  shiftPlane = PictureResize::concatenate(lastPlane, blackplane_full_alpha, lastPlane);
+    shiftPlane = PictureResize::concatenate(lastPlane, blackplane_full_alpha, lastPlane);
+    logger.debug() << "Shifting -- (" << shiftPlane.getWidth()<<":"<<shiftPlane.getHeight()<<") \n";
+    state = shifting;
+  }
+
+}
+
+void ShiftblendEffect::doShift(RGBPlane& plane)
+{
+
+  // linear
+
+  static const float pi = 3.14159265359;
+  //
+  float fact((framecounter*1.0)/(config.blindLength*1.0)*pi + pi);
+  float factor = (1.0 + cos(fact))/2.0;
+
+  logger.debug() << "  Shifting:"<< factor <<" \n";
+  RGBPlane tmpframe = PictureResize::subframe(shiftPlane, config.outputWidth, config.outputHeight, ((float)config.outputWidth)*factor, 0, 1);
+
+  plane = PictureBlend::alphaBlend(presentationPlane, tmpframe,  1-factor);
+
+  logger.debug() << "  Subframe -- (" << plane.getWidth()<<":"<<plane.getHeight()<<") \n";
+
+  framecounter++;
+  if (framecounter > config.blindLength) {
+    logger.debug() << "Presenting -- \n";
+    state = presentation;
+  }
+
+}
+
+void ShiftblendEffect::doPresentation(RGBPlane& plane)
+{
+
+  plane = presentationPlane;
+
+  framecounter++;
+  if (framecounter > config.sequenceLength) {
+    lastPlane = presentationPlane;
+
+    state = unavailable;
+  }
+
+}
+
+
diff --git a/src/crossfader.h b/src/effect/shiftblendEffect.h
similarity index 50%
rename from src/crossfader.h
rename to src/effect/shiftblendEffect.h
index 98b3ee7..08d0425 100644
--- a/src/crossfader.h
+++ b/src/effect/shiftblendEffect.h
@@ -1,25 +1,18 @@
-//
-// C++ Interface: crossfader
-//
-// Description:
-//
-//
-// Author: Yorn <yorn at gmx.net>, (C) 2009
-//
-// Copyright: See COPYING file that comes with this distribution
-//
-//
-#ifndef CROSSFADER_H
-#define CROSSFADER_H
+/*
+ * ShiftblendEffect.h
+ *
+ *  Created on: 16.03.2014
+ *      Author: seger
+ */
+
+#ifndef SHIFTBLENDEFFECT_H_
+#define SHIFTBLENDEFFECT_H_
 
 #include "effector.h"
 
-/**
-	@author Yorn <yorn at gmx.net>
-*/
-class Crossfader : public Effector {
+class ShiftblendEffect: public Effector {
 public:
-  class CrossfaderConfig {
+  class ShiftConfig {
   public:
     bool first;
 
@@ -29,15 +22,22 @@ public:
     uint32 outputWidth;
     uint32 outputHeight;
 
+    enum Type {
+      Left,
+      Right
+    };
+
+    Type type;
+
     RGBPlane origPlane;
   };
 
+protected:
   RGBPlane presentationPlane;
 
-protected:
   enum State {
     unconfigured,
-    crossfade,
+    shifting,
     presentation,
     unavailable
   };
@@ -45,23 +45,27 @@ protected:
   State state;
 
   RGBPlane lastPlane;
+  RGBPlane shiftPlane;
   uint32 framecounter;
 
-  CrossfaderConfig config;
+  ShiftConfig config;
 
-  void doCrossfade(RGBPlane& plane);
+  void doShift(RGBPlane& plane);
   void doPresentation(RGBPlane& plane);
 
+
 public:
-  Crossfader();
-  ~Crossfader();
+  ShiftblendEffect();
+  virtual ~ShiftblendEffect();
 
-  void configure(CrossfaderConfig& config);
+  void configure(ShiftConfig& config);
 
   virtual Effector& operator>>(RGBPlane& plane);
 
   virtual bool available();
 
+  virtual void accept(EffectorVisitor& visitor) const;
+
 };
 
-#endif
+#endif /* ShiftblendEffect_H_ */
diff --git a/src/exception.h b/src/exception.h
index 427e937..53b595f 100644
--- a/src/exception.h
+++ b/src/exception.h
@@ -6,7 +6,7 @@
 class OggException : public std::runtime_error {
 public:
   OggException(const std::string & msg)
-      : std::runtime_error(msg) {}
+    : std::runtime_error(msg) {}
 };
 
 #endif
diff --git a/src/libresample/CMakeLists.txt b/src/libresample/CMakeLists.txt
new file mode 100644
index 0000000..19c54b4
--- /dev/null
+++ b/src/libresample/CMakeLists.txt
@@ -0,0 +1,8 @@
+SET ( LIBRARY_RESAMPLE_SRC
+      filterkit.c  
+      resample.c  
+      resamplesubs.c
+    )
+
+ADD_LIBRARY ( resample ${LIBRARY_RESAMPLE_SRC} )
+
diff --git a/src/libresample/libresample.h b/src/libresample/libresample.h
index 23244f3..ca08e04 100644
--- a/src/libresample/libresample.h
+++ b/src/libresample/libresample.h
@@ -18,24 +18,24 @@
 extern "C" {
 #endif	/* __cplusplus */
 
-  void *resample_open(int      highQuality,
-  double   minFactor,
-  double   maxFactor);
+void *resample_open(int      highQuality,
+                    double   minFactor,
+                    double   maxFactor);
 
-  void *resample_dup(const void *handle);
+void *resample_dup(const void *handle);
 
-  int resample_get_filter_width(const void *handle);
+int resample_get_filter_width(const void *handle);
 
-  int resample_process(void   *handle,
-                       double  factor,
-                       float  *inBuffer,
-                       int     inBufferLen,
-                       int     lastFlag,
-                       int    *inBufferUsed,
-                       float  *outBuffer,
-                       int     outBufferLen);
+int resample_process(void   *handle,
+                     double  factor,
+                     float  *inBuffer,
+                     int     inBufferLen,
+                     int     lastFlag,
+                     int    *inBufferUsed,
+                     float  *outBuffer,
+                     int     outBufferLen);
 
-  void resample_close(void *handle);
+void resample_close(void *handle);
 
 #ifdef __cplusplus
 }		/* extern "C" */
diff --git a/src/main/CMakeLists.txt b/src/main/CMakeLists.txt
new file mode 100644
index 0000000..303b7c4
--- /dev/null
+++ b/src/main/CMakeLists.txt
@@ -0,0 +1,13 @@
+SET ( LIBRARY_MAIN_SRC
+      audioConverter.cpp  
+      audioHook.cpp
+      hookHandler.cpp
+      videoHook.cpp
+      oggBOSExtractorFactory.cpp
+      streamMux.cpp
+      streamSerializer.cpp
+      cmdlineextractor.cpp
+    )
+
+ADD_LIBRARY ( ovtmain ${LIBRARY_MAIN_SRC} )
+
diff --git a/src/audioConverter.cpp b/src/main/audioConverter.cpp
similarity index 71%
rename from src/audioConverter.cpp
rename to src/main/audioConverter.cpp
index 15c0bab..7ff279e 100644
--- a/src/audioConverter.cpp
+++ b/src/main/audioConverter.cpp
@@ -7,7 +7,7 @@
 #include "log.h"
 
 AudioConverter::AudioConverter()
-    : channelData(0), tmp(0), handle(0), used(0), ratio(0), channels(0)
+  : channelData(0), tmp(0), handle(0), used(0), ratio(0), channels(0)
 {
 }
 
@@ -54,22 +54,22 @@ bool AudioConverter::resample(AudioPacket packet, AudioPacket& resampled)
   uint32 length;
 
   // upmix -> we want stereo and have mono
-  if ((channels == 2) && ((*packet)->getChannels() == 1)) {
+  if ((channels == 2) && (packet->getChannels() == 1)) {
 
-    for (uint32 pos(0); pos < (*packet)->getLength(); ++pos)
-      channelData[0][used+pos] = (*packet)->getDataOfChannel(0)[pos];
+    for (uint32 pos(0); pos < packet->getLength(); ++pos)
+      channelData[0][used+pos] = packet->getDataOfChannel(0)[pos];
 
-    for (uint32 pos(0); pos < (*packet)->getLength(); ++pos)
-      channelData[1][used+pos] = (*packet)->getDataOfChannel(0)[pos];
+    for (uint32 pos(0); pos < packet->getLength(); ++pos)
+      channelData[1][used+pos] = packet->getDataOfChannel(0)[pos];
 
   }
 
   // downmix -> we want mono and have stereo
-  if ((channels == 1) && ((*packet)->getChannels() == 2)) {
+  if ((channels == 1) && (packet->getChannels() == 2)) {
 
-    for (uint32 pos(0); pos < (*packet)->getLength(); ++pos) {
-      channelData[0][used+pos] = (*packet)->getDataOfChannel(0)[pos]*0.5 +
-                                 (*packet)->getDataOfChannel(1)[pos]*0.5;
+    for (uint32 pos(0); pos < packet->getLength(); ++pos) {
+      channelData[0][used+pos] = packet->getDataOfChannel(0)[pos]*0.5 +
+                                 packet->getDataOfChannel(1)[pos]*0.5;
 
       if (channelData[0][used+pos]> 1.0)
         channelData[0][used+pos] = 1.0;
@@ -77,16 +77,16 @@ bool AudioConverter::resample(AudioPacket packet, AudioPacket& resampled)
   }
 
   // plane copy
-  if (channels == (*packet)->getChannels()) {
+  if (channels == packet->getChannels()) {
 
     for (uint32 c(0); c < channels; ++c)
-      for (uint32 pos(0); pos < (*packet)->getLength(); ++pos)
-        channelData[c][used+pos] = (*packet)->getDataOfChannel(c)[pos];
+      for (uint32 pos(0); pos < packet->getLength(); ++pos)
+        channelData[c][used+pos] = packet->getDataOfChannel(c)[pos];
 
   }
 
   if (ratio == 1.0) {
-    length = (*packet)->getLength();
+    length = packet->getLength();
     AudioPacketInternal* newInternalPacket = new AudioPacketInternal(channels, length);
 
     for (uint32 i(0); i<channels; ++i) {
@@ -98,7 +98,7 @@ bool AudioConverter::resample(AudioPacket packet, AudioPacket& resampled)
   }
 
 
-  uint32 availableSamples = used+(*packet)->getLength();
+  uint32 availableSamples = used+packet->getLength();
   int32 inUsed=0;
 
   // do resampling
diff --git a/src/audioConverter.h b/src/main/audioConverter.h
similarity index 100%
rename from src/audioConverter.h
rename to src/main/audioConverter.h
diff --git a/src/audioHook.cpp b/src/main/audioHook.cpp
similarity index 95%
rename from src/audioHook.cpp
rename to src/main/audioHook.cpp
index 9d4998f..5776b4a 100644
--- a/src/audioHook.cpp
+++ b/src/main/audioHook.cpp
@@ -10,7 +10,7 @@ AudioHook::AudioHook()
 {}
 
 AudioHook::AudioHook(uint8 outStreamID, const bool copy, const bool keepComments)
-    : HookHandler(copy, keepComments), changeAudioSamplerate(false), changeChannel(false)
+  : HookHandler(copy, keepComments), changeAudioSamplerate(false), changeChannel(false)
 {
 //	logger.debug() << "Vorbis Encoder stream No "<<(int)outStreamID<<std::endl;
 
@@ -69,7 +69,7 @@ HookHandler& AudioHook::operator<<(OggPacket& packet)
   VorbisEncoder& encoder = static_cast<VorbisEncoder&>(*inputEncoder);
 
   if (copy) {
-    packet.setStreamNo(encoder.getStreamNo());
+    packet->setStreamNo(encoder.getStreamNo());
     packetList.push_back(packet);
   } else {
     // relevant packet
@@ -136,7 +136,7 @@ void AudioHook::flush()
 
 OggType AudioHook::getType() const
 {
-  return(ogg_vorbis);
+  return(OggType::vorbis);
 }
 
 static bool operator==(const vorbis_info& info1, const vorbis_info& info2)
diff --git a/src/audioHook.h b/src/main/audioHook.h
similarity index 100%
rename from src/audioHook.h
rename to src/main/audioHook.h
diff --git a/src/cmdlineextractor.cpp b/src/main/cmdlineextractor.cpp
similarity index 53%
rename from src/cmdlineextractor.cpp
rename to src/main/cmdlineextractor.cpp
index a258d61..305a2a8 100644
--- a/src/cmdlineextractor.cpp
+++ b/src/main/cmdlineextractor.cpp
@@ -21,6 +21,7 @@
 #include "oggComment.h"
 #include "pictureLoader.h"
 #include "log.h"
+#include "effectorTypes.h"
 
 CmdlineExtractor::CmdlineExtractor()
 {
@@ -31,7 +32,8 @@ CmdlineExtractor::~CmdlineExtractor()
 }
 
 void CmdlineExtractor::extractCommentPairs(std::vector<OggComment>& list,
-    const std::string& _argument, char tokenSeparator, char commentSeparator)
+    const std::string& _argument, char tokenSeparator,
+    char commentSeparator)
 {
   std::string argument(_argument);
   std::stringstream str;
@@ -39,8 +41,8 @@ void CmdlineExtractor::extractCommentPairs(std::vector<OggComment>& list,
 
   // delete all invalid data
   std::size_t pos;
-  while ( (pos = argument.find_first_not_of(validTextChars) )
-          != std::string::npos) {
+  while ((pos = argument.find_first_not_of(validTextChars))
+         != std::string::npos) {
 #ifdef DEBUG
     logger.debug() << "Erasing sign <"<<argument.at(pos) <<"> - it is invalid\n";
 #endif
@@ -48,21 +50,21 @@ void CmdlineExtractor::extractCommentPairs(std::vector<OggComment>& list,
   }
 
   // if there is no argument given, the first frame will be created as a thumbnail
-  if (argument.empty() ) {
+  if (argument.empty()) {
     return;
   }
 
   str << argument;
 
-  while ( !str.eof() ) {
+  while (!str.eof()) {
     getline(str, substr, tokenSeparator);
 
     std::size_t commentSeparatorPos;
-    if ( (commentSeparatorPos = substr.find_first_of(commentSeparator) )
-         != std::string::npos) {
+    if ((commentSeparatorPos = substr.find_first_of(commentSeparator))
+        != std::string::npos) {
       OggComment comment;
-      comment.tag = substr.substr( 0, commentSeparatorPos);
-      comment.value = substr.substr(commentSeparatorPos+1,
+      comment.tag = substr.substr(0, commentSeparatorPos);
+      comment.value = substr.substr(commentSeparatorPos + 1,
                                     std::string::npos);
       list.push_back(comment);
       //			logger.debug() << "Found pair "<<comment.tag<<" "<<comment.value
@@ -82,8 +84,7 @@ void CmdlineExtractor::extractUint32(std::deque<uint32>& list,
 
   // delete all invalid data
   std::size_t pos;
-  while ( (pos = argument.find_first_not_of(validChars) )
-          != std::string::npos) {
+  while ((pos = argument.find_first_not_of(validChars)) != std::string::npos) {
 #ifdef DEBUG
     logger.debug() << "erasing <"<<argument.at(pos) <<">\n";
 #endif
@@ -91,15 +92,15 @@ void CmdlineExtractor::extractUint32(std::deque<uint32>& list,
   }
 
   // if there is no argument given, the first frame will be created as a thumbnail
-  if (argument.empty() ) {
-    list.push_back( 0);
+  if (argument.empty()) {
+    list.push_back(0);
     return;
   }
 
   str << argument;
 
-  uint32 value( 0);
-  while ( !str.eof() ) {
+  uint32 value(0);
+  while (!str.eof()) {
     std::stringstream part;
     getline(str, substr, seperator);
     part << substr;
@@ -110,7 +111,8 @@ void CmdlineExtractor::extractUint32(std::deque<uint32>& list,
 }
 
 void CmdlineExtractor::extractBlend(std::vector<BlendElement>& list,
-                                    const std::string& _argument, char tokenSeparator, char valueSeparator)
+                                    const std::string& _argument, char tokenSeparator,
+                                    char valueSeparator)
 {
 
   std::string argument(_argument);
@@ -119,60 +121,60 @@ void CmdlineExtractor::extractBlend(std::vector<BlendElement>& list,
 
   // delete all invalid data
   std::size_t pos;
-  while ( (pos = argument.find_first_not_of(validTextChars) )
-          != std::string::npos) {
+  while ((pos = argument.find_first_not_of(validTextChars))
+         != std::string::npos) {
     argument.erase(pos, 1);
   }
 
   // if there is no argument given, the first frame will be created as a thumbnail
-  if (argument.empty() ) {
+  if (argument.empty()) {
     return;
   }
 
   str << argument;
 
-  while ( !str.eof() ) {
+  while (!str.eof()) {
     getline(str, substr, tokenSeparator);
 
     /* extract picture name */
     std::size_t valueSeparatorPos = substr.find_first_of(valueSeparator);
 
-    std::string filename = substr.substr( 0, valueSeparatorPos);
+    std::string filename = substr.substr(0, valueSeparatorPos);
 
     /* extract all extra data if some (start time, end time, smoothing)*/
-    double startTime( 0);
-    double endTime( -1);
-    bool smooth( false);
+    double startTime(0);
+    double endTime(-1);
+    bool smooth(false);
     std::stringstream tmp;
 
     /* are there any other information given? */
     if (valueSeparatorPos != std::string::npos) {
 
       /* analysing start time */
-      substr = substr.substr(valueSeparatorPos+1);
+      substr = substr.substr(valueSeparatorPos + 1);
 
       valueSeparatorPos = substr.find_first_of(valueSeparator);
 
-      tmp << substr.substr( 0, valueSeparatorPos);
+      tmp << substr.substr(0, valueSeparatorPos);
       tmp >> startTime;
       tmp.clear();
 
       if (valueSeparatorPos != std::string::npos) {
 
         /* analysing start time */
-        substr = substr.substr(valueSeparatorPos+1);
+        substr = substr.substr(valueSeparatorPos + 1);
 
         valueSeparatorPos = substr.find_first_of(valueSeparator);
 
-        tmp << substr.substr( 0, valueSeparatorPos);
+        tmp << substr.substr(0, valueSeparatorPos);
         tmp >> endTime;
 
         if (valueSeparatorPos != std::string::npos) {
 
           /* analysing start time */
-          substr = substr.substr(valueSeparatorPos+1);
+          substr = substr.substr(valueSeparatorPos + 1);
 
-          if (substr.substr( 0, valueSeparator) == "s")
+          if (substr.substr(0, valueSeparator) == "s")
             smooth = true;
         }
       }
@@ -188,7 +190,7 @@ void CmdlineExtractor::extractBlend(std::vector<BlendElement>& list,
 #ifdef DEBUG
   for (uint32 i( 0); i<list.size(); ++i) {
     logger.debug() << "Info: picture"<<i<<": startTime="<<list[i].startTime
-    <<" endTime="<<list[i].endTime<<" smooth=";
+                   <<" endTime="<<list[i].endTime<<" smooth=";
     if (list[i].smooth == true)
       logger.debug() << "true\n";
     else
@@ -232,10 +234,30 @@ uint32 CmdlineExtractor::getNextUint32(std::string& argument,
     std::stringstream tmp;
 
     std::size_t tokenPosition(argument.find_first_of(tokenSeparator));
-    tmp << argument.substr( 0, tokenPosition);
+    tmp << argument.substr(0, tokenPosition);
+    tmp >> retValue;
+
+    argument = argument.substr(tokenPosition + 1);
+
+  }
+
+  return (retValue);
+}
+
+float CmdlineExtractor::getNextFloat(std::string& argument,
+                                     char tokenSeparator)
+{
+  float retValue(0.0);
+
+  if (!argument.empty()) {
+
+    std::stringstream tmp;
+
+    std::size_t tokenPosition(argument.find_first_of(tokenSeparator));
+    tmp << argument.substr(0, tokenPosition);
     tmp >> retValue;
 
-    argument = argument.substr(tokenPosition+1);
+    argument = argument.substr(tokenPosition + 1);
 
   }
 
@@ -252,106 +274,113 @@ std::string CmdlineExtractor::getNextString(std::string& argument,
     std::stringstream tmp;
 
     std::size_t tokenPosition(argument.find_first_of(tokenSeparator));
-    tmp << argument.substr( 0, tokenPosition);
+    tmp << argument.substr(0, tokenPosition);
     tmp >> retValue;
 
-    argument = argument.substr(tokenPosition+1);
+    argument = argument.substr(tokenPosition + 1);
 
   }
 
   return (retValue);
 }
 
-
-
-SlideshowElement CmdlineExtractor::extractSlideshow(
-  const std::string& _argument, char tokenSeparator, SlideshowElement& defaultElement)
+void CmdlineExtractor::extractSlideshow(const std::string& _argument,
+                                        char tokenSeparator, SlideshowElement& slideshowElement)
 {
-  /* A full specified picture would look like this (speparator is ":"
-   * name.jpg:<duration>:<type>:<typeSpecificData>
+  /* A full specified picture would look like this (speparator is ",")
+   * name.jpg:<duration>,<type>,<typeSpecificData>
    * This should go into a creator factory later:
-   * start and end position is written as <X-Position>:<YPosition>:<Zoom>
+   * start and end position is written as <X-Position>,<YPosition>,<Zoom>
    * The X and Y Position is from the left upper corner. The Zoom is 1 if
    * the pixel is just copy. In that case, the subframe is as big is the
    * outgoing frame */
 
   std::string argument(_argument);
   std::stringstream tmp;
-  SlideshowElement slideshowElement(defaultElement);
 
   // delete all invalid data
   std::size_t pos;
-  while ( (pos = argument.find_first_not_of(validTextChars) )
-          != std::string::npos) {
+  while ((pos = argument.find_first_not_of(validTextChars))
+         != std::string::npos) {
     argument.erase(pos, 1);
   }
 
   // if there is no argument given, the first frame will be created as a thumbnail
-  if (argument.empty() ) {
-    return(slideshowElement);
+  if (argument.empty()) {
+    return;
   }
 
   /* extract picture name */
   std::size_t tokenPosition(argument.find_first_of(tokenSeparator));
-  slideshowElement.filename = argument.substr( 0, tokenPosition);
+  slideshowElement.filename = argument.substr(0, tokenPosition);
+
+  std::string substr = argument.substr(tokenPosition + 1);
 
   /* extract length */
-  if (tokenPosition != std::string::npos) {
-    std::string substr = argument.substr(tokenPosition+1);
-    tokenPosition = substr.find_first_of(tokenSeparator);
-    tmp << substr.substr(0, tokenPosition);
-    tmp >> slideshowElement.duration;
-
-    if (tokenPosition != std::string::npos) {
-      std::string substr = argument.substr(tokenPosition+1);
-      tokenPosition = substr.find_first_of(tokenSeparator);
-      std::string typeName(substr.substr(0, tokenPosition));
-
-      if ( (typeName == "kb") || (typeName == "KB") || (typeName
-           == "KenBurns") || (typeName == "kenburns"))
-        slideshowElement.type = SlideshowElement::KenBurns;
-
-//      if ( (typeName == "p") || (typeName == "pl") || (typeName
-//           == "plain") || (typeName == "Plain"))
-//        slideshowElement.type = SlideshowElement::plain;
+//	if (tokenPosition != std::string::npos) {
+//		std::string substr = argument.substr(tokenPosition + 1);
+//		tokenPosition = substr.find_first_of(tokenSeparator);
+//		tmp << substr.substr(0, tokenPosition);
+//		tmp >> slideshowElement.duration;
+//		substr = substr.substr(tokenPosition + 1);
+//		std::cout << substr << std::endl;
+
+//		if (tokenPosition != std::string::npos) {
+//			tokenPosition = substr.find_first_of(tokenSeparator);
+//			std::string typeName(substr.substr(0, tokenPosition));
+//			std::cout << substr << std::endl;
 //
-//      if ( (typeName == "cf") || (typeName == "crossfade") || (typeName
-//           == "CF") || (typeName == "Crossfade"))
-//        slideshowElement.type = SlideshowElement::crossfade;
+//			if ((typeName == "kb") || (typeName == "KB")
+//					|| (typeName == "KenBurns") || (typeName == "kenburns"))
+//				slideshowElement.type = KenBurns;
 //
-//      if ((typeName == "bl") || (typeName == "b") || (typeName =="B")
-//          || (typeName == "blur") || (typeName == "bluring"))
-//        slideshowElement.type = SlideshowElement::bluring;
-
-      if (tokenPosition != std::string::npos) {
-        substr = substr.substr(tokenPosition+1);
-        slideshowElement.startPosX = getNextUint32(substr,
-                                     tokenSeparator);
-        slideshowElement.startPosY = getNextUint32(substr,
-                                     tokenSeparator);
-        slideshowElement.startZoom = getNextUint32(substr,
-                                     tokenSeparator);
-        slideshowElement.endPosX
-        = getNextUint32(substr, tokenSeparator);
-        slideshowElement.endPosY
-        = getNextUint32(substr, tokenSeparator);
-        slideshowElement.endZoom
-        = getNextUint32(substr, tokenSeparator);
-      }
-    }
-  }
-  return(slideshowElement);
+//			if ((typeName == "p") || (typeName == "pl") || (typeName == "plain")
+//					|| (typeName == "Plain"))
+//				slideshowElement.type = Plain;
+//
+//			if ((typeName == "cf") || (typeName == "crossfade")
+//					|| (typeName == "CF") || (typeName == "Crossfade"))
+//				slideshowElement.type = Crossfade;
+//
+//			if ((typeName == "bl") || (typeName == "b") || (typeName == "B")
+//					|| (typeName == "blur") || (typeName == "bluring"))
+//				slideshowElement.type = Blur;
+
+  substr = substr.substr(tokenPosition + 1);
 
+  if (tokenPosition != std::string::npos) {
+    std::cout << "F " << substr << std::endl;
+
+    slideshowElement.startPosX = getNextUint32(substr,
+                                 tokenSeparator);
+    std::cout << substr << std::endl;
+    slideshowElement.startPosY = getNextUint32(substr,
+                                 tokenSeparator);
+    std::cout << substr << std::endl;
+    slideshowElement.startZoom = getNextFloat(substr,
+                                 tokenSeparator);
+    std::cout << substr << std::endl;
+    slideshowElement.endPosX = getNextUint32(substr,
+                               tokenSeparator);
+    std::cout << substr << std::endl;
+    slideshowElement.endPosY = getNextUint32(substr,
+                               tokenSeparator);
+    std::cout << substr << std::endl;
+    slideshowElement.endZoom = getNextFloat(substr, tokenSeparator);
+  }
+//		}
+  //}
 }
 
-void CmdlineExtractor::extractCrossSequence(std::vector<std::string>& list, const std::string& _argument, char tokenSeparator)
+void CmdlineExtractor::extractCrossSequence(std::vector<std::string>& list,
+    const std::string& _argument, char tokenSeparator)
 {
   std::string argument(_argument);
 
   // delete all invalid data
   std::size_t pos;
-  while ( (pos = argument.find_first_not_of(validTextChars) )
-          != std::string::npos) {
+  while ((pos = argument.find_first_not_of(validTextChars))
+         != std::string::npos) {
     argument.erase(pos, 1);
   }
 
@@ -361,4 +390,3 @@ void CmdlineExtractor::extractCrossSequence(std::vector<std::string>& list, cons
   return;
 }
 
-
diff --git a/src/cmdlineextractor.h b/src/main/cmdlineextractor.h
similarity index 84%
rename from src/cmdlineextractor.h
rename to src/main/cmdlineextractor.h
index b707fad..fa05ef3 100644
--- a/src/cmdlineextractor.h
+++ b/src/main/cmdlineextractor.h
@@ -19,6 +19,7 @@
 #include "definition.h"
 #include "oggComment.h"
 #include "blendElement.h"
+#include "effectorTypes.h"
 
 const std::string validChars ( "0123456789,x" );
 const std::string
@@ -26,22 +27,15 @@ validTextChars ( "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789
 
 class SlideshowElement {
 public:
-  enum SlideshowType {
-    KenBurns,
-    Crossfade,
-    Plain,
-    Blur
-  };
-
   std::string    filename;
   float          duration;
-  SlideshowType  type;
+  EffectorType   type;
   uint32         startPosX;
   uint32         startPosY;
-  uint32         startZoom;
+  float          startZoom;
   uint32         endPosX;
   uint32         endPosY;
-  uint32         endZoom;
+  float          endZoom;
 };
 
 class CmdlineExtractor {
@@ -63,9 +57,10 @@ public:
   static float atof(const std::string& _argument);
 
   static uint32 getNextUint32(std::string& substring, char tokenSeparator);
+  static float getNextFloat(std::string& substring, char tokenSeparator);
   static std::string getNextString(std::string& substring, char tokenSeparator);
 
-  static SlideshowElement extractSlideshow(const std::string& _argument, char tokenSeparator, SlideshowElement& defaultElement);
+  static void extractSlideshow(const std::string& _argument, char tokenSeparator, SlideshowElement& slideShowElement);
   static void extractCrossSequence(std::vector<std::string>& list, const std::string& _argument, char tokenSeparator);
 
 };
diff --git a/src/hookHandler.cpp b/src/main/hookHandler.cpp
similarity index 89%
rename from src/hookHandler.cpp
rename to src/main/hookHandler.cpp
index ba35eb6..3300e12 100644
--- a/src/hookHandler.cpp
+++ b/src/main/hookHandler.cpp
@@ -2,7 +2,7 @@
 #include "hookHandler.h"
 
 HookHandler::HookHandler(const bool _copy, const bool _keepComments)
-    : copyOnly(_copy), reencode(false), keepComments(_keepComments), inPacketCounter(0), outPacketCounter(0), outputDecoder(0), inputEncoder(0)
+  : copyOnly(_copy), reencode(false), keepComments(_keepComments), inPacketCounter(0), outPacketCounter(0), outputDecoder(0), inputEncoder(0)
 {
 }
 
@@ -61,7 +61,7 @@ bool HookHandler::available()
 
 OggType HookHandler::getType() const
 {
-  return (ogg_unknown);
+  return (OggType::unknown);
 }
 
 void HookHandler::resetEncoder()
diff --git a/src/hookHandler.h b/src/main/hookHandler.h
similarity index 100%
rename from src/hookHandler.h
rename to src/main/hookHandler.h
diff --git a/src/oggBOSExtractorFactory.cpp b/src/main/oggBOSExtractorFactory.cpp
similarity index 83%
rename from src/oggBOSExtractorFactory.cpp
rename to src/main/oggBOSExtractorFactory.cpp
index 35e07ab..8bee556 100644
--- a/src/oggBOSExtractorFactory.cpp
+++ b/src/main/oggBOSExtractorFactory.cpp
@@ -33,17 +33,17 @@ bool OggBOSExtractorFactory::extractInformation(OggPage& page, ExtractorInformat
 {
   switch (getStreamType(page)) {
 
-  case ogg_theora: {
+  case OggType::theora: {
     TheoraExtractor extractor;
     return(extractor.extract(page, information));
   }
 
-  case ogg_vorbis: {
+  case OggType::vorbis: {
     VorbisExtractor extractor;
     return(extractor.extract(page, information));
   }
 
-  case ogg_kate: {
+  case OggType::kate: {
     KateExtractor extractor;
     return(extractor.extract(page, information));
   }
@@ -61,17 +61,17 @@ bool OggBOSExtractorFactory::extractInformation(OggPacket& packet, ExtractorInfo
 {
   switch (getStreamType(packet)) {
 
-  case ogg_theora: {
+  case OggType::theora: {
     TheoraExtractor extractor;
     return(extractor.extract(packet, information));
   }
 
-  case ogg_vorbis: {
+  case OggType::vorbis: {
     VorbisExtractor extractor;
     return(extractor.extract(packet, information));
   }
 
-  case ogg_kate: {
+  case OggType::kate: {
     KateExtractor extractor;
     return(extractor.extract(packet, information));
   }
@@ -90,15 +90,15 @@ GranulePosInterpreter* OggBOSExtractorFactory::extractPositionInterpreter(Extrac
   GranulePosInterpreter* retPosInterpreter(0);
 
   switch (info.type) {
-  case ogg_theora:
+  case OggType::theora:
     retPosInterpreter = new TheoraPosInterpreter;
     break;
 
-  case ogg_vorbis:
+  case OggType::vorbis:
     retPosInterpreter = new VorbisPosInterpreter;
     break;
 
-  case ogg_kate:
+  case OggType::kate:
     retPosInterpreter = new KatePosInterpreter;
     break;
 
@@ -114,29 +114,29 @@ GranulePosInterpreter* OggBOSExtractorFactory::extractPositionInterpreter(Extrac
 
 OggType OggBOSExtractorFactory::getStreamType(OggPage& page)
 {
-  uint8* type = page.obj()->data+page.obj()->headerLength;
+  uint8* type = &(page->data())[0]+page->getHeaderLength();
 
   uint8 i=1;
-  for (; i< ogg_maxOggType; ++i) {
+  for (; i< to_integral(OggType::maxOggType); ++i) {
     if (memcmp(type, OggTypeMap[i], MAXIDCHARS) == 0)
 //    if ((*type) == OggTypeMap[i])
       return ((OggType)i);
   }
 
-  return (ogg_unknown);
+  return (OggType::unknown);
 
 }
 
 OggType OggBOSExtractorFactory::getStreamType(OggPacket& packet)
 {
-  uint8* type = packet.data();
+  uint8* type = packet->data();
 
   uint8 i=1;
-  for (; i< ogg_maxOggType; ++i) {
+  for (; i< to_integral(OggType::maxOggType); ++i) {
     if (memcmp(type, OggTypeMap[i], MAXIDCHARS) == 0)
 //    if ((*type) == OggTypeMap[i])
       return ((OggType)i);
   }
 
-  return (ogg_unknown);
+  return (OggType::unknown);
 }
diff --git a/src/oggBOSExtractorFactory.h b/src/main/oggBOSExtractorFactory.h
similarity index 100%
rename from src/oggBOSExtractorFactory.h
rename to src/main/oggBOSExtractorFactory.h
diff --git a/src/streamMux.cpp b/src/main/streamMux.cpp
similarity index 92%
rename from src/streamMux.cpp
rename to src/main/streamMux.cpp
index afa26c9..662b80f 100644
--- a/src/streamMux.cpp
+++ b/src/main/streamMux.cpp
@@ -28,7 +28,7 @@
 #include "log.h"
 
 MuxStreamEntry::MuxStreamEntry()
-    : used(false), streamEncoder(0), posInterpreter(0),
+  : used(false), streamEncoder(0), posInterpreter(0),
     nextTime(-2), empty(true), bufferElemCounter(0)
 {
 }
@@ -36,7 +36,7 @@ MuxStreamEntry::MuxStreamEntry()
 MuxStreamEntry::MuxStreamEntry(StreamConfig& config,
                                OggStreamEncoder* _streamEncoder,
                                GranulePosInterpreter* _posInterpreter)
-    : used(true), streamConfig(config), streamEncoder(_streamEncoder),
+  : used(true), streamConfig(config), streamEncoder(_streamEncoder),
     posInterpreter(_posInterpreter), nextTime(-2), empty(true), lastPacketNo(2),
     bufferElemCounter(0)
 {
@@ -47,7 +47,7 @@ MuxStreamEntry::~MuxStreamEntry()
 }
 
 StreamMux::StreamMux(MediaRepository* _repository)
-    : timeOfLastPage(0.0), redoTiming(true), repository(_repository)
+  : timeOfLastPage(0.0), redoTiming(true), repository(_repository)
 {
 }
 
@@ -145,7 +145,7 @@ void StreamMux::writeToOggEncoder()
     // get the first page
     OggPage nextPage = outputPageList.back().page;
 
-    uint8 streamNo(nextPage.getStreamNo());
+    uint8 streamNo(nextPage->getStreamNo());
 
     // this is the real return reason, the Page list
     // should never be empty
@@ -174,12 +174,12 @@ void StreamMux::flushOggEncoder()
     // get the first page
     OggPage nextPage = outputPageList.back().page;
 
-    uint8 streamNo(nextPage.getStreamNo());
+    uint8 streamNo(nextPage->getStreamNo());
 
     // is this the last page of this stream, then mark it
     if (streamList[streamNo].bufferElemCounter == 1) {
-      nextPage.setEOS();
-      nextPage.createCRC();
+      nextPage->setEOS();
+      nextPage->createCRC();
     }
 
     // insert the packet into the ogg encoder
@@ -273,10 +273,10 @@ void StreamMux::handleNextPage(OggPage& page, uint8 streamNo)
     findAndInsertNextPage();
   }
 
-  page.setStreamNo(streamNo);
+  page->setStreamNo(streamNo);
   entry.nextPage = page;
   entry.empty    = false;
-  entry.nextTime = entry.posInterpreter->getTime(page.granulepos());
+  entry.nextTime = entry.posInterpreter->getTime(page->granulepos());
   return;
 
 }
@@ -287,7 +287,7 @@ void StreamMux::configureStreams(std::vector<StreamConfig>& config)
 
   for (uint32 i(0); i<config.size(); ++i) {
 
-    if (config[i].type == ogg_unknown) {
+    if (config[i].type == OggType::unknown) {
       continue;
     }
 
@@ -310,11 +310,11 @@ StreamMux& StreamMux::operator<<(OggPacket& packet)
 {
 
   // easier access
-  MuxStreamEntry& entry     = streamList[packet.getStreamNo()];
+  MuxStreamEntry& entry     = streamList[packet->getStreamNo()];
 
   // can we handle this packet - if not, this packet will be discarded
   if (!entry.used) {
-    logger.error() << "StreamMux::operator<< no valid stream to put a packet with stream no:"<<(uint32) packet.getStreamNo()<<std::endl;
+    logger.error() << "StreamMux::operator<< no valid stream to put a packet with stream no:"<<(uint32) packet->getStreamNo()<<std::endl;
     return(*this);
   }
 
@@ -334,7 +334,7 @@ StreamMux& StreamMux::operator<<(OggPacket& packet)
   // if there are one or more pages, handle the buffering
   while (encoder.isAvailable()) {
     encoder >> page;
-    handleNextPage(page, packet.getStreamNo());
+    handleNextPage(page, packet->getStreamNo());
   }
 
   return(*this);
diff --git a/src/streamMux.h b/src/main/streamMux.h
similarity index 98%
rename from src/streamMux.h
rename to src/main/streamMux.h
index ef742ff..413b8fd 100644
--- a/src/streamMux.h
+++ b/src/main/streamMux.h
@@ -76,7 +76,7 @@ protected:
     OggPage page;
     double  time;
     OutputElement(OggPage _page, double _time)
-        : page(_page), time(_time) {}
+      : page(_page), time(_time) {}
   };
 
   double           timeOfLastPage;
diff --git a/src/streamSerializer.cpp b/src/main/streamSerializer.cpp
similarity index 90%
rename from src/streamSerializer.cpp
rename to src/main/streamSerializer.cpp
index beebce7..4d4a6f4 100644
--- a/src/streamSerializer.cpp
+++ b/src/main/streamSerializer.cpp
@@ -28,14 +28,14 @@
 #include "log.h"
 
 StreamEntry::StreamEntry() :
-    streamDecoder(0), posInterpreter(0), nextTime(-1), endOfStream(false),
-    empty(true)
+  streamDecoder(0), posInterpreter(0), nextTime(-1), endOfStream(false),
+  empty(true)
 {
 }
 
 StreamEntry::StreamEntry(StreamConfig& config, OggStreamDecoder* sDecoder) :
-    streamConfig(config), streamDecoder(sDecoder), posInterpreter(0), nextTime(-1),
-    endOfStream(false), empty(true)
+  streamConfig(config), streamDecoder(sDecoder), posInterpreter(0), nextTime(-1),
+  endOfStream(false), empty(true)
 {
 }
 
@@ -49,8 +49,8 @@ bool StreamEntry::allHeadersCollected()
 }
 
 StreamSerializer::StreamSerializer() :
-    initState(created), repository(0), oggDecoder(new OggDecoder),
-    streamEndCounter(0)
+  initState(created), repository(0), oggDecoder(new OggDecoder),
+  streamEndCounter(0)
 {
 }
 
@@ -131,11 +131,11 @@ bool StreamSerializer::extractStreams()
       (*oggDecoder) >> oggPage;
 
       /* what ID has this page / to what stream does this page belong to */
-      uint32 serialID = oggPage.serialno();
+      uint32 serialID = oggPage->serialno();
 
       /* if this is a "begin of stream" packet,
        * create a new stream decoder instance */
-      if (oggPage.isBOS()) {
+      if (oggPage->isBOS()) {
 
         StreamEntry entry;
 
@@ -146,7 +146,7 @@ bool StreamSerializer::extractStreams()
         /* create the stream encoder */
         entry.streamDecoder = new OggStreamDecoder;
         entry.posInterpreter
-        = OggBOSExtractorFactory::extractPositionInterpreter(entry.streamConfig);
+          = OggBOSExtractorFactory::extractPositionInterpreter(entry.streamConfig);
 
         streamList[serialID] = entry;
 
@@ -191,7 +191,7 @@ bool StreamSerializer::extractStreams()
   }
 
   logger.error()
-  << "StreamSerializer::extractStreams(): extracter was not able to grab all stream header\n";
+      << "StreamSerializer::extractStreams(): extracter was not able to grab all stream header\n";
   return (false);
 }
 
@@ -275,11 +275,11 @@ bool StreamSerializer::fillPage()
 
     // find out to what stream this packet belongs and forget the
     // page if the stream has not been configured befor
-    if (streamList.find(oggPage.serialno()) == streamList.end())
+    if (streamList.find(oggPage->serialno()) == streamList.end())
       continue;
 
     // get the stream item for easier access
-    StreamEntry& item = streamList[oggPage.serialno()];
+    StreamEntry& item = streamList[oggPage->serialno()];
 
     // insert the ogg page into the right stream decoder
     *(item.streamDecoder) << oggPage;
@@ -350,24 +350,24 @@ void StreamSerializer::insertNextPacket(StreamEntry& entry)
     *(entry.streamDecoder) >> newPacket;
 
     // set some additional data
-    newPacket.setStreamType(entry.streamConfig.type);
-    newPacket.setStreamNo(entry.streamConfig.streamNo);
+    newPacket->setStreamType(entry.streamConfig.type);
+    newPacket->setStreamNo(entry.streamConfig.streamNo);
 
     // if there is a position interpreter, use it to set the time
     // else set the time to 0
     if (entry.posInterpreter) {
-//      logger.debug() << "granpos stream: "<<newPacket.granulepos();
-      if (newPacket.granulepos() == -1) {
+//      logger.debug() << "granpos stream: "<<newPacket->granulepos();
+      if (newPacket->granulepos() == -1) {
         entry.posInterpreter->setStreamPosition(newPacket);
         entry.nextTime   = entry.posInterpreter->getActTime();
       } else {
-        int64 grPos = newPacket.granulepos();
+        int64 grPos = newPacket->granulepos();
         // the interpreter needs to be pushed forward
         entry.posInterpreter->setStreamPosition(newPacket);
-        newPacket.setGranulepos(grPos);
-        entry.nextTime = entry.posInterpreter->getTime(newPacket.granulepos());
+        newPacket->setGranulepos(grPos);
+        entry.nextTime = entry.posInterpreter->getTime(newPacket->granulepos());
       }
-//      logger.debug() << " calc: "<<newPacket.granulepos()<<std::endl;
+//      logger.debug() << " calc: "<<newPacket->granulepos()<<std::endl;
     } else {
       entry.nextTime   = 0;
     }
diff --git a/src/streamSerializer.h b/src/main/streamSerializer.h
similarity index 100%
rename from src/streamSerializer.h
rename to src/main/streamSerializer.h
diff --git a/src/videoHook.cpp b/src/main/videoHook.cpp
similarity index 96%
rename from src/videoHook.cpp
rename to src/main/videoHook.cpp
index ec652a7..d069d45 100644
--- a/src/videoHook.cpp
+++ b/src/main/videoHook.cpp
@@ -16,14 +16,14 @@
 #include "log.h"
 
 VideoHook::Config::Config()
-    : stretch(false), trimDatarateOrQuality(false), quality(3), preview(1)
+  : stretch(false), trimDatarateOrQuality(false), quality(3), preview(1)
 {
 }
 
 VideoHook::VideoHook(uint8 outStreamID, const bool copy, const bool keepComments) :
-    HookHandler(copy, keepComments), framerateDecoder(1), framerateEncoder(1),
-    aspectCorrection(1), time(0), nextTime(0), timeOffset(0), intensityStair(1),
-    changeSize(false)
+  HookHandler(copy, keepComments), framerateDecoder(1), framerateEncoder(1),
+  aspectCorrection(1), time(0), nextTime(0), timeOffset(0), intensityStair(1),
+  changeSize(false)
 {
   config.stretch = false;   // Try to keep the aspect ratio
   config.quality = 3;       // use good quality for resizing
@@ -68,7 +68,7 @@ HookHandler& VideoHook::operator<<(OggPacket& packet)
   inPacketCounter++;
 
   if (copy) {
-    packet.setStreamNo(encoder.getStreamNo());
+    packet->setStreamNo(encoder.getStreamNo());
     // in case, this is just a packet transfer, we need to create
     // the correct position
     if (TheoraPosInterpreter::packetIsKeyframe(packet))
@@ -76,7 +76,7 @@ HookHandler& VideoHook::operator<<(OggPacket& packet)
     else
       ++posCreator;
 
-    packet.setGranulepos(posCreator.getPosition());
+    packet->setGranulepos(posCreator.getPosition());
     outPacketCounter++;
     packetList.push_back(packet);
 
@@ -129,7 +129,7 @@ HookHandler& VideoHook::operator<<(OggPacket& packet)
           else
             ++posCreator;
 
-          packet.setGranulepos(posCreator.getPosition());
+          packet->setGranulepos(posCreator.getPosition());
           packetList.push_back(packet);
           nextTime = (outPacketCounter*framerateDecoder) + timeOffset;
 
@@ -336,7 +336,7 @@ void VideoHook::flush()
 
 OggType VideoHook::getType() const
 {
-  return(ogg_theora);
+  return(OggType::theora);
 }
 
 static bool operator==(const th_info& info1, const th_info& info2)
diff --git a/src/videoHook.h b/src/main/videoHook.h
similarity index 100%
rename from src/videoHook.h
rename to src/main/videoHook.h
diff --git a/src/makefile.am b/src/makefile.am
deleted file mode 100644
index e90bb78..0000000
--- a/src/makefile.am
+++ /dev/null
@@ -1,92 +0,0 @@
-bin_PROGRAMS = oggSplit oggDump oggJoin oggCut oggLength oggCat
-
-SRC_CORE = mediaUnit.cpp mediaRepository.cpp fileRepository.cpp rawMediaPacket.cpp \
-           mediaDecoder.cpp mediaEncoder.cpp mediaConverter.cpp \
-           oggDecoder.cpp oggStreamDecoder.cpp \
-           oggPage.cpp oggPacket.cpp ringbuffer.cpp oggRingbuffer.cpp crc.cpp \
-           granulePosInterpreter.cpp mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-           streamSerializer.cpp oggBOSExtractorFactory.cpp \
-           oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp streamParameter.cpp \
-           streamMux.cpp bufferRepository.cpp oggComment.cpp
-
-SRC_ADDITIONAL = cmdlineextractor.cpp basePlane.cpp rgbPlane.cpp blendElement.cpp
-
-SRC_OUTPUT = SDLvideoOutput.cpp
-
-# Theora independed information
-SRC_THEORA_INDEP = theoraPosInterpreter.cpp theoraStreamParameter.cpp theoraExtractor.cpp
-SRC_THEORA_DEP =  theoraDecoder.cpp theoraEncoder.cpp
-
-HDR_THEORA = theoraHeader.h
-
-SRC_VORBIS_INDEP = vorbisPosInterpreter.cpp vorbisStreamParameter.cpp vorbisExtractor.cpp
-# SRC_VORBIS_DEP = vorbisDecoder.cpp audioPacket.cpp
-
-SRC_VORBIS_DEP = vorbisDecoder.cpp vorbisEncoder.cpp audioPacket.cpp audioConverter.cpp
-
-HDR_VORBIS = vorbisHeader.h
-
-SRC_KATE_INDEP = katePosInterpreter.cpp kateStreamParameter.cpp kateExtractor.cpp
-
-SRC_SDL = SDLvideoOutput.cpp
-HDR_SDL = SDLvideoOutput.h
-
-LIBRESAMPLE = libresample/filterkit.c libresample/resample.c libresample/resamplesubs.c
-
-EFFECTORS =  effector.cpp crossfader.cpp plainPicture.cpp lowpassEffect.cpp kenburnseffect.cpp \
-	pictureResize.cpp pictureBlend.cpp pictureLoader.cpp
-
-HOOKS = hookHandler.cpp videoHook.cpp audioHook.cpp
-
-ADDHEADERS = refObject.h definition.h oggHeader.h oggTypes.h audioPacket.h \
-             streamConfig.h $(HDR_VORBIS) $(HDR_THEORA)  $(HDR_SDL)
-
-oggSplit_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggSplit.cpp
-
-oggDump_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggDump.cpp
-
-oggJoin_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggJoin.cpp
-
-oggCut_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggCut.cpp
-
-oggCat_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_VORBIS_DEP) $(SRC_GD) $(LIBRESAMPLE) $(SRC_ADDITIONAL) $(EFFECTORS) $(HOOKS) oggCat.cpp
-oggCat_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS) $(GD_CFLAGS)
-oggCat_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS) $(GD_LIBS)
-
-oggLength_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggLength.cpp
-
-if WANT_OGGSCROLL
-bin_PROGRAMS += oggScroll
-oggScroll_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_THEORA_DEP) $(SRC_KATE_INDEP) $(SRC_SDL)  $(SRC_ADDITIONAL) oggScroll.cpp
-oggScroll_CXXFLAGS = $(OGG_CFLAGS) $(VORBIS_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(SDL_CFLAGS)
-oggScroll_LDADD = $(OGG_LIBS) $(VORBIS_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(SDL_LIBS)
-endif
-
-if WANT_OGGSLIDESHOW
-bin_PROGRAMS += oggSlideshow
-oggSlideshow_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_GD) $(EFFECTORS) $(SRC_ADDITIONAL) oggSlideshow.cpp
-oggSlideshow_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(GD_CFLAGS)
-oggSlideshow_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(GD_LIBS)
-endif
-
-if WANT_OGGTHUMB
-bin_PROGRAMS += oggThumb
-oggThumb_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_GD) $(EFFECTORS) $(SRC_ADDITIONAL) oggThumb.cpp
-oggThumb_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(GD_CFLAGS)
-oggThumb_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(GD_LIBS)
-endif
-
-if WANT_OGGRESIZE
-bin_PROGRAMS += oggTranscode
-oggTranscode_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_VORBIS_DEP) $(SRC_GD) $(LIBRESAMPLE) $(SRC_ADDITIONAL) $(EFFECTORS) $(HOOKS) oggTranscode.cpp
-oggTranscode_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS) $(GD_CFLAGS)
-oggTranscode_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS) $(GD_LIBS)
-endif
-
-if WANT_OGGSILENCE
-bin_PROGRAMS += oggSilence
-oggSilence_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_VORBIS_DEP) $(LIBRESAMPLE) $(SRC_ADDITIONAL) oggSilence.cpp
-oggSilence_CXXFLAGS = $(OGG_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS)
-oggSilence_LDADD = $(OGG_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS)
-endif
-
diff --git a/src/makefile.in b/src/makefile.in
deleted file mode 100644
index 49ea7db..0000000
--- a/src/makefile.in
+++ /dev/null
@@ -1,4846 +0,0 @@
-# makefile.in generated by automake 1.11 from makefile.am.
-# @configure_input@
-
-# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
-# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
-# Inc.
-# This Makefile.in is free software; the Free Software Foundation
-# gives unlimited permission to copy and/or distribute it,
-# with or without modifications, as long as this notice is preserved.
-
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
-# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
-# PARTICULAR PURPOSE.
-
- at SET_MAKE@
-
-VPATH = @srcdir@
-pkgdatadir = $(datadir)/@PACKAGE@
-pkgincludedir = $(includedir)/@PACKAGE@
-pkglibdir = $(libdir)/@PACKAGE@
-pkglibexecdir = $(libexecdir)/@PACKAGE@
-am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
-install_sh_DATA = $(install_sh) -c -m 644
-install_sh_PROGRAM = $(install_sh) -c
-install_sh_SCRIPT = $(install_sh) -c
-INSTALL_HEADER = $(INSTALL_DATA)
-transform = $(program_transform_name)
-NORMAL_INSTALL = :
-PRE_INSTALL = :
-POST_INSTALL = :
-NORMAL_UNINSTALL = :
-PRE_UNINSTALL = :
-POST_UNINSTALL = :
-bin_PROGRAMS = oggSplit$(EXEEXT) oggDump$(EXEEXT) oggJoin$(EXEEXT) \
-	oggCut$(EXEEXT) oggLength$(EXEEXT) oggCat$(EXEEXT) \
-	$(am__EXEEXT_1) $(am__EXEEXT_2) $(am__EXEEXT_3) \
-	$(am__EXEEXT_4)
- at WANT_OGGSCROLL_TRUE@am__append_1 = oggScroll
-
-#if WANT_OGGSLIDESHOW
-#bin_PROGRAMS += oggSlideshow
-#oggSlideshow_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_GD) $(EFFECTORS) $(SRC_ADDITIONAL) oggSlideshow.cpp
-#oggSlideshow_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(GD_CFLAGS)
-#oggSlideshow_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(GD_LIBS)
-#endif
- at WANT_OGGTHUMB_TRUE@am__append_2 = oggThumb
- at WANT_OGGRESIZE_TRUE@am__append_3 = oggTranscode
- at WANT_OGGSILENCE_TRUE@am__append_4 = oggSilence
-subdir = src
-DIST_COMMON = $(srcdir)/makefile.am $(srcdir)/makefile.in
-ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
-am__aclocal_m4_deps = $(top_srcdir)/m4/pkg.m4 \
-	$(top_srcdir)/configure.ac
-am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
-	$(ACLOCAL_M4)
-mkinstalldirs = $(SHELL) $(top_srcdir)/admin/mkinstalldirs
-CONFIG_HEADER = $(top_builddir)/config.h
-CONFIG_CLEAN_FILES =
-CONFIG_CLEAN_VPATH_FILES =
- at WANT_OGGSCROLL_TRUE@am__EXEEXT_1 = oggScroll$(EXEEXT)
- at WANT_OGGTHUMB_TRUE@am__EXEEXT_2 = oggThumb$(EXEEXT)
- at WANT_OGGRESIZE_TRUE@am__EXEEXT_3 = oggTranscode$(EXEEXT)
- at WANT_OGGSILENCE_TRUE@am__EXEEXT_4 = oggSilence$(EXEEXT)
-am__installdirs = "$(DESTDIR)$(bindir)"
-PROGRAMS = $(bin_PROGRAMS)
-am__objects_1 = oggCat-mediaUnit.$(OBJEXT) \
-	oggCat-mediaRepository.$(OBJEXT) \
-	oggCat-fileRepository.$(OBJEXT) \
-	oggCat-rawMediaPacket.$(OBJEXT) oggCat-mediaDecoder.$(OBJEXT) \
-	oggCat-mediaEncoder.$(OBJEXT) oggCat-mediaConverter.$(OBJEXT) \
-	oggCat-oggDecoder.$(OBJEXT) oggCat-oggStreamDecoder.$(OBJEXT) \
-	oggCat-oggPage.$(OBJEXT) oggCat-oggPacket.$(OBJEXT) \
-	oggCat-ringbuffer.$(OBJEXT) oggCat-oggRingbuffer.$(OBJEXT) \
-	oggCat-crc.$(OBJEXT) oggCat-granulePosInterpreter.$(OBJEXT) \
-	oggCat-mediaOutputDecoder.$(OBJEXT) \
-	oggCat-mediaInputEncoder.$(OBJEXT) \
-	oggCat-streamSerializer.$(OBJEXT) \
-	oggCat-oggBOSExtractorFactory.$(OBJEXT) \
-	oggCat-oggStreamEncoder.$(OBJEXT) oggCat-oggEncoder.$(OBJEXT) \
-	oggCat-streamExtractor.$(OBJEXT) \
-	oggCat-streamParameter.$(OBJEXT) oggCat-streamMux.$(OBJEXT) \
-	oggCat-bufferRepository.$(OBJEXT) oggCat-oggComment.$(OBJEXT)
-am__objects_2 = oggCat-theoraPosInterpreter.$(OBJEXT) \
-	oggCat-theoraStreamParameter.$(OBJEXT) \
-	oggCat-theoraExtractor.$(OBJEXT)
-am__objects_3 = oggCat-vorbisPosInterpreter.$(OBJEXT) \
-	oggCat-vorbisStreamParameter.$(OBJEXT) \
-	oggCat-vorbisExtractor.$(OBJEXT)
-am__objects_4 = oggCat-katePosInterpreter.$(OBJEXT) \
-	oggCat-kateStreamParameter.$(OBJEXT) \
-	oggCat-kateExtractor.$(OBJEXT)
-am__objects_5 = oggCat-theoraDecoder.$(OBJEXT) \
-	oggCat-theoraEncoder.$(OBJEXT)
-am__objects_6 = oggCat-vorbisDecoder.$(OBJEXT) \
-	oggCat-vorbisEncoder.$(OBJEXT) oggCat-audioPacket.$(OBJEXT) \
-	oggCat-audioConverter.$(OBJEXT)
-am__objects_7 = filterkit.$(OBJEXT) resample.$(OBJEXT) \
-	resamplesubs.$(OBJEXT)
-am__objects_8 = oggCat-cmdlineextractor.$(OBJEXT) \
-	oggCat-basePlane.$(OBJEXT) oggCat-rgbPlane.$(OBJEXT) \
-	oggCat-blendElement.$(OBJEXT)
-am__objects_9 = oggCat-effector.$(OBJEXT) oggCat-crossfader.$(OBJEXT) \
-	oggCat-plainPicture.$(OBJEXT) oggCat-lowpassEffect.$(OBJEXT) \
-	oggCat-kenburnseffect.$(OBJEXT) oggCat-pictureResize.$(OBJEXT) \
-	oggCat-pictureBlend.$(OBJEXT) oggCat-pictureLoader.$(OBJEXT)
-am__objects_10 = oggCat-hookHandler.$(OBJEXT) \
-	oggCat-videoHook.$(OBJEXT) oggCat-audioHook.$(OBJEXT)
-am_oggCat_OBJECTS = $(am__objects_1) $(am__objects_2) $(am__objects_3) \
-	$(am__objects_4) $(am__objects_5) $(am__objects_6) \
-	$(am__objects_7) $(am__objects_8) $(am__objects_9) \
-	$(am__objects_10) oggCat-oggCat.$(OBJEXT)
-oggCat_OBJECTS = $(am_oggCat_OBJECTS)
-am__DEPENDENCIES_1 =
-oggCat_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
-	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
-	$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
-oggCat_LINK = $(CXXLD) $(oggCat_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
-	$(LDFLAGS) -o $@
-am__objects_11 = mediaUnit.$(OBJEXT) mediaRepository.$(OBJEXT) \
-	fileRepository.$(OBJEXT) rawMediaPacket.$(OBJEXT) \
-	mediaDecoder.$(OBJEXT) mediaEncoder.$(OBJEXT) \
-	mediaConverter.$(OBJEXT) oggDecoder.$(OBJEXT) \
-	oggStreamDecoder.$(OBJEXT) oggPage.$(OBJEXT) \
-	oggPacket.$(OBJEXT) ringbuffer.$(OBJEXT) \
-	oggRingbuffer.$(OBJEXT) crc.$(OBJEXT) \
-	granulePosInterpreter.$(OBJEXT) mediaOutputDecoder.$(OBJEXT) \
-	mediaInputEncoder.$(OBJEXT) streamSerializer.$(OBJEXT) \
-	oggBOSExtractorFactory.$(OBJEXT) oggStreamEncoder.$(OBJEXT) \
-	oggEncoder.$(OBJEXT) streamExtractor.$(OBJEXT) \
-	streamParameter.$(OBJEXT) streamMux.$(OBJEXT) \
-	bufferRepository.$(OBJEXT) oggComment.$(OBJEXT)
-am__objects_12 = cmdlineextractor.$(OBJEXT) basePlane.$(OBJEXT) \
-	rgbPlane.$(OBJEXT) blendElement.$(OBJEXT)
-am__objects_13 = theoraPosInterpreter.$(OBJEXT) \
-	theoraStreamParameter.$(OBJEXT) theoraExtractor.$(OBJEXT)
-am__objects_14 = vorbisPosInterpreter.$(OBJEXT) \
-	vorbisStreamParameter.$(OBJEXT) vorbisExtractor.$(OBJEXT)
-am__objects_15 = katePosInterpreter.$(OBJEXT) \
-	kateStreamParameter.$(OBJEXT) kateExtractor.$(OBJEXT)
-am_oggCut_OBJECTS = $(am__objects_11) $(am__objects_12) \
-	$(am__objects_13) $(am__objects_14) $(am__objects_15) \
-	oggCut.$(OBJEXT)
-oggCut_OBJECTS = $(am_oggCut_OBJECTS)
-oggCut_LDADD = $(LDADD)
-am_oggDump_OBJECTS = $(am__objects_11) $(am__objects_12) \
-	$(am__objects_13) $(am__objects_14) $(am__objects_15) \
-	oggDump.$(OBJEXT)
-oggDump_OBJECTS = $(am_oggDump_OBJECTS)
-oggDump_LDADD = $(LDADD)
-am_oggJoin_OBJECTS = $(am__objects_11) $(am__objects_12) \
-	$(am__objects_13) $(am__objects_14) $(am__objects_15) \
-	oggJoin.$(OBJEXT)
-oggJoin_OBJECTS = $(am_oggJoin_OBJECTS)
-oggJoin_LDADD = $(LDADD)
-am_oggLength_OBJECTS = $(am__objects_11) $(am__objects_12) \
-	$(am__objects_13) $(am__objects_14) $(am__objects_15) \
-	oggLength.$(OBJEXT)
-oggLength_OBJECTS = $(am_oggLength_OBJECTS)
-oggLength_LDADD = $(LDADD)
-am__oggScroll_SOURCES_DIST = mediaUnit.cpp mediaRepository.cpp \
-	fileRepository.cpp rawMediaPacket.cpp mediaDecoder.cpp \
-	mediaEncoder.cpp mediaConverter.cpp oggDecoder.cpp \
-	oggStreamDecoder.cpp oggPage.cpp oggPacket.cpp ringbuffer.cpp \
-	oggRingbuffer.cpp crc.cpp granulePosInterpreter.cpp \
-	mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-	streamSerializer.cpp oggBOSExtractorFactory.cpp \
-	oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp \
-	streamParameter.cpp streamMux.cpp bufferRepository.cpp \
-	oggComment.cpp theoraPosInterpreter.cpp \
-	theoraStreamParameter.cpp theoraExtractor.cpp \
-	vorbisPosInterpreter.cpp vorbisStreamParameter.cpp \
-	vorbisExtractor.cpp theoraDecoder.cpp theoraEncoder.cpp \
-	katePosInterpreter.cpp kateStreamParameter.cpp \
-	kateExtractor.cpp SDLvideoOutput.cpp cmdlineextractor.cpp \
-	basePlane.cpp rgbPlane.cpp blendElement.cpp oggScroll.cpp
-am__objects_16 = oggScroll-mediaUnit.$(OBJEXT) \
-	oggScroll-mediaRepository.$(OBJEXT) \
-	oggScroll-fileRepository.$(OBJEXT) \
-	oggScroll-rawMediaPacket.$(OBJEXT) \
-	oggScroll-mediaDecoder.$(OBJEXT) \
-	oggScroll-mediaEncoder.$(OBJEXT) \
-	oggScroll-mediaConverter.$(OBJEXT) \
-	oggScroll-oggDecoder.$(OBJEXT) \
-	oggScroll-oggStreamDecoder.$(OBJEXT) \
-	oggScroll-oggPage.$(OBJEXT) oggScroll-oggPacket.$(OBJEXT) \
-	oggScroll-ringbuffer.$(OBJEXT) \
-	oggScroll-oggRingbuffer.$(OBJEXT) oggScroll-crc.$(OBJEXT) \
-	oggScroll-granulePosInterpreter.$(OBJEXT) \
-	oggScroll-mediaOutputDecoder.$(OBJEXT) \
-	oggScroll-mediaInputEncoder.$(OBJEXT) \
-	oggScroll-streamSerializer.$(OBJEXT) \
-	oggScroll-oggBOSExtractorFactory.$(OBJEXT) \
-	oggScroll-oggStreamEncoder.$(OBJEXT) \
-	oggScroll-oggEncoder.$(OBJEXT) \
-	oggScroll-streamExtractor.$(OBJEXT) \
-	oggScroll-streamParameter.$(OBJEXT) \
-	oggScroll-streamMux.$(OBJEXT) \
-	oggScroll-bufferRepository.$(OBJEXT) \
-	oggScroll-oggComment.$(OBJEXT)
-am__objects_17 = oggScroll-theoraPosInterpreter.$(OBJEXT) \
-	oggScroll-theoraStreamParameter.$(OBJEXT) \
-	oggScroll-theoraExtractor.$(OBJEXT)
-am__objects_18 = oggScroll-vorbisPosInterpreter.$(OBJEXT) \
-	oggScroll-vorbisStreamParameter.$(OBJEXT) \
-	oggScroll-vorbisExtractor.$(OBJEXT)
-am__objects_19 = oggScroll-theoraDecoder.$(OBJEXT) \
-	oggScroll-theoraEncoder.$(OBJEXT)
-am__objects_20 = oggScroll-katePosInterpreter.$(OBJEXT) \
-	oggScroll-kateStreamParameter.$(OBJEXT) \
-	oggScroll-kateExtractor.$(OBJEXT)
-am__objects_21 = oggScroll-SDLvideoOutput.$(OBJEXT)
-am__objects_22 = oggScroll-cmdlineextractor.$(OBJEXT) \
-	oggScroll-basePlane.$(OBJEXT) oggScroll-rgbPlane.$(OBJEXT) \
-	oggScroll-blendElement.$(OBJEXT)
- at WANT_OGGSCROLL_TRUE@am_oggScroll_OBJECTS = $(am__objects_16) \
- at WANT_OGGSCROLL_TRUE@	$(am__objects_17) $(am__objects_18) \
- at WANT_OGGSCROLL_TRUE@	$(am__objects_19) $(am__objects_20) \
- at WANT_OGGSCROLL_TRUE@	$(am__objects_21) $(am__objects_22) \
- at WANT_OGGSCROLL_TRUE@	oggScroll-oggScroll.$(OBJEXT)
-oggScroll_OBJECTS = $(am_oggScroll_OBJECTS)
- at WANT_OGGSCROLL_TRUE@oggScroll_DEPENDENCIES = $(am__DEPENDENCIES_1) \
- at WANT_OGGSCROLL_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGSCROLL_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGSCROLL_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGSCROLL_TRUE@	$(am__DEPENDENCIES_1)
-oggScroll_LINK = $(CXXLD) $(oggScroll_CXXFLAGS) $(CXXFLAGS) \
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-am__oggSilence_SOURCES_DIST = mediaUnit.cpp mediaRepository.cpp \
-	fileRepository.cpp rawMediaPacket.cpp mediaDecoder.cpp \
-	mediaEncoder.cpp mediaConverter.cpp oggDecoder.cpp \
-	oggStreamDecoder.cpp oggPage.cpp oggPacket.cpp ringbuffer.cpp \
-	oggRingbuffer.cpp crc.cpp granulePosInterpreter.cpp \
-	mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-	streamSerializer.cpp oggBOSExtractorFactory.cpp \
-	oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp \
-	streamParameter.cpp streamMux.cpp bufferRepository.cpp \
-	oggComment.cpp theoraPosInterpreter.cpp \
-	theoraStreamParameter.cpp theoraExtractor.cpp \
-	vorbisPosInterpreter.cpp vorbisStreamParameter.cpp \
-	vorbisExtractor.cpp katePosInterpreter.cpp \
-	kateStreamParameter.cpp kateExtractor.cpp vorbisDecoder.cpp \
-	vorbisEncoder.cpp audioPacket.cpp audioConverter.cpp \
-	libresample/filterkit.c libresample/resample.c \
-	libresample/resamplesubs.c cmdlineextractor.cpp basePlane.cpp \
-	rgbPlane.cpp blendElement.cpp oggSilence.cpp
-am__objects_23 = oggSilence-mediaUnit.$(OBJEXT) \
-	oggSilence-mediaRepository.$(OBJEXT) \
-	oggSilence-fileRepository.$(OBJEXT) \
-	oggSilence-rawMediaPacket.$(OBJEXT) \
-	oggSilence-mediaDecoder.$(OBJEXT) \
-	oggSilence-mediaEncoder.$(OBJEXT) \
-	oggSilence-mediaConverter.$(OBJEXT) \
-	oggSilence-oggDecoder.$(OBJEXT) \
-	oggSilence-oggStreamDecoder.$(OBJEXT) \
-	oggSilence-oggPage.$(OBJEXT) oggSilence-oggPacket.$(OBJEXT) \
-	oggSilence-ringbuffer.$(OBJEXT) \
-	oggSilence-oggRingbuffer.$(OBJEXT) oggSilence-crc.$(OBJEXT) \
-	oggSilence-granulePosInterpreter.$(OBJEXT) \
-	oggSilence-mediaOutputDecoder.$(OBJEXT) \
-	oggSilence-mediaInputEncoder.$(OBJEXT) \
-	oggSilence-streamSerializer.$(OBJEXT) \
-	oggSilence-oggBOSExtractorFactory.$(OBJEXT) \
-	oggSilence-oggStreamEncoder.$(OBJEXT) \
-	oggSilence-oggEncoder.$(OBJEXT) \
-	oggSilence-streamExtractor.$(OBJEXT) \
-	oggSilence-streamParameter.$(OBJEXT) \
-	oggSilence-streamMux.$(OBJEXT) \
-	oggSilence-bufferRepository.$(OBJEXT) \
-	oggSilence-oggComment.$(OBJEXT)
-am__objects_24 = oggSilence-theoraPosInterpreter.$(OBJEXT) \
-	oggSilence-theoraStreamParameter.$(OBJEXT) \
-	oggSilence-theoraExtractor.$(OBJEXT)
-am__objects_25 = oggSilence-vorbisPosInterpreter.$(OBJEXT) \
-	oggSilence-vorbisStreamParameter.$(OBJEXT) \
-	oggSilence-vorbisExtractor.$(OBJEXT)
-am__objects_26 = oggSilence-katePosInterpreter.$(OBJEXT) \
-	oggSilence-kateStreamParameter.$(OBJEXT) \
-	oggSilence-kateExtractor.$(OBJEXT)
-am__objects_27 = oggSilence-vorbisDecoder.$(OBJEXT) \
-	oggSilence-vorbisEncoder.$(OBJEXT) \
-	oggSilence-audioPacket.$(OBJEXT) \
-	oggSilence-audioConverter.$(OBJEXT)
-am__objects_28 = oggSilence-cmdlineextractor.$(OBJEXT) \
-	oggSilence-basePlane.$(OBJEXT) oggSilence-rgbPlane.$(OBJEXT) \
-	oggSilence-blendElement.$(OBJEXT)
- at WANT_OGGSILENCE_TRUE@am_oggSilence_OBJECTS = $(am__objects_23) \
- at WANT_OGGSILENCE_TRUE@	$(am__objects_24) $(am__objects_25) \
- at WANT_OGGSILENCE_TRUE@	$(am__objects_26) $(am__objects_27) \
- at WANT_OGGSILENCE_TRUE@	$(am__objects_7) $(am__objects_28) \
- at WANT_OGGSILENCE_TRUE@	oggSilence-oggSilence.$(OBJEXT)
-oggSilence_OBJECTS = $(am_oggSilence_OBJECTS)
- at WANT_OGGSILENCE_TRUE@oggSilence_DEPENDENCIES = $(am__DEPENDENCIES_1) \
- at WANT_OGGSILENCE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGSILENCE_TRUE@	$(am__DEPENDENCIES_1)
-oggSilence_LINK = $(CXXLD) $(oggSilence_CXXFLAGS) $(CXXFLAGS) \
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-am_oggSplit_OBJECTS = $(am__objects_11) $(am__objects_12) \
-	$(am__objects_13) $(am__objects_14) $(am__objects_15) \
-	oggSplit.$(OBJEXT)
-oggSplit_OBJECTS = $(am_oggSplit_OBJECTS)
-oggSplit_LDADD = $(LDADD)
-am__oggThumb_SOURCES_DIST = mediaUnit.cpp mediaRepository.cpp \
-	fileRepository.cpp rawMediaPacket.cpp mediaDecoder.cpp \
-	mediaEncoder.cpp mediaConverter.cpp oggDecoder.cpp \
-	oggStreamDecoder.cpp oggPage.cpp oggPacket.cpp ringbuffer.cpp \
-	oggRingbuffer.cpp crc.cpp granulePosInterpreter.cpp \
-	mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-	streamSerializer.cpp oggBOSExtractorFactory.cpp \
-	oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp \
-	streamParameter.cpp streamMux.cpp bufferRepository.cpp \
-	oggComment.cpp theoraPosInterpreter.cpp \
-	theoraStreamParameter.cpp theoraExtractor.cpp \
-	vorbisPosInterpreter.cpp vorbisStreamParameter.cpp \
-	vorbisExtractor.cpp katePosInterpreter.cpp \
-	kateStreamParameter.cpp kateExtractor.cpp theoraDecoder.cpp \
-	theoraEncoder.cpp effector.cpp crossfader.cpp plainPicture.cpp \
-	lowpassEffect.cpp kenburnseffect.cpp pictureResize.cpp \
-	pictureBlend.cpp pictureLoader.cpp cmdlineextractor.cpp \
-	basePlane.cpp rgbPlane.cpp blendElement.cpp oggThumb.cpp
-am__objects_29 = oggThumb-mediaUnit.$(OBJEXT) \
-	oggThumb-mediaRepository.$(OBJEXT) \
-	oggThumb-fileRepository.$(OBJEXT) \
-	oggThumb-rawMediaPacket.$(OBJEXT) \
-	oggThumb-mediaDecoder.$(OBJEXT) \
-	oggThumb-mediaEncoder.$(OBJEXT) \
-	oggThumb-mediaConverter.$(OBJEXT) \
-	oggThumb-oggDecoder.$(OBJEXT) \
-	oggThumb-oggStreamDecoder.$(OBJEXT) oggThumb-oggPage.$(OBJEXT) \
-	oggThumb-oggPacket.$(OBJEXT) oggThumb-ringbuffer.$(OBJEXT) \
-	oggThumb-oggRingbuffer.$(OBJEXT) oggThumb-crc.$(OBJEXT) \
-	oggThumb-granulePosInterpreter.$(OBJEXT) \
-	oggThumb-mediaOutputDecoder.$(OBJEXT) \
-	oggThumb-mediaInputEncoder.$(OBJEXT) \
-	oggThumb-streamSerializer.$(OBJEXT) \
-	oggThumb-oggBOSExtractorFactory.$(OBJEXT) \
-	oggThumb-oggStreamEncoder.$(OBJEXT) \
-	oggThumb-oggEncoder.$(OBJEXT) \
-	oggThumb-streamExtractor.$(OBJEXT) \
-	oggThumb-streamParameter.$(OBJEXT) \
-	oggThumb-streamMux.$(OBJEXT) \
-	oggThumb-bufferRepository.$(OBJEXT) \
-	oggThumb-oggComment.$(OBJEXT)
-am__objects_30 = oggThumb-theoraPosInterpreter.$(OBJEXT) \
-	oggThumb-theoraStreamParameter.$(OBJEXT) \
-	oggThumb-theoraExtractor.$(OBJEXT)
-am__objects_31 = oggThumb-vorbisPosInterpreter.$(OBJEXT) \
-	oggThumb-vorbisStreamParameter.$(OBJEXT) \
-	oggThumb-vorbisExtractor.$(OBJEXT)
-am__objects_32 = oggThumb-katePosInterpreter.$(OBJEXT) \
-	oggThumb-kateStreamParameter.$(OBJEXT) \
-	oggThumb-kateExtractor.$(OBJEXT)
-am__objects_33 = oggThumb-theoraDecoder.$(OBJEXT) \
-	oggThumb-theoraEncoder.$(OBJEXT)
-am__objects_34 = oggThumb-effector.$(OBJEXT) \
-	oggThumb-crossfader.$(OBJEXT) oggThumb-plainPicture.$(OBJEXT) \
-	oggThumb-lowpassEffect.$(OBJEXT) \
-	oggThumb-kenburnseffect.$(OBJEXT) \
-	oggThumb-pictureResize.$(OBJEXT) \
-	oggThumb-pictureBlend.$(OBJEXT) \
-	oggThumb-pictureLoader.$(OBJEXT)
-am__objects_35 = oggThumb-cmdlineextractor.$(OBJEXT) \
-	oggThumb-basePlane.$(OBJEXT) oggThumb-rgbPlane.$(OBJEXT) \
-	oggThumb-blendElement.$(OBJEXT)
- at WANT_OGGTHUMB_TRUE@am_oggThumb_OBJECTS = $(am__objects_29) \
- at WANT_OGGTHUMB_TRUE@	$(am__objects_30) $(am__objects_31) \
- at WANT_OGGTHUMB_TRUE@	$(am__objects_32) $(am__objects_33) \
- at WANT_OGGTHUMB_TRUE@	$(am__objects_34) $(am__objects_35) \
- at WANT_OGGTHUMB_TRUE@	oggThumb-oggThumb.$(OBJEXT)
-oggThumb_OBJECTS = $(am_oggThumb_OBJECTS)
- at WANT_OGGTHUMB_TRUE@oggThumb_DEPENDENCIES = $(am__DEPENDENCIES_1) \
- at WANT_OGGTHUMB_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGTHUMB_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGTHUMB_TRUE@	$(am__DEPENDENCIES_1)
-oggThumb_LINK = $(CXXLD) $(oggThumb_CXXFLAGS) $(CXXFLAGS) \
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-am__oggTranscode_SOURCES_DIST = mediaUnit.cpp mediaRepository.cpp \
-	fileRepository.cpp rawMediaPacket.cpp mediaDecoder.cpp \
-	mediaEncoder.cpp mediaConverter.cpp oggDecoder.cpp \
-	oggStreamDecoder.cpp oggPage.cpp oggPacket.cpp ringbuffer.cpp \
-	oggRingbuffer.cpp crc.cpp granulePosInterpreter.cpp \
-	mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-	streamSerializer.cpp oggBOSExtractorFactory.cpp \
-	oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp \
-	streamParameter.cpp streamMux.cpp bufferRepository.cpp \
-	oggComment.cpp theoraPosInterpreter.cpp \
-	theoraStreamParameter.cpp theoraExtractor.cpp \
-	vorbisPosInterpreter.cpp vorbisStreamParameter.cpp \
-	vorbisExtractor.cpp katePosInterpreter.cpp \
-	kateStreamParameter.cpp kateExtractor.cpp theoraDecoder.cpp \
-	theoraEncoder.cpp vorbisDecoder.cpp vorbisEncoder.cpp \
-	audioPacket.cpp audioConverter.cpp libresample/filterkit.c \
-	libresample/resample.c libresample/resamplesubs.c \
-	cmdlineextractor.cpp basePlane.cpp rgbPlane.cpp \
-	blendElement.cpp effector.cpp crossfader.cpp plainPicture.cpp \
-	lowpassEffect.cpp kenburnseffect.cpp pictureResize.cpp \
-	pictureBlend.cpp pictureLoader.cpp hookHandler.cpp \
-	videoHook.cpp audioHook.cpp oggTranscode.cpp
-am__objects_36 = oggTranscode-mediaUnit.$(OBJEXT) \
-	oggTranscode-mediaRepository.$(OBJEXT) \
-	oggTranscode-fileRepository.$(OBJEXT) \
-	oggTranscode-rawMediaPacket.$(OBJEXT) \
-	oggTranscode-mediaDecoder.$(OBJEXT) \
-	oggTranscode-mediaEncoder.$(OBJEXT) \
-	oggTranscode-mediaConverter.$(OBJEXT) \
-	oggTranscode-oggDecoder.$(OBJEXT) \
-	oggTranscode-oggStreamDecoder.$(OBJEXT) \
-	oggTranscode-oggPage.$(OBJEXT) \
-	oggTranscode-oggPacket.$(OBJEXT) \
-	oggTranscode-ringbuffer.$(OBJEXT) \
-	oggTranscode-oggRingbuffer.$(OBJEXT) \
-	oggTranscode-crc.$(OBJEXT) \
-	oggTranscode-granulePosInterpreter.$(OBJEXT) \
-	oggTranscode-mediaOutputDecoder.$(OBJEXT) \
-	oggTranscode-mediaInputEncoder.$(OBJEXT) \
-	oggTranscode-streamSerializer.$(OBJEXT) \
-	oggTranscode-oggBOSExtractorFactory.$(OBJEXT) \
-	oggTranscode-oggStreamEncoder.$(OBJEXT) \
-	oggTranscode-oggEncoder.$(OBJEXT) \
-	oggTranscode-streamExtractor.$(OBJEXT) \
-	oggTranscode-streamParameter.$(OBJEXT) \
-	oggTranscode-streamMux.$(OBJEXT) \
-	oggTranscode-bufferRepository.$(OBJEXT) \
-	oggTranscode-oggComment.$(OBJEXT)
-am__objects_37 = oggTranscode-theoraPosInterpreter.$(OBJEXT) \
-	oggTranscode-theoraStreamParameter.$(OBJEXT) \
-	oggTranscode-theoraExtractor.$(OBJEXT)
-am__objects_38 = oggTranscode-vorbisPosInterpreter.$(OBJEXT) \
-	oggTranscode-vorbisStreamParameter.$(OBJEXT) \
-	oggTranscode-vorbisExtractor.$(OBJEXT)
-am__objects_39 = oggTranscode-katePosInterpreter.$(OBJEXT) \
-	oggTranscode-kateStreamParameter.$(OBJEXT) \
-	oggTranscode-kateExtractor.$(OBJEXT)
-am__objects_40 = oggTranscode-theoraDecoder.$(OBJEXT) \
-	oggTranscode-theoraEncoder.$(OBJEXT)
-am__objects_41 = oggTranscode-vorbisDecoder.$(OBJEXT) \
-	oggTranscode-vorbisEncoder.$(OBJEXT) \
-	oggTranscode-audioPacket.$(OBJEXT) \
-	oggTranscode-audioConverter.$(OBJEXT)
-am__objects_42 = oggTranscode-cmdlineextractor.$(OBJEXT) \
-	oggTranscode-basePlane.$(OBJEXT) \
-	oggTranscode-rgbPlane.$(OBJEXT) \
-	oggTranscode-blendElement.$(OBJEXT)
-am__objects_43 = oggTranscode-effector.$(OBJEXT) \
-	oggTranscode-crossfader.$(OBJEXT) \
-	oggTranscode-plainPicture.$(OBJEXT) \
-	oggTranscode-lowpassEffect.$(OBJEXT) \
-	oggTranscode-kenburnseffect.$(OBJEXT) \
-	oggTranscode-pictureResize.$(OBJEXT) \
-	oggTranscode-pictureBlend.$(OBJEXT) \
-	oggTranscode-pictureLoader.$(OBJEXT)
-am__objects_44 = oggTranscode-hookHandler.$(OBJEXT) \
-	oggTranscode-videoHook.$(OBJEXT) \
-	oggTranscode-audioHook.$(OBJEXT)
- at WANT_OGGRESIZE_TRUE@am_oggTranscode_OBJECTS = $(am__objects_36) \
- at WANT_OGGRESIZE_TRUE@	$(am__objects_37) $(am__objects_38) \
- at WANT_OGGRESIZE_TRUE@	$(am__objects_39) $(am__objects_40) \
- at WANT_OGGRESIZE_TRUE@	$(am__objects_41) $(am__objects_7) \
- at WANT_OGGRESIZE_TRUE@	$(am__objects_42) $(am__objects_43) \
- at WANT_OGGRESIZE_TRUE@	$(am__objects_44) \
- at WANT_OGGRESIZE_TRUE@	oggTranscode-oggTranscode.$(OBJEXT)
-oggTranscode_OBJECTS = $(am_oggTranscode_OBJECTS)
- at WANT_OGGRESIZE_TRUE@oggTranscode_DEPENDENCIES =  \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1) \
- at WANT_OGGRESIZE_TRUE@	$(am__DEPENDENCIES_1)
-oggTranscode_LINK = $(CXXLD) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) \
-	$(AM_LDFLAGS) $(LDFLAGS) -o $@
-DEFAULT_INCLUDES = -I. at am__isrc@ -I$(top_builddir)
-depcomp = $(SHELL) $(top_srcdir)/admin/depcomp
-am__depfiles_maybe = depfiles
-am__mv = mv -f
-COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
-	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
-CCLD = $(CC)
-LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
-CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
-	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
-CXXLD = $(CXX)
-CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
-	-o $@
-SOURCES = $(oggCat_SOURCES) $(oggCut_SOURCES) $(oggDump_SOURCES) \
-	$(oggJoin_SOURCES) $(oggLength_SOURCES) $(oggScroll_SOURCES) \
-	$(oggSilence_SOURCES) $(oggSplit_SOURCES) $(oggThumb_SOURCES) \
-	$(oggTranscode_SOURCES)
-DIST_SOURCES = $(oggCat_SOURCES) $(oggCut_SOURCES) $(oggDump_SOURCES) \
-	$(oggJoin_SOURCES) $(oggLength_SOURCES) \
-	$(am__oggScroll_SOURCES_DIST) $(am__oggSilence_SOURCES_DIST) \
-	$(oggSplit_SOURCES) $(am__oggThumb_SOURCES_DIST) \
-	$(am__oggTranscode_SOURCES_DIST)
-ETAGS = etags
-CTAGS = ctags
-DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
-ACLOCAL = @ACLOCAL@
-AMTAR = @AMTAR@
-AUTOCONF = @AUTOCONF@
-AUTOHEADER = @AUTOHEADER@
-AUTOMAKE = @AUTOMAKE@
-AWK = @AWK@
-CC = @CC@
-CCDEPMODE = @CCDEPMODE@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-CXX = @CXX@
-CXXCPP = @CXXCPP@
-CXXDEPMODE = @CXXDEPMODE@
-CXXFLAGS = @CXXFLAGS@
-CYGPATH_W = @CYGPATH_W@
-DEFS = @DEFS@
-DEPDIR = @DEPDIR@
-ECHO_C = @ECHO_C@
-ECHO_N = @ECHO_N@
-ECHO_T = @ECHO_T@
-EGREP = @EGREP@
-EXEEXT = @EXEEXT@
-GD_CFLAGS = @GD_CFLAGS@
-GD_CONFIG = @GD_CONFIG@
-GD_LIBS = @GD_LIBS@
-GREP = @GREP@
-INSTALL = @INSTALL@
-INSTALL_DATA = @INSTALL_DATA@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_SCRIPT = @INSTALL_SCRIPT@
-INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
-LDFLAGS = @LDFLAGS@
-LIBOBJS = @LIBOBJS@
-LIBS = @LIBS@
-LTLIBOBJS = @LTLIBOBJS@
-MAKEINFO = @MAKEINFO@
-MKDIR_P = @MKDIR_P@
-OBJEXT = @OBJEXT@
-OGG_CFLAGS = @OGG_CFLAGS@
-OGG_LIBS = @OGG_LIBS@
-PACKAGE = @PACKAGE@
-PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
-PACKAGE_NAME = @PACKAGE_NAME@
-PACKAGE_STRING = @PACKAGE_STRING@
-PACKAGE_TARNAME = @PACKAGE_TARNAME@
-PACKAGE_VERSION = @PACKAGE_VERSION@
-PATH_SEPARATOR = @PATH_SEPARATOR@
-PKG_CONFIG = @PKG_CONFIG@
-RANLIB = @RANLIB@
-SDL_CFLAGS = @SDL_CFLAGS@
-SDL_LIBS = @SDL_LIBS@
-SET_MAKE = @SET_MAKE@
-SHELL = @SHELL@
-STRIP = @STRIP@
-THEORADEC_CFLAGS = @THEORADEC_CFLAGS@
-THEORADEC_LIBS = @THEORADEC_LIBS@
-THEORAENC_CFLAGS = @THEORAENC_CFLAGS@
-THEORAENC_LIBS = @THEORAENC_LIBS@
-VERSION = @VERSION@
-VORBISENC_CFLAGS = @VORBISENC_CFLAGS@
-VORBISENC_LIBS = @VORBISENC_LIBS@
-VORBIS_CFLAGS = @VORBIS_CFLAGS@
-VORBIS_LIBS = @VORBIS_LIBS@
-abs_builddir = @abs_builddir@
-abs_srcdir = @abs_srcdir@
-abs_top_builddir = @abs_top_builddir@
-abs_top_srcdir = @abs_top_srcdir@
-ac_ct_CC = @ac_ct_CC@
-ac_ct_CXX = @ac_ct_CXX@
-am__include = @am__include@
-am__leading_dot = @am__leading_dot@
-am__quote = @am__quote@
-am__tar = @am__tar@
-am__untar = @am__untar@
-bindir = @bindir@
-build_alias = @build_alias@
-builddir = @builddir@
-datadir = @datadir@
-datarootdir = @datarootdir@
-docdir = @docdir@
-dvidir = @dvidir@
-exec_prefix = @exec_prefix@
-host_alias = @host_alias@
-htmldir = @htmldir@
-includedir = @includedir@
-infodir = @infodir@
-install_sh = @install_sh@
-libdir = @libdir@
-libexecdir = @libexecdir@
-localedir = @localedir@
-localstatedir = @localstatedir@
-mandir = @mandir@
-mkdir_p = @mkdir_p@
-oldincludedir = @oldincludedir@
-pdfdir = @pdfdir@
-prefix = @prefix@
-program_transform_name = @program_transform_name@
-psdir = @psdir@
-sbindir = @sbindir@
-sharedstatedir = @sharedstatedir@
-srcdir = @srcdir@
-sysconfdir = @sysconfdir@
-target_alias = @target_alias@
-top_build_prefix = @top_build_prefix@
-top_builddir = @top_builddir@
-top_srcdir = @top_srcdir@
-SRC_CORE = mediaUnit.cpp mediaRepository.cpp fileRepository.cpp rawMediaPacket.cpp \
-           mediaDecoder.cpp mediaEncoder.cpp mediaConverter.cpp \
-           oggDecoder.cpp oggStreamDecoder.cpp \
-           oggPage.cpp oggPacket.cpp ringbuffer.cpp oggRingbuffer.cpp crc.cpp \
-           granulePosInterpreter.cpp mediaOutputDecoder.cpp mediaInputEncoder.cpp \
-           streamSerializer.cpp oggBOSExtractorFactory.cpp \
-           oggStreamEncoder.cpp oggEncoder.cpp streamExtractor.cpp streamParameter.cpp \
-           streamMux.cpp bufferRepository.cpp oggComment.cpp
-
-SRC_ADDITIONAL = cmdlineextractor.cpp basePlane.cpp rgbPlane.cpp blendElement.cpp
-SRC_OUTPUT = SDLvideoOutput.cpp
-
-# Theora independed information
-SRC_THEORA_INDEP = theoraPosInterpreter.cpp theoraStreamParameter.cpp theoraExtractor.cpp
-SRC_THEORA_DEP = theoraDecoder.cpp theoraEncoder.cpp
-HDR_THEORA = theoraHeader.h
-SRC_VORBIS_INDEP = vorbisPosInterpreter.cpp vorbisStreamParameter.cpp vorbisExtractor.cpp
-# SRC_VORBIS_DEP = vorbisDecoder.cpp audioPacket.cpp
-SRC_VORBIS_DEP = vorbisDecoder.cpp vorbisEncoder.cpp audioPacket.cpp audioConverter.cpp
-HDR_VORBIS = vorbisHeader.h
-SRC_KATE_INDEP = katePosInterpreter.cpp kateStreamParameter.cpp kateExtractor.cpp
-SRC_SDL = SDLvideoOutput.cpp
-HDR_SDL = SDLvideoOutput.h
-LIBRESAMPLE = libresample/filterkit.c libresample/resample.c libresample/resamplesubs.c
-EFFECTORS = effector.cpp crossfader.cpp plainPicture.cpp lowpassEffect.cpp kenburnseffect.cpp \
-	pictureResize.cpp pictureBlend.cpp pictureLoader.cpp
-
-HOOKS = hookHandler.cpp videoHook.cpp audioHook.cpp
-ADDHEADERS = refObject.h definition.h oggHeader.h oggTypes.h audioPacket.h \
-             streamConfig.h $(HDR_VORBIS) $(HDR_THEORA)  $(HDR_SDL)
-
-oggSplit_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggSplit.cpp
-oggDump_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggDump.cpp
-oggJoin_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggJoin.cpp
-oggCut_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggCut.cpp
-oggCat_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_VORBIS_DEP) $(SRC_GD) $(LIBRESAMPLE) $(SRC_ADDITIONAL) $(EFFECTORS) $(HOOKS) oggCat.cpp
-oggCat_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS) $(GD_CFLAGS)
-oggCat_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS) $(GD_LIBS)
-oggLength_SOURCES = $(SRC_CORE) $(SRC_ADDITIONAL) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) oggLength.cpp
- at WANT_OGGSCROLL_TRUE@oggScroll_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_THEORA_DEP) $(SRC_KATE_INDEP) $(SRC_SDL)  $(SRC_ADDITIONAL) oggScroll.cpp
- at WANT_OGGSCROLL_TRUE@oggScroll_CXXFLAGS = $(OGG_CFLAGS) $(VORBIS_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(SDL_CFLAGS)
- at WANT_OGGSCROLL_TRUE@oggScroll_LDADD = $(OGG_LIBS) $(VORBIS_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(SDL_LIBS)
- at WANT_OGGTHUMB_TRUE@oggThumb_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_GD) $(EFFECTORS) $(SRC_ADDITIONAL) oggThumb.cpp
- at WANT_OGGTHUMB_TRUE@oggThumb_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(GD_CFLAGS)
- at WANT_OGGTHUMB_TRUE@oggThumb_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(GD_LIBS)
- at WANT_OGGRESIZE_TRUE@oggTranscode_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_THEORA_DEP) $(SRC_VORBIS_DEP) $(SRC_GD) $(LIBRESAMPLE) $(SRC_ADDITIONAL) $(EFFECTORS) $(HOOKS) oggTranscode.cpp
- at WANT_OGGRESIZE_TRUE@oggTranscode_CXXFLAGS = $(OGG_CFLAGS) $(THEORAENC_CFLAGS) $(THEORADEC_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS) $(GD_CFLAGS)
- at WANT_OGGRESIZE_TRUE@oggTranscode_LDADD = $(OGG_LIBS) $(THEORAENC_LIBS) $(THEORADEC_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS) $(GD_LIBS)
- at WANT_OGGSILENCE_TRUE@oggSilence_SOURCES = $(SRC_CORE) $(SRC_THEORA_INDEP) $(SRC_VORBIS_INDEP) $(SRC_KATE_INDEP) $(SRC_VORBIS_DEP) $(LIBRESAMPLE) $(SRC_ADDITIONAL) oggSilence.cpp
- at WANT_OGGSILENCE_TRUE@oggSilence_CXXFLAGS = $(OGG_CFLAGS) $(VORBIS_CFLAGS) $(VORBISENC_CFLAGS)
- at WANT_OGGSILENCE_TRUE@oggSilence_LDADD = $(OGG_LIBS) $(VORBIS_LIBS) $(VORBISENC_LIBS)
-all: all-am
-
-.SUFFIXES:
-.SUFFIXES: .c .cpp .o .obj
-$(srcdir)/makefile.in:  $(srcdir)/makefile.am  $(am__configure_deps)
-	@for dep in $?; do \
-	  case '$(am__configure_deps)' in \
-	    *$$dep*) \
-	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
-	        && { if test -f $@; then exit 0; else break; fi; }; \
-	      exit 1;; \
-	  esac; \
-	done; \
-	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/makefile'; \
-	$(am__cd) $(top_srcdir) && \
-	  $(AUTOMAKE) --gnu src/makefile
-.PRECIOUS: makefile
-makefile: $(srcdir)/makefile.in $(top_builddir)/config.status
-	@case '$?' in \
-	  *config.status*) \
-	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
-	  *) \
-	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
-	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
-	esac;
-
-$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-
-$(top_srcdir)/configure:  $(am__configure_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(ACLOCAL_M4):  $(am__aclocal_m4_deps)
-	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
-$(am__aclocal_m4_deps):
-install-binPROGRAMS: $(bin_PROGRAMS)
-	@$(NORMAL_INSTALL)
-	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
-	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
-	for p in $$list; do echo "$$p $$p"; done | \
-	sed 's/$(EXEEXT)$$//' | \
-	while read p p1; do if test -f $$p; \
-	  then echo "$$p"; echo "$$p"; else :; fi; \
-	done | \
-	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
-	sed 'N;N;N;s,\n, ,g' | \
-	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
-	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
-	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
-	    else { print "f", $$3 "/" $$4, $$1; } } \
-	  END { for (d in files) print "f", d, files[d] }' | \
-	while read type dir files; do \
-	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
-	    test -z "$$files" || { \
-	      echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
-	      $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
-	    } \
-	; done
-
-uninstall-binPROGRAMS:
-	@$(NORMAL_UNINSTALL)
-	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
-	files=`for p in $$list; do echo "$$p"; done | \
-	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-	      -e 's/$$/$(EXEEXT)/' `; \
-	test -n "$$list" || exit 0; \
-	echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
-	cd "$(DESTDIR)$(bindir)" && rm -f $$files
-
-clean-binPROGRAMS:
-	-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
-oggCat$(EXEEXT): $(oggCat_OBJECTS) $(oggCat_DEPENDENCIES) 
-	@rm -f oggCat$(EXEEXT)
-	$(oggCat_LINK) $(oggCat_OBJECTS) $(oggCat_LDADD) $(LIBS)
-oggCut$(EXEEXT): $(oggCut_OBJECTS) $(oggCut_DEPENDENCIES) 
-	@rm -f oggCut$(EXEEXT)
-	$(CXXLINK) $(oggCut_OBJECTS) $(oggCut_LDADD) $(LIBS)
-oggDump$(EXEEXT): $(oggDump_OBJECTS) $(oggDump_DEPENDENCIES) 
-	@rm -f oggDump$(EXEEXT)
-	$(CXXLINK) $(oggDump_OBJECTS) $(oggDump_LDADD) $(LIBS)
-oggJoin$(EXEEXT): $(oggJoin_OBJECTS) $(oggJoin_DEPENDENCIES) 
-	@rm -f oggJoin$(EXEEXT)
-	$(CXXLINK) $(oggJoin_OBJECTS) $(oggJoin_LDADD) $(LIBS)
-oggLength$(EXEEXT): $(oggLength_OBJECTS) $(oggLength_DEPENDENCIES) 
-	@rm -f oggLength$(EXEEXT)
-	$(CXXLINK) $(oggLength_OBJECTS) $(oggLength_LDADD) $(LIBS)
-oggScroll$(EXEEXT): $(oggScroll_OBJECTS) $(oggScroll_DEPENDENCIES) 
-	@rm -f oggScroll$(EXEEXT)
-	$(oggScroll_LINK) $(oggScroll_OBJECTS) $(oggScroll_LDADD) $(LIBS)
-oggSilence$(EXEEXT): $(oggSilence_OBJECTS) $(oggSilence_DEPENDENCIES) 
-	@rm -f oggSilence$(EXEEXT)
-	$(oggSilence_LINK) $(oggSilence_OBJECTS) $(oggSilence_LDADD) $(LIBS)
-oggSplit$(EXEEXT): $(oggSplit_OBJECTS) $(oggSplit_DEPENDENCIES) 
-	@rm -f oggSplit$(EXEEXT)
-	$(CXXLINK) $(oggSplit_OBJECTS) $(oggSplit_LDADD) $(LIBS)
-oggThumb$(EXEEXT): $(oggThumb_OBJECTS) $(oggThumb_DEPENDENCIES) 
-	@rm -f oggThumb$(EXEEXT)
-	$(oggThumb_LINK) $(oggThumb_OBJECTS) $(oggThumb_LDADD) $(LIBS)
-oggTranscode$(EXEEXT): $(oggTranscode_OBJECTS) $(oggTranscode_DEPENDENCIES) 
-	@rm -f oggTranscode$(EXEEXT)
-	$(oggTranscode_LINK) $(oggTranscode_OBJECTS) $(oggTranscode_LDADD) $(LIBS)
-
-mostlyclean-compile:
-	-rm -f *.$(OBJEXT)
-
-distclean-compile:
-	-rm -f *.tab.c
-
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/filterkit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-audioConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-audioHook.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-audioPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-crossfader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-effector.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-hookHandler.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-kenburnseffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-lowpassEffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggCat.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-pictureBlend.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-pictureLoader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-pictureResize.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-plainPicture.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-theoraDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-theoraEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-videoHook.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-vorbisDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-vorbisEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCat-vorbisStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggCut.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggDump.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggJoin.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggLength.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-SDLvideoOutput.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggScroll.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-theoraDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-theoraEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggScroll-vorbisStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-audioConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-audioPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggSilence.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-vorbisDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-vorbisEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSilence-vorbisStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggSplit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-crossfader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-effector.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-kenburnseffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-lowpassEffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-oggThumb.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-pictureBlend.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-pictureLoader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-pictureResize.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-plainPicture.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-theoraDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-theoraEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggThumb-vorbisStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-audioConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-audioHook.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-audioPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-basePlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-blendElement.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-bufferRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-cmdlineextractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-crc.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-crossfader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-effector.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-fileRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-granulePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-hookHandler.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-kateExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-katePosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-kateStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-kenburnseffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-lowpassEffect.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaConverter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaInputEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaOutputDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaRepository.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-mediaUnit.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggComment.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggPage.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggRingbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggStreamDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggStreamEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-oggTranscode.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-pictureBlend.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-pictureLoader.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-pictureResize.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-plainPicture.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-theoraDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-theoraEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-videoHook.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-vorbisDecoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-vorbisEncoder.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/oggTranscode-vorbisStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rawMediaPacket.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/resample.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/resamplesubs.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/rgbPlane.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/ringbuffer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/streamExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/streamMux.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/streamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/streamSerializer.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/theoraExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/theoraPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/theoraStreamParameter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vorbisExtractor.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vorbisPosInterpreter.Po at am__quote@
- at AMDEP_TRUE@@am__include@ @am__quote at ./$(DEPDIR)/vorbisStreamParameter.Po at am__quote@
-
-.c.o:
- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(COMPILE) -c $<
-
-.c.obj:
- at am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`
-
-filterkit.o: libresample/filterkit.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT filterkit.o -MD -MP -MF $(DEPDIR)/filterkit.Tpo -c -o filterkit.o `test -f 'libresample/filterkit.c' || echo '$(srcdir)/'`libresample/filterkit.c
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/filterkit.Tpo $(DEPDIR)/filterkit.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/filterkit.c' object='filterkit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o filterkit.o `test -f 'libresample/filterkit.c' || echo '$(srcdir)/'`libresample/filterkit.c
-
-filterkit.obj: libresample/filterkit.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT filterkit.obj -MD -MP -MF $(DEPDIR)/filterkit.Tpo -c -o filterkit.obj `if test -f 'libresample/filterkit.c'; then $(CYGPATH_W) 'libresample/filterkit.c'; else $(CYGPATH_W) '$(srcdir)/libresample/filterkit.c'; fi`
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/filterkit.Tpo $(DEPDIR)/filterkit.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/filterkit.c' object='filterkit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o filterkit.obj `if test -f 'libresample/filterkit.c'; then $(CYGPATH_W) 'libresample/filterkit.c'; else $(CYGPATH_W) '$(srcdir)/libresample/filterkit.c'; fi`
-
-resample.o: libresample/resample.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT resample.o -MD -MP -MF $(DEPDIR)/resample.Tpo -c -o resample.o `test -f 'libresample/resample.c' || echo '$(srcdir)/'`libresample/resample.c
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/resample.Tpo $(DEPDIR)/resample.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/resample.c' object='resample.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o resample.o `test -f 'libresample/resample.c' || echo '$(srcdir)/'`libresample/resample.c
-
-resample.obj: libresample/resample.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT resample.obj -MD -MP -MF $(DEPDIR)/resample.Tpo -c -o resample.obj `if test -f 'libresample/resample.c'; then $(CYGPATH_W) 'libresample/resample.c'; else $(CYGPATH_W) '$(srcdir)/libresample/resample.c'; fi`
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/resample.Tpo $(DEPDIR)/resample.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/resample.c' object='resample.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o resample.obj `if test -f 'libresample/resample.c'; then $(CYGPATH_W) 'libresample/resample.c'; else $(CYGPATH_W) '$(srcdir)/libresample/resample.c'; fi`
-
-resamplesubs.o: libresample/resamplesubs.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT resamplesubs.o -MD -MP -MF $(DEPDIR)/resamplesubs.Tpo -c -o resamplesubs.o `test -f 'libresample/resamplesubs.c' || echo '$(srcdir)/'`libresample/resamplesubs.c
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/resamplesubs.Tpo $(DEPDIR)/resamplesubs.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/resamplesubs.c' object='resamplesubs.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o resamplesubs.o `test -f 'libresample/resamplesubs.c' || echo '$(srcdir)/'`libresample/resamplesubs.c
-
-resamplesubs.obj: libresample/resamplesubs.c
- at am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT resamplesubs.obj -MD -MP -MF $(DEPDIR)/resamplesubs.Tpo -c -o resamplesubs.obj `if test -f 'libresample/resamplesubs.c'; then $(CYGPATH_W) 'libresample/resamplesubs.c'; else $(CYGPATH_W) '$(srcdir)/libresample/resamplesubs.c'; fi`
- at am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/resamplesubs.Tpo $(DEPDIR)/resamplesubs.Po
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libresample/resamplesubs.c' object='resamplesubs.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o resamplesubs.obj `if test -f 'libresample/resamplesubs.c'; then $(CYGPATH_W) 'libresample/resamplesubs.c'; else $(CYGPATH_W) '$(srcdir)/libresample/resamplesubs.c'; fi`
-
-.cpp.o:
- at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ $<
-
-.cpp.obj:
- at am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
-
-oggCat-mediaUnit.o: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaUnit.o -MD -MP -MF $(DEPDIR)/oggCat-mediaUnit.Tpo -c -o oggCat-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaUnit.Tpo $(DEPDIR)/oggCat-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggCat-mediaUnit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
-
-oggCat-mediaUnit.obj: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaUnit.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaUnit.Tpo -c -o oggCat-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaUnit.Tpo $(DEPDIR)/oggCat-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggCat-mediaUnit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
-
-oggCat-mediaRepository.o: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaRepository.o -MD -MP -MF $(DEPDIR)/oggCat-mediaRepository.Tpo -c -o oggCat-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaRepository.Tpo $(DEPDIR)/oggCat-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggCat-mediaRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
-
-oggCat-mediaRepository.obj: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaRepository.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaRepository.Tpo -c -o oggCat-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaRepository.Tpo $(DEPDIR)/oggCat-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggCat-mediaRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
-
-oggCat-fileRepository.o: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-fileRepository.o -MD -MP -MF $(DEPDIR)/oggCat-fileRepository.Tpo -c -o oggCat-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-fileRepository.Tpo $(DEPDIR)/oggCat-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggCat-fileRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
-
-oggCat-fileRepository.obj: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-fileRepository.obj -MD -MP -MF $(DEPDIR)/oggCat-fileRepository.Tpo -c -o oggCat-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-fileRepository.Tpo $(DEPDIR)/oggCat-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggCat-fileRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
-
-oggCat-rawMediaPacket.o: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-rawMediaPacket.o -MD -MP -MF $(DEPDIR)/oggCat-rawMediaPacket.Tpo -c -o oggCat-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-rawMediaPacket.Tpo $(DEPDIR)/oggCat-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggCat-rawMediaPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
-
-oggCat-rawMediaPacket.obj: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-rawMediaPacket.obj -MD -MP -MF $(DEPDIR)/oggCat-rawMediaPacket.Tpo -c -o oggCat-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-rawMediaPacket.Tpo $(DEPDIR)/oggCat-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggCat-rawMediaPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
-
-oggCat-mediaDecoder.o: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-mediaDecoder.Tpo -c -o oggCat-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaDecoder.Tpo $(DEPDIR)/oggCat-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggCat-mediaDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
-
-oggCat-mediaDecoder.obj: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaDecoder.Tpo -c -o oggCat-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaDecoder.Tpo $(DEPDIR)/oggCat-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggCat-mediaDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
-
-oggCat-mediaEncoder.o: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-mediaEncoder.Tpo -c -o oggCat-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaEncoder.Tpo $(DEPDIR)/oggCat-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggCat-mediaEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
-
-oggCat-mediaEncoder.obj: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaEncoder.Tpo -c -o oggCat-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaEncoder.Tpo $(DEPDIR)/oggCat-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggCat-mediaEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
-
-oggCat-mediaConverter.o: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaConverter.o -MD -MP -MF $(DEPDIR)/oggCat-mediaConverter.Tpo -c -o oggCat-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaConverter.Tpo $(DEPDIR)/oggCat-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggCat-mediaConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
-
-oggCat-mediaConverter.obj: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaConverter.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaConverter.Tpo -c -o oggCat-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaConverter.Tpo $(DEPDIR)/oggCat-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggCat-mediaConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
-
-oggCat-oggDecoder.o: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-oggDecoder.Tpo -c -o oggCat-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggDecoder.Tpo $(DEPDIR)/oggCat-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggCat-oggDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
-
-oggCat-oggDecoder.obj: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-oggDecoder.Tpo -c -o oggCat-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggDecoder.Tpo $(DEPDIR)/oggCat-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggCat-oggDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
-
-oggCat-oggStreamDecoder.o: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggStreamDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-oggStreamDecoder.Tpo -c -o oggCat-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggStreamDecoder.Tpo $(DEPDIR)/oggCat-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggCat-oggStreamDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
-
-oggCat-oggStreamDecoder.obj: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggStreamDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-oggStreamDecoder.Tpo -c -o oggCat-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggStreamDecoder.Tpo $(DEPDIR)/oggCat-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggCat-oggStreamDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
-
-oggCat-oggPage.o: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggPage.o -MD -MP -MF $(DEPDIR)/oggCat-oggPage.Tpo -c -o oggCat-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggPage.Tpo $(DEPDIR)/oggCat-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggCat-oggPage.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
-
-oggCat-oggPage.obj: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggPage.obj -MD -MP -MF $(DEPDIR)/oggCat-oggPage.Tpo -c -o oggCat-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggPage.Tpo $(DEPDIR)/oggCat-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggCat-oggPage.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
-
-oggCat-oggPacket.o: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggPacket.o -MD -MP -MF $(DEPDIR)/oggCat-oggPacket.Tpo -c -o oggCat-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggPacket.Tpo $(DEPDIR)/oggCat-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggCat-oggPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
-
-oggCat-oggPacket.obj: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggPacket.obj -MD -MP -MF $(DEPDIR)/oggCat-oggPacket.Tpo -c -o oggCat-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggPacket.Tpo $(DEPDIR)/oggCat-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggCat-oggPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
-
-oggCat-ringbuffer.o: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-ringbuffer.o -MD -MP -MF $(DEPDIR)/oggCat-ringbuffer.Tpo -c -o oggCat-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-ringbuffer.Tpo $(DEPDIR)/oggCat-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggCat-ringbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
-
-oggCat-ringbuffer.obj: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-ringbuffer.obj -MD -MP -MF $(DEPDIR)/oggCat-ringbuffer.Tpo -c -o oggCat-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-ringbuffer.Tpo $(DEPDIR)/oggCat-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggCat-ringbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
-
-oggCat-oggRingbuffer.o: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggRingbuffer.o -MD -MP -MF $(DEPDIR)/oggCat-oggRingbuffer.Tpo -c -o oggCat-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggRingbuffer.Tpo $(DEPDIR)/oggCat-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggCat-oggRingbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
-
-oggCat-oggRingbuffer.obj: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggRingbuffer.obj -MD -MP -MF $(DEPDIR)/oggCat-oggRingbuffer.Tpo -c -o oggCat-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggRingbuffer.Tpo $(DEPDIR)/oggCat-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggCat-oggRingbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
-
-oggCat-crc.o: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-crc.o -MD -MP -MF $(DEPDIR)/oggCat-crc.Tpo -c -o oggCat-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-crc.Tpo $(DEPDIR)/oggCat-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggCat-crc.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
-
-oggCat-crc.obj: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-crc.obj -MD -MP -MF $(DEPDIR)/oggCat-crc.Tpo -c -o oggCat-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-crc.Tpo $(DEPDIR)/oggCat-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggCat-crc.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
-
-oggCat-granulePosInterpreter.o: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-granulePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggCat-granulePosInterpreter.Tpo -c -o oggCat-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-granulePosInterpreter.Tpo $(DEPDIR)/oggCat-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggCat-granulePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
-
-oggCat-granulePosInterpreter.obj: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-granulePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggCat-granulePosInterpreter.Tpo -c -o oggCat-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-granulePosInterpreter.Tpo $(DEPDIR)/oggCat-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggCat-granulePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
-
-oggCat-mediaOutputDecoder.o: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaOutputDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-mediaOutputDecoder.Tpo -c -o oggCat-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaOutputDecoder.Tpo $(DEPDIR)/oggCat-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggCat-mediaOutputDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
-
-oggCat-mediaOutputDecoder.obj: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaOutputDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaOutputDecoder.Tpo -c -o oggCat-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaOutputDecoder.Tpo $(DEPDIR)/oggCat-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggCat-mediaOutputDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
-
-oggCat-mediaInputEncoder.o: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaInputEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-mediaInputEncoder.Tpo -c -o oggCat-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaInputEncoder.Tpo $(DEPDIR)/oggCat-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggCat-mediaInputEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
-
-oggCat-mediaInputEncoder.obj: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-mediaInputEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-mediaInputEncoder.Tpo -c -o oggCat-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-mediaInputEncoder.Tpo $(DEPDIR)/oggCat-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggCat-mediaInputEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
-
-oggCat-streamSerializer.o: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamSerializer.o -MD -MP -MF $(DEPDIR)/oggCat-streamSerializer.Tpo -c -o oggCat-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamSerializer.Tpo $(DEPDIR)/oggCat-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggCat-streamSerializer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
-
-oggCat-streamSerializer.obj: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamSerializer.obj -MD -MP -MF $(DEPDIR)/oggCat-streamSerializer.Tpo -c -o oggCat-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamSerializer.Tpo $(DEPDIR)/oggCat-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggCat-streamSerializer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
-
-oggCat-oggBOSExtractorFactory.o: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggBOSExtractorFactory.o -MD -MP -MF $(DEPDIR)/oggCat-oggBOSExtractorFactory.Tpo -c -o oggCat-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggCat-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggCat-oggBOSExtractorFactory.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
-
-oggCat-oggBOSExtractorFactory.obj: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggBOSExtractorFactory.obj -MD -MP -MF $(DEPDIR)/oggCat-oggBOSExtractorFactory.Tpo -c -o oggCat-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggCat-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggCat-oggBOSExtractorFactory.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
-
-oggCat-oggStreamEncoder.o: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggStreamEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-oggStreamEncoder.Tpo -c -o oggCat-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggStreamEncoder.Tpo $(DEPDIR)/oggCat-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggCat-oggStreamEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
-
-oggCat-oggStreamEncoder.obj: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggStreamEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-oggStreamEncoder.Tpo -c -o oggCat-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggStreamEncoder.Tpo $(DEPDIR)/oggCat-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggCat-oggStreamEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
-
-oggCat-oggEncoder.o: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-oggEncoder.Tpo -c -o oggCat-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggEncoder.Tpo $(DEPDIR)/oggCat-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggCat-oggEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
-
-oggCat-oggEncoder.obj: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-oggEncoder.Tpo -c -o oggCat-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggEncoder.Tpo $(DEPDIR)/oggCat-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggCat-oggEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
-
-oggCat-streamExtractor.o: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamExtractor.o -MD -MP -MF $(DEPDIR)/oggCat-streamExtractor.Tpo -c -o oggCat-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamExtractor.Tpo $(DEPDIR)/oggCat-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggCat-streamExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
-
-oggCat-streamExtractor.obj: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamExtractor.obj -MD -MP -MF $(DEPDIR)/oggCat-streamExtractor.Tpo -c -o oggCat-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamExtractor.Tpo $(DEPDIR)/oggCat-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggCat-streamExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
-
-oggCat-streamParameter.o: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamParameter.o -MD -MP -MF $(DEPDIR)/oggCat-streamParameter.Tpo -c -o oggCat-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamParameter.Tpo $(DEPDIR)/oggCat-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggCat-streamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
-
-oggCat-streamParameter.obj: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamParameter.obj -MD -MP -MF $(DEPDIR)/oggCat-streamParameter.Tpo -c -o oggCat-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamParameter.Tpo $(DEPDIR)/oggCat-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggCat-streamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
-
-oggCat-streamMux.o: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamMux.o -MD -MP -MF $(DEPDIR)/oggCat-streamMux.Tpo -c -o oggCat-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamMux.Tpo $(DEPDIR)/oggCat-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggCat-streamMux.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
-
-oggCat-streamMux.obj: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-streamMux.obj -MD -MP -MF $(DEPDIR)/oggCat-streamMux.Tpo -c -o oggCat-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-streamMux.Tpo $(DEPDIR)/oggCat-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggCat-streamMux.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
-
-oggCat-bufferRepository.o: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-bufferRepository.o -MD -MP -MF $(DEPDIR)/oggCat-bufferRepository.Tpo -c -o oggCat-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-bufferRepository.Tpo $(DEPDIR)/oggCat-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggCat-bufferRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
-
-oggCat-bufferRepository.obj: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-bufferRepository.obj -MD -MP -MF $(DEPDIR)/oggCat-bufferRepository.Tpo -c -o oggCat-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-bufferRepository.Tpo $(DEPDIR)/oggCat-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggCat-bufferRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
-
-oggCat-oggComment.o: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggComment.o -MD -MP -MF $(DEPDIR)/oggCat-oggComment.Tpo -c -o oggCat-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggComment.Tpo $(DEPDIR)/oggCat-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggCat-oggComment.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
-
-oggCat-oggComment.obj: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggComment.obj -MD -MP -MF $(DEPDIR)/oggCat-oggComment.Tpo -c -o oggCat-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggComment.Tpo $(DEPDIR)/oggCat-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggCat-oggComment.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
-
-oggCat-theoraPosInterpreter.o: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggCat-theoraPosInterpreter.Tpo -c -o oggCat-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraPosInterpreter.Tpo $(DEPDIR)/oggCat-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggCat-theoraPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
-
-oggCat-theoraPosInterpreter.obj: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggCat-theoraPosInterpreter.Tpo -c -o oggCat-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraPosInterpreter.Tpo $(DEPDIR)/oggCat-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggCat-theoraPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
-
-oggCat-theoraStreamParameter.o: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraStreamParameter.o -MD -MP -MF $(DEPDIR)/oggCat-theoraStreamParameter.Tpo -c -o oggCat-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraStreamParameter.Tpo $(DEPDIR)/oggCat-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggCat-theoraStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
-
-oggCat-theoraStreamParameter.obj: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggCat-theoraStreamParameter.Tpo -c -o oggCat-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraStreamParameter.Tpo $(DEPDIR)/oggCat-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggCat-theoraStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
-
-oggCat-theoraExtractor.o: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraExtractor.o -MD -MP -MF $(DEPDIR)/oggCat-theoraExtractor.Tpo -c -o oggCat-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraExtractor.Tpo $(DEPDIR)/oggCat-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggCat-theoraExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
-
-oggCat-theoraExtractor.obj: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraExtractor.obj -MD -MP -MF $(DEPDIR)/oggCat-theoraExtractor.Tpo -c -o oggCat-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraExtractor.Tpo $(DEPDIR)/oggCat-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggCat-theoraExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
-
-oggCat-vorbisPosInterpreter.o: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggCat-vorbisPosInterpreter.Tpo -c -o oggCat-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisPosInterpreter.Tpo $(DEPDIR)/oggCat-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggCat-vorbisPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
-
-oggCat-vorbisPosInterpreter.obj: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggCat-vorbisPosInterpreter.Tpo -c -o oggCat-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisPosInterpreter.Tpo $(DEPDIR)/oggCat-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggCat-vorbisPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
-
-oggCat-vorbisStreamParameter.o: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisStreamParameter.o -MD -MP -MF $(DEPDIR)/oggCat-vorbisStreamParameter.Tpo -c -o oggCat-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisStreamParameter.Tpo $(DEPDIR)/oggCat-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggCat-vorbisStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
-
-oggCat-vorbisStreamParameter.obj: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggCat-vorbisStreamParameter.Tpo -c -o oggCat-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisStreamParameter.Tpo $(DEPDIR)/oggCat-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggCat-vorbisStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
-
-oggCat-vorbisExtractor.o: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisExtractor.o -MD -MP -MF $(DEPDIR)/oggCat-vorbisExtractor.Tpo -c -o oggCat-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisExtractor.Tpo $(DEPDIR)/oggCat-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggCat-vorbisExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
-
-oggCat-vorbisExtractor.obj: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisExtractor.obj -MD -MP -MF $(DEPDIR)/oggCat-vorbisExtractor.Tpo -c -o oggCat-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisExtractor.Tpo $(DEPDIR)/oggCat-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggCat-vorbisExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
-
-oggCat-katePosInterpreter.o: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-katePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggCat-katePosInterpreter.Tpo -c -o oggCat-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-katePosInterpreter.Tpo $(DEPDIR)/oggCat-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggCat-katePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
-
-oggCat-katePosInterpreter.obj: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-katePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggCat-katePosInterpreter.Tpo -c -o oggCat-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-katePosInterpreter.Tpo $(DEPDIR)/oggCat-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggCat-katePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
-
-oggCat-kateStreamParameter.o: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kateStreamParameter.o -MD -MP -MF $(DEPDIR)/oggCat-kateStreamParameter.Tpo -c -o oggCat-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kateStreamParameter.Tpo $(DEPDIR)/oggCat-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggCat-kateStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
-
-oggCat-kateStreamParameter.obj: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kateStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggCat-kateStreamParameter.Tpo -c -o oggCat-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kateStreamParameter.Tpo $(DEPDIR)/oggCat-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggCat-kateStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
-
-oggCat-kateExtractor.o: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kateExtractor.o -MD -MP -MF $(DEPDIR)/oggCat-kateExtractor.Tpo -c -o oggCat-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kateExtractor.Tpo $(DEPDIR)/oggCat-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggCat-kateExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
-
-oggCat-kateExtractor.obj: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kateExtractor.obj -MD -MP -MF $(DEPDIR)/oggCat-kateExtractor.Tpo -c -o oggCat-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kateExtractor.Tpo $(DEPDIR)/oggCat-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggCat-kateExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
-
-oggCat-theoraDecoder.o: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-theoraDecoder.Tpo -c -o oggCat-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraDecoder.Tpo $(DEPDIR)/oggCat-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggCat-theoraDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
-
-oggCat-theoraDecoder.obj: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-theoraDecoder.Tpo -c -o oggCat-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraDecoder.Tpo $(DEPDIR)/oggCat-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggCat-theoraDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
-
-oggCat-theoraEncoder.o: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-theoraEncoder.Tpo -c -o oggCat-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraEncoder.Tpo $(DEPDIR)/oggCat-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggCat-theoraEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
-
-oggCat-theoraEncoder.obj: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-theoraEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-theoraEncoder.Tpo -c -o oggCat-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-theoraEncoder.Tpo $(DEPDIR)/oggCat-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggCat-theoraEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
-
-oggCat-vorbisDecoder.o: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisDecoder.o -MD -MP -MF $(DEPDIR)/oggCat-vorbisDecoder.Tpo -c -o oggCat-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisDecoder.Tpo $(DEPDIR)/oggCat-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggCat-vorbisDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
-
-oggCat-vorbisDecoder.obj: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisDecoder.obj -MD -MP -MF $(DEPDIR)/oggCat-vorbisDecoder.Tpo -c -o oggCat-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisDecoder.Tpo $(DEPDIR)/oggCat-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggCat-vorbisDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
-
-oggCat-vorbisEncoder.o: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisEncoder.o -MD -MP -MF $(DEPDIR)/oggCat-vorbisEncoder.Tpo -c -o oggCat-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisEncoder.Tpo $(DEPDIR)/oggCat-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggCat-vorbisEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
-
-oggCat-vorbisEncoder.obj: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-vorbisEncoder.obj -MD -MP -MF $(DEPDIR)/oggCat-vorbisEncoder.Tpo -c -o oggCat-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-vorbisEncoder.Tpo $(DEPDIR)/oggCat-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggCat-vorbisEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
-
-oggCat-audioPacket.o: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioPacket.o -MD -MP -MF $(DEPDIR)/oggCat-audioPacket.Tpo -c -o oggCat-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioPacket.Tpo $(DEPDIR)/oggCat-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggCat-audioPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
-
-oggCat-audioPacket.obj: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioPacket.obj -MD -MP -MF $(DEPDIR)/oggCat-audioPacket.Tpo -c -o oggCat-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioPacket.Tpo $(DEPDIR)/oggCat-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggCat-audioPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
-
-oggCat-audioConverter.o: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioConverter.o -MD -MP -MF $(DEPDIR)/oggCat-audioConverter.Tpo -c -o oggCat-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioConverter.Tpo $(DEPDIR)/oggCat-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggCat-audioConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
-
-oggCat-audioConverter.obj: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioConverter.obj -MD -MP -MF $(DEPDIR)/oggCat-audioConverter.Tpo -c -o oggCat-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioConverter.Tpo $(DEPDIR)/oggCat-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggCat-audioConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
-
-oggCat-cmdlineextractor.o: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-cmdlineextractor.o -MD -MP -MF $(DEPDIR)/oggCat-cmdlineextractor.Tpo -c -o oggCat-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-cmdlineextractor.Tpo $(DEPDIR)/oggCat-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggCat-cmdlineextractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
-
-oggCat-cmdlineextractor.obj: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-cmdlineextractor.obj -MD -MP -MF $(DEPDIR)/oggCat-cmdlineextractor.Tpo -c -o oggCat-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-cmdlineextractor.Tpo $(DEPDIR)/oggCat-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggCat-cmdlineextractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
-
-oggCat-basePlane.o: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-basePlane.o -MD -MP -MF $(DEPDIR)/oggCat-basePlane.Tpo -c -o oggCat-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-basePlane.Tpo $(DEPDIR)/oggCat-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggCat-basePlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
-
-oggCat-basePlane.obj: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-basePlane.obj -MD -MP -MF $(DEPDIR)/oggCat-basePlane.Tpo -c -o oggCat-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-basePlane.Tpo $(DEPDIR)/oggCat-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggCat-basePlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
-
-oggCat-rgbPlane.o: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-rgbPlane.o -MD -MP -MF $(DEPDIR)/oggCat-rgbPlane.Tpo -c -o oggCat-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-rgbPlane.Tpo $(DEPDIR)/oggCat-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggCat-rgbPlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
-
-oggCat-rgbPlane.obj: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-rgbPlane.obj -MD -MP -MF $(DEPDIR)/oggCat-rgbPlane.Tpo -c -o oggCat-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-rgbPlane.Tpo $(DEPDIR)/oggCat-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggCat-rgbPlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
-
-oggCat-blendElement.o: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-blendElement.o -MD -MP -MF $(DEPDIR)/oggCat-blendElement.Tpo -c -o oggCat-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-blendElement.Tpo $(DEPDIR)/oggCat-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggCat-blendElement.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
-
-oggCat-blendElement.obj: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-blendElement.obj -MD -MP -MF $(DEPDIR)/oggCat-blendElement.Tpo -c -o oggCat-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-blendElement.Tpo $(DEPDIR)/oggCat-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggCat-blendElement.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
-
-oggCat-effector.o: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-effector.o -MD -MP -MF $(DEPDIR)/oggCat-effector.Tpo -c -o oggCat-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-effector.Tpo $(DEPDIR)/oggCat-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggCat-effector.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
-
-oggCat-effector.obj: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-effector.obj -MD -MP -MF $(DEPDIR)/oggCat-effector.Tpo -c -o oggCat-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-effector.Tpo $(DEPDIR)/oggCat-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggCat-effector.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
-
-oggCat-crossfader.o: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-crossfader.o -MD -MP -MF $(DEPDIR)/oggCat-crossfader.Tpo -c -o oggCat-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-crossfader.Tpo $(DEPDIR)/oggCat-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggCat-crossfader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
-
-oggCat-crossfader.obj: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-crossfader.obj -MD -MP -MF $(DEPDIR)/oggCat-crossfader.Tpo -c -o oggCat-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-crossfader.Tpo $(DEPDIR)/oggCat-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggCat-crossfader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
-
-oggCat-plainPicture.o: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-plainPicture.o -MD -MP -MF $(DEPDIR)/oggCat-plainPicture.Tpo -c -o oggCat-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-plainPicture.Tpo $(DEPDIR)/oggCat-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggCat-plainPicture.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
-
-oggCat-plainPicture.obj: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-plainPicture.obj -MD -MP -MF $(DEPDIR)/oggCat-plainPicture.Tpo -c -o oggCat-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-plainPicture.Tpo $(DEPDIR)/oggCat-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggCat-plainPicture.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
-
-oggCat-lowpassEffect.o: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-lowpassEffect.o -MD -MP -MF $(DEPDIR)/oggCat-lowpassEffect.Tpo -c -o oggCat-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-lowpassEffect.Tpo $(DEPDIR)/oggCat-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggCat-lowpassEffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
-
-oggCat-lowpassEffect.obj: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-lowpassEffect.obj -MD -MP -MF $(DEPDIR)/oggCat-lowpassEffect.Tpo -c -o oggCat-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-lowpassEffect.Tpo $(DEPDIR)/oggCat-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggCat-lowpassEffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
-
-oggCat-kenburnseffect.o: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kenburnseffect.o -MD -MP -MF $(DEPDIR)/oggCat-kenburnseffect.Tpo -c -o oggCat-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kenburnseffect.Tpo $(DEPDIR)/oggCat-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggCat-kenburnseffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
-
-oggCat-kenburnseffect.obj: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-kenburnseffect.obj -MD -MP -MF $(DEPDIR)/oggCat-kenburnseffect.Tpo -c -o oggCat-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-kenburnseffect.Tpo $(DEPDIR)/oggCat-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggCat-kenburnseffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
-
-oggCat-pictureResize.o: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureResize.o -MD -MP -MF $(DEPDIR)/oggCat-pictureResize.Tpo -c -o oggCat-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureResize.Tpo $(DEPDIR)/oggCat-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggCat-pictureResize.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
-
-oggCat-pictureResize.obj: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureResize.obj -MD -MP -MF $(DEPDIR)/oggCat-pictureResize.Tpo -c -o oggCat-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureResize.Tpo $(DEPDIR)/oggCat-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggCat-pictureResize.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
-
-oggCat-pictureBlend.o: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureBlend.o -MD -MP -MF $(DEPDIR)/oggCat-pictureBlend.Tpo -c -o oggCat-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureBlend.Tpo $(DEPDIR)/oggCat-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggCat-pictureBlend.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
-
-oggCat-pictureBlend.obj: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureBlend.obj -MD -MP -MF $(DEPDIR)/oggCat-pictureBlend.Tpo -c -o oggCat-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureBlend.Tpo $(DEPDIR)/oggCat-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggCat-pictureBlend.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
-
-oggCat-pictureLoader.o: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureLoader.o -MD -MP -MF $(DEPDIR)/oggCat-pictureLoader.Tpo -c -o oggCat-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureLoader.Tpo $(DEPDIR)/oggCat-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggCat-pictureLoader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
-
-oggCat-pictureLoader.obj: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-pictureLoader.obj -MD -MP -MF $(DEPDIR)/oggCat-pictureLoader.Tpo -c -o oggCat-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-pictureLoader.Tpo $(DEPDIR)/oggCat-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggCat-pictureLoader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
-
-oggCat-hookHandler.o: hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-hookHandler.o -MD -MP -MF $(DEPDIR)/oggCat-hookHandler.Tpo -c -o oggCat-hookHandler.o `test -f 'hookHandler.cpp' || echo '$(srcdir)/'`hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-hookHandler.Tpo $(DEPDIR)/oggCat-hookHandler.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='hookHandler.cpp' object='oggCat-hookHandler.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-hookHandler.o `test -f 'hookHandler.cpp' || echo '$(srcdir)/'`hookHandler.cpp
-
-oggCat-hookHandler.obj: hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-hookHandler.obj -MD -MP -MF $(DEPDIR)/oggCat-hookHandler.Tpo -c -o oggCat-hookHandler.obj `if test -f 'hookHandler.cpp'; then $(CYGPATH_W) 'hookHandler.cpp'; else $(CYGPATH_W) '$(srcdir)/hookHandler.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-hookHandler.Tpo $(DEPDIR)/oggCat-hookHandler.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='hookHandler.cpp' object='oggCat-hookHandler.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-hookHandler.obj `if test -f 'hookHandler.cpp'; then $(CYGPATH_W) 'hookHandler.cpp'; else $(CYGPATH_W) '$(srcdir)/hookHandler.cpp'; fi`
-
-oggCat-videoHook.o: videoHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-videoHook.o -MD -MP -MF $(DEPDIR)/oggCat-videoHook.Tpo -c -o oggCat-videoHook.o `test -f 'videoHook.cpp' || echo '$(srcdir)/'`videoHook.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-videoHook.Tpo $(DEPDIR)/oggCat-videoHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='videoHook.cpp' object='oggCat-videoHook.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-videoHook.o `test -f 'videoHook.cpp' || echo '$(srcdir)/'`videoHook.cpp
-
-oggCat-videoHook.obj: videoHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-videoHook.obj -MD -MP -MF $(DEPDIR)/oggCat-videoHook.Tpo -c -o oggCat-videoHook.obj `if test -f 'videoHook.cpp'; then $(CYGPATH_W) 'videoHook.cpp'; else $(CYGPATH_W) '$(srcdir)/videoHook.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-videoHook.Tpo $(DEPDIR)/oggCat-videoHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='videoHook.cpp' object='oggCat-videoHook.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-videoHook.obj `if test -f 'videoHook.cpp'; then $(CYGPATH_W) 'videoHook.cpp'; else $(CYGPATH_W) '$(srcdir)/videoHook.cpp'; fi`
-
-oggCat-audioHook.o: audioHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioHook.o -MD -MP -MF $(DEPDIR)/oggCat-audioHook.Tpo -c -o oggCat-audioHook.o `test -f 'audioHook.cpp' || echo '$(srcdir)/'`audioHook.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioHook.Tpo $(DEPDIR)/oggCat-audioHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioHook.cpp' object='oggCat-audioHook.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioHook.o `test -f 'audioHook.cpp' || echo '$(srcdir)/'`audioHook.cpp
-
-oggCat-audioHook.obj: audioHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-audioHook.obj -MD -MP -MF $(DEPDIR)/oggCat-audioHook.Tpo -c -o oggCat-audioHook.obj `if test -f 'audioHook.cpp'; then $(CYGPATH_W) 'audioHook.cpp'; else $(CYGPATH_W) '$(srcdir)/audioHook.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-audioHook.Tpo $(DEPDIR)/oggCat-audioHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioHook.cpp' object='oggCat-audioHook.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-audioHook.obj `if test -f 'audioHook.cpp'; then $(CYGPATH_W) 'audioHook.cpp'; else $(CYGPATH_W) '$(srcdir)/audioHook.cpp'; fi`
-
-oggCat-oggCat.o: oggCat.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggCat.o -MD -MP -MF $(DEPDIR)/oggCat-oggCat.Tpo -c -o oggCat-oggCat.o `test -f 'oggCat.cpp' || echo '$(srcdir)/'`oggCat.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggCat.Tpo $(DEPDIR)/oggCat-oggCat.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggCat.cpp' object='oggCat-oggCat.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggCat.o `test -f 'oggCat.cpp' || echo '$(srcdir)/'`oggCat.cpp
-
-oggCat-oggCat.obj: oggCat.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -MT oggCat-oggCat.obj -MD -MP -MF $(DEPDIR)/oggCat-oggCat.Tpo -c -o oggCat-oggCat.obj `if test -f 'oggCat.cpp'; then $(CYGPATH_W) 'oggCat.cpp'; else $(CYGPATH_W) '$(srcdir)/oggCat.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggCat-oggCat.Tpo $(DEPDIR)/oggCat-oggCat.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggCat.cpp' object='oggCat-oggCat.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggCat_CXXFLAGS) $(CXXFLAGS) -c -o oggCat-oggCat.obj `if test -f 'oggCat.cpp'; then $(CYGPATH_W) 'oggCat.cpp'; else $(CYGPATH_W) '$(srcdir)/oggCat.cpp'; fi`
-
-oggScroll-mediaUnit.o: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaUnit.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaUnit.Tpo -c -o oggScroll-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaUnit.Tpo $(DEPDIR)/oggScroll-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggScroll-mediaUnit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
-
-oggScroll-mediaUnit.obj: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaUnit.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaUnit.Tpo -c -o oggScroll-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaUnit.Tpo $(DEPDIR)/oggScroll-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggScroll-mediaUnit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
-
-oggScroll-mediaRepository.o: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaRepository.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaRepository.Tpo -c -o oggScroll-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaRepository.Tpo $(DEPDIR)/oggScroll-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggScroll-mediaRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
-
-oggScroll-mediaRepository.obj: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaRepository.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaRepository.Tpo -c -o oggScroll-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaRepository.Tpo $(DEPDIR)/oggScroll-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggScroll-mediaRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
-
-oggScroll-fileRepository.o: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-fileRepository.o -MD -MP -MF $(DEPDIR)/oggScroll-fileRepository.Tpo -c -o oggScroll-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-fileRepository.Tpo $(DEPDIR)/oggScroll-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggScroll-fileRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
-
-oggScroll-fileRepository.obj: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-fileRepository.obj -MD -MP -MF $(DEPDIR)/oggScroll-fileRepository.Tpo -c -o oggScroll-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-fileRepository.Tpo $(DEPDIR)/oggScroll-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggScroll-fileRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
-
-oggScroll-rawMediaPacket.o: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-rawMediaPacket.o -MD -MP -MF $(DEPDIR)/oggScroll-rawMediaPacket.Tpo -c -o oggScroll-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-rawMediaPacket.Tpo $(DEPDIR)/oggScroll-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggScroll-rawMediaPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
-
-oggScroll-rawMediaPacket.obj: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-rawMediaPacket.obj -MD -MP -MF $(DEPDIR)/oggScroll-rawMediaPacket.Tpo -c -o oggScroll-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-rawMediaPacket.Tpo $(DEPDIR)/oggScroll-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggScroll-rawMediaPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
-
-oggScroll-mediaDecoder.o: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaDecoder.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaDecoder.Tpo -c -o oggScroll-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaDecoder.Tpo $(DEPDIR)/oggScroll-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggScroll-mediaDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
-
-oggScroll-mediaDecoder.obj: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaDecoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaDecoder.Tpo -c -o oggScroll-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaDecoder.Tpo $(DEPDIR)/oggScroll-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggScroll-mediaDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
-
-oggScroll-mediaEncoder.o: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaEncoder.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaEncoder.Tpo -c -o oggScroll-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaEncoder.Tpo $(DEPDIR)/oggScroll-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggScroll-mediaEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
-
-oggScroll-mediaEncoder.obj: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaEncoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaEncoder.Tpo -c -o oggScroll-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaEncoder.Tpo $(DEPDIR)/oggScroll-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggScroll-mediaEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
-
-oggScroll-mediaConverter.o: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaConverter.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaConverter.Tpo -c -o oggScroll-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaConverter.Tpo $(DEPDIR)/oggScroll-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggScroll-mediaConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
-
-oggScroll-mediaConverter.obj: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaConverter.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaConverter.Tpo -c -o oggScroll-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaConverter.Tpo $(DEPDIR)/oggScroll-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggScroll-mediaConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
-
-oggScroll-oggDecoder.o: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggDecoder.o -MD -MP -MF $(DEPDIR)/oggScroll-oggDecoder.Tpo -c -o oggScroll-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggDecoder.Tpo $(DEPDIR)/oggScroll-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggScroll-oggDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
-
-oggScroll-oggDecoder.obj: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggDecoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggDecoder.Tpo -c -o oggScroll-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggDecoder.Tpo $(DEPDIR)/oggScroll-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggScroll-oggDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
-
-oggScroll-oggStreamDecoder.o: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggStreamDecoder.o -MD -MP -MF $(DEPDIR)/oggScroll-oggStreamDecoder.Tpo -c -o oggScroll-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggStreamDecoder.Tpo $(DEPDIR)/oggScroll-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggScroll-oggStreamDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
-
-oggScroll-oggStreamDecoder.obj: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggStreamDecoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggStreamDecoder.Tpo -c -o oggScroll-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggStreamDecoder.Tpo $(DEPDIR)/oggScroll-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggScroll-oggStreamDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
-
-oggScroll-oggPage.o: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggPage.o -MD -MP -MF $(DEPDIR)/oggScroll-oggPage.Tpo -c -o oggScroll-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggPage.Tpo $(DEPDIR)/oggScroll-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggScroll-oggPage.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
-
-oggScroll-oggPage.obj: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggPage.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggPage.Tpo -c -o oggScroll-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggPage.Tpo $(DEPDIR)/oggScroll-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggScroll-oggPage.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
-
-oggScroll-oggPacket.o: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggPacket.o -MD -MP -MF $(DEPDIR)/oggScroll-oggPacket.Tpo -c -o oggScroll-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggPacket.Tpo $(DEPDIR)/oggScroll-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggScroll-oggPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
-
-oggScroll-oggPacket.obj: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggPacket.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggPacket.Tpo -c -o oggScroll-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggPacket.Tpo $(DEPDIR)/oggScroll-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggScroll-oggPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
-
-oggScroll-ringbuffer.o: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-ringbuffer.o -MD -MP -MF $(DEPDIR)/oggScroll-ringbuffer.Tpo -c -o oggScroll-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-ringbuffer.Tpo $(DEPDIR)/oggScroll-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggScroll-ringbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
-
-oggScroll-ringbuffer.obj: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-ringbuffer.obj -MD -MP -MF $(DEPDIR)/oggScroll-ringbuffer.Tpo -c -o oggScroll-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-ringbuffer.Tpo $(DEPDIR)/oggScroll-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggScroll-ringbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
-
-oggScroll-oggRingbuffer.o: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggRingbuffer.o -MD -MP -MF $(DEPDIR)/oggScroll-oggRingbuffer.Tpo -c -o oggScroll-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggRingbuffer.Tpo $(DEPDIR)/oggScroll-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggScroll-oggRingbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
-
-oggScroll-oggRingbuffer.obj: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggRingbuffer.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggRingbuffer.Tpo -c -o oggScroll-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggRingbuffer.Tpo $(DEPDIR)/oggScroll-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggScroll-oggRingbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
-
-oggScroll-crc.o: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-crc.o -MD -MP -MF $(DEPDIR)/oggScroll-crc.Tpo -c -o oggScroll-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-crc.Tpo $(DEPDIR)/oggScroll-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggScroll-crc.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
-
-oggScroll-crc.obj: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-crc.obj -MD -MP -MF $(DEPDIR)/oggScroll-crc.Tpo -c -o oggScroll-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-crc.Tpo $(DEPDIR)/oggScroll-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggScroll-crc.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
-
-oggScroll-granulePosInterpreter.o: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-granulePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggScroll-granulePosInterpreter.Tpo -c -o oggScroll-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-granulePosInterpreter.Tpo $(DEPDIR)/oggScroll-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggScroll-granulePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
-
-oggScroll-granulePosInterpreter.obj: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-granulePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggScroll-granulePosInterpreter.Tpo -c -o oggScroll-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-granulePosInterpreter.Tpo $(DEPDIR)/oggScroll-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggScroll-granulePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
-
-oggScroll-mediaOutputDecoder.o: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaOutputDecoder.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaOutputDecoder.Tpo -c -o oggScroll-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaOutputDecoder.Tpo $(DEPDIR)/oggScroll-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggScroll-mediaOutputDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
-
-oggScroll-mediaOutputDecoder.obj: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaOutputDecoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaOutputDecoder.Tpo -c -o oggScroll-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaOutputDecoder.Tpo $(DEPDIR)/oggScroll-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggScroll-mediaOutputDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
-
-oggScroll-mediaInputEncoder.o: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaInputEncoder.o -MD -MP -MF $(DEPDIR)/oggScroll-mediaInputEncoder.Tpo -c -o oggScroll-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaInputEncoder.Tpo $(DEPDIR)/oggScroll-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggScroll-mediaInputEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
-
-oggScroll-mediaInputEncoder.obj: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-mediaInputEncoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-mediaInputEncoder.Tpo -c -o oggScroll-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-mediaInputEncoder.Tpo $(DEPDIR)/oggScroll-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggScroll-mediaInputEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
-
-oggScroll-streamSerializer.o: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamSerializer.o -MD -MP -MF $(DEPDIR)/oggScroll-streamSerializer.Tpo -c -o oggScroll-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamSerializer.Tpo $(DEPDIR)/oggScroll-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggScroll-streamSerializer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
-
-oggScroll-streamSerializer.obj: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamSerializer.obj -MD -MP -MF $(DEPDIR)/oggScroll-streamSerializer.Tpo -c -o oggScroll-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamSerializer.Tpo $(DEPDIR)/oggScroll-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggScroll-streamSerializer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
-
-oggScroll-oggBOSExtractorFactory.o: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggBOSExtractorFactory.o -MD -MP -MF $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Tpo -c -o oggScroll-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggScroll-oggBOSExtractorFactory.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
-
-oggScroll-oggBOSExtractorFactory.obj: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggBOSExtractorFactory.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Tpo -c -o oggScroll-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggScroll-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggScroll-oggBOSExtractorFactory.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
-
-oggScroll-oggStreamEncoder.o: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggStreamEncoder.o -MD -MP -MF $(DEPDIR)/oggScroll-oggStreamEncoder.Tpo -c -o oggScroll-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggStreamEncoder.Tpo $(DEPDIR)/oggScroll-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggScroll-oggStreamEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
-
-oggScroll-oggStreamEncoder.obj: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggStreamEncoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggStreamEncoder.Tpo -c -o oggScroll-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggStreamEncoder.Tpo $(DEPDIR)/oggScroll-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggScroll-oggStreamEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
-
-oggScroll-oggEncoder.o: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggEncoder.o -MD -MP -MF $(DEPDIR)/oggScroll-oggEncoder.Tpo -c -o oggScroll-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggEncoder.Tpo $(DEPDIR)/oggScroll-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggScroll-oggEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
-
-oggScroll-oggEncoder.obj: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggEncoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggEncoder.Tpo -c -o oggScroll-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggEncoder.Tpo $(DEPDIR)/oggScroll-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggScroll-oggEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
-
-oggScroll-streamExtractor.o: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamExtractor.o -MD -MP -MF $(DEPDIR)/oggScroll-streamExtractor.Tpo -c -o oggScroll-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamExtractor.Tpo $(DEPDIR)/oggScroll-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggScroll-streamExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
-
-oggScroll-streamExtractor.obj: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamExtractor.obj -MD -MP -MF $(DEPDIR)/oggScroll-streamExtractor.Tpo -c -o oggScroll-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamExtractor.Tpo $(DEPDIR)/oggScroll-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggScroll-streamExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
-
-oggScroll-streamParameter.o: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamParameter.o -MD -MP -MF $(DEPDIR)/oggScroll-streamParameter.Tpo -c -o oggScroll-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamParameter.Tpo $(DEPDIR)/oggScroll-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggScroll-streamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
-
-oggScroll-streamParameter.obj: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamParameter.obj -MD -MP -MF $(DEPDIR)/oggScroll-streamParameter.Tpo -c -o oggScroll-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamParameter.Tpo $(DEPDIR)/oggScroll-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggScroll-streamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
-
-oggScroll-streamMux.o: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamMux.o -MD -MP -MF $(DEPDIR)/oggScroll-streamMux.Tpo -c -o oggScroll-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamMux.Tpo $(DEPDIR)/oggScroll-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggScroll-streamMux.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
-
-oggScroll-streamMux.obj: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-streamMux.obj -MD -MP -MF $(DEPDIR)/oggScroll-streamMux.Tpo -c -o oggScroll-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-streamMux.Tpo $(DEPDIR)/oggScroll-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggScroll-streamMux.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
-
-oggScroll-bufferRepository.o: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-bufferRepository.o -MD -MP -MF $(DEPDIR)/oggScroll-bufferRepository.Tpo -c -o oggScroll-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-bufferRepository.Tpo $(DEPDIR)/oggScroll-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggScroll-bufferRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
-
-oggScroll-bufferRepository.obj: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-bufferRepository.obj -MD -MP -MF $(DEPDIR)/oggScroll-bufferRepository.Tpo -c -o oggScroll-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-bufferRepository.Tpo $(DEPDIR)/oggScroll-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggScroll-bufferRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
-
-oggScroll-oggComment.o: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggComment.o -MD -MP -MF $(DEPDIR)/oggScroll-oggComment.Tpo -c -o oggScroll-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggComment.Tpo $(DEPDIR)/oggScroll-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggScroll-oggComment.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
-
-oggScroll-oggComment.obj: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggComment.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggComment.Tpo -c -o oggScroll-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggComment.Tpo $(DEPDIR)/oggScroll-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggScroll-oggComment.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
-
-oggScroll-theoraPosInterpreter.o: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggScroll-theoraPosInterpreter.Tpo -c -o oggScroll-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraPosInterpreter.Tpo $(DEPDIR)/oggScroll-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggScroll-theoraPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
-
-oggScroll-theoraPosInterpreter.obj: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggScroll-theoraPosInterpreter.Tpo -c -o oggScroll-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraPosInterpreter.Tpo $(DEPDIR)/oggScroll-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggScroll-theoraPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
-
-oggScroll-theoraStreamParameter.o: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraStreamParameter.o -MD -MP -MF $(DEPDIR)/oggScroll-theoraStreamParameter.Tpo -c -o oggScroll-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraStreamParameter.Tpo $(DEPDIR)/oggScroll-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggScroll-theoraStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
-
-oggScroll-theoraStreamParameter.obj: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggScroll-theoraStreamParameter.Tpo -c -o oggScroll-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraStreamParameter.Tpo $(DEPDIR)/oggScroll-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggScroll-theoraStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
-
-oggScroll-theoraExtractor.o: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraExtractor.o -MD -MP -MF $(DEPDIR)/oggScroll-theoraExtractor.Tpo -c -o oggScroll-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraExtractor.Tpo $(DEPDIR)/oggScroll-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggScroll-theoraExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
-
-oggScroll-theoraExtractor.obj: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraExtractor.obj -MD -MP -MF $(DEPDIR)/oggScroll-theoraExtractor.Tpo -c -o oggScroll-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraExtractor.Tpo $(DEPDIR)/oggScroll-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggScroll-theoraExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
-
-oggScroll-vorbisPosInterpreter.o: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggScroll-vorbisPosInterpreter.Tpo -c -o oggScroll-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisPosInterpreter.Tpo $(DEPDIR)/oggScroll-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggScroll-vorbisPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
-
-oggScroll-vorbisPosInterpreter.obj: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggScroll-vorbisPosInterpreter.Tpo -c -o oggScroll-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisPosInterpreter.Tpo $(DEPDIR)/oggScroll-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggScroll-vorbisPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
-
-oggScroll-vorbisStreamParameter.o: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisStreamParameter.o -MD -MP -MF $(DEPDIR)/oggScroll-vorbisStreamParameter.Tpo -c -o oggScroll-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisStreamParameter.Tpo $(DEPDIR)/oggScroll-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggScroll-vorbisStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
-
-oggScroll-vorbisStreamParameter.obj: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggScroll-vorbisStreamParameter.Tpo -c -o oggScroll-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisStreamParameter.Tpo $(DEPDIR)/oggScroll-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggScroll-vorbisStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
-
-oggScroll-vorbisExtractor.o: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisExtractor.o -MD -MP -MF $(DEPDIR)/oggScroll-vorbisExtractor.Tpo -c -o oggScroll-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisExtractor.Tpo $(DEPDIR)/oggScroll-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggScroll-vorbisExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
-
-oggScroll-vorbisExtractor.obj: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-vorbisExtractor.obj -MD -MP -MF $(DEPDIR)/oggScroll-vorbisExtractor.Tpo -c -o oggScroll-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-vorbisExtractor.Tpo $(DEPDIR)/oggScroll-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggScroll-vorbisExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
-
-oggScroll-theoraDecoder.o: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraDecoder.o -MD -MP -MF $(DEPDIR)/oggScroll-theoraDecoder.Tpo -c -o oggScroll-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraDecoder.Tpo $(DEPDIR)/oggScroll-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggScroll-theoraDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
-
-oggScroll-theoraDecoder.obj: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraDecoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-theoraDecoder.Tpo -c -o oggScroll-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraDecoder.Tpo $(DEPDIR)/oggScroll-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggScroll-theoraDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
-
-oggScroll-theoraEncoder.o: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraEncoder.o -MD -MP -MF $(DEPDIR)/oggScroll-theoraEncoder.Tpo -c -o oggScroll-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraEncoder.Tpo $(DEPDIR)/oggScroll-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggScroll-theoraEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
-
-oggScroll-theoraEncoder.obj: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-theoraEncoder.obj -MD -MP -MF $(DEPDIR)/oggScroll-theoraEncoder.Tpo -c -o oggScroll-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-theoraEncoder.Tpo $(DEPDIR)/oggScroll-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggScroll-theoraEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
-
-oggScroll-katePosInterpreter.o: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-katePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggScroll-katePosInterpreter.Tpo -c -o oggScroll-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-katePosInterpreter.Tpo $(DEPDIR)/oggScroll-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggScroll-katePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
-
-oggScroll-katePosInterpreter.obj: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-katePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggScroll-katePosInterpreter.Tpo -c -o oggScroll-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-katePosInterpreter.Tpo $(DEPDIR)/oggScroll-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggScroll-katePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
-
-oggScroll-kateStreamParameter.o: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-kateStreamParameter.o -MD -MP -MF $(DEPDIR)/oggScroll-kateStreamParameter.Tpo -c -o oggScroll-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-kateStreamParameter.Tpo $(DEPDIR)/oggScroll-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggScroll-kateStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
-
-oggScroll-kateStreamParameter.obj: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-kateStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggScroll-kateStreamParameter.Tpo -c -o oggScroll-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-kateStreamParameter.Tpo $(DEPDIR)/oggScroll-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggScroll-kateStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
-
-oggScroll-kateExtractor.o: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-kateExtractor.o -MD -MP -MF $(DEPDIR)/oggScroll-kateExtractor.Tpo -c -o oggScroll-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-kateExtractor.Tpo $(DEPDIR)/oggScroll-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggScroll-kateExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
-
-oggScroll-kateExtractor.obj: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-kateExtractor.obj -MD -MP -MF $(DEPDIR)/oggScroll-kateExtractor.Tpo -c -o oggScroll-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-kateExtractor.Tpo $(DEPDIR)/oggScroll-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggScroll-kateExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
-
-oggScroll-SDLvideoOutput.o: SDLvideoOutput.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-SDLvideoOutput.o -MD -MP -MF $(DEPDIR)/oggScroll-SDLvideoOutput.Tpo -c -o oggScroll-SDLvideoOutput.o `test -f 'SDLvideoOutput.cpp' || echo '$(srcdir)/'`SDLvideoOutput.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-SDLvideoOutput.Tpo $(DEPDIR)/oggScroll-SDLvideoOutput.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='SDLvideoOutput.cpp' object='oggScroll-SDLvideoOutput.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-SDLvideoOutput.o `test -f 'SDLvideoOutput.cpp' || echo '$(srcdir)/'`SDLvideoOutput.cpp
-
-oggScroll-SDLvideoOutput.obj: SDLvideoOutput.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-SDLvideoOutput.obj -MD -MP -MF $(DEPDIR)/oggScroll-SDLvideoOutput.Tpo -c -o oggScroll-SDLvideoOutput.obj `if test -f 'SDLvideoOutput.cpp'; then $(CYGPATH_W) 'SDLvideoOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/SDLvideoOutput.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-SDLvideoOutput.Tpo $(DEPDIR)/oggScroll-SDLvideoOutput.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='SDLvideoOutput.cpp' object='oggScroll-SDLvideoOutput.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-SDLvideoOutput.obj `if test -f 'SDLvideoOutput.cpp'; then $(CYGPATH_W) 'SDLvideoOutput.cpp'; else $(CYGPATH_W) '$(srcdir)/SDLvideoOutput.cpp'; fi`
-
-oggScroll-cmdlineextractor.o: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-cmdlineextractor.o -MD -MP -MF $(DEPDIR)/oggScroll-cmdlineextractor.Tpo -c -o oggScroll-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-cmdlineextractor.Tpo $(DEPDIR)/oggScroll-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggScroll-cmdlineextractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
-
-oggScroll-cmdlineextractor.obj: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-cmdlineextractor.obj -MD -MP -MF $(DEPDIR)/oggScroll-cmdlineextractor.Tpo -c -o oggScroll-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-cmdlineextractor.Tpo $(DEPDIR)/oggScroll-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggScroll-cmdlineextractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
-
-oggScroll-basePlane.o: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-basePlane.o -MD -MP -MF $(DEPDIR)/oggScroll-basePlane.Tpo -c -o oggScroll-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-basePlane.Tpo $(DEPDIR)/oggScroll-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggScroll-basePlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
-
-oggScroll-basePlane.obj: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-basePlane.obj -MD -MP -MF $(DEPDIR)/oggScroll-basePlane.Tpo -c -o oggScroll-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-basePlane.Tpo $(DEPDIR)/oggScroll-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggScroll-basePlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
-
-oggScroll-rgbPlane.o: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-rgbPlane.o -MD -MP -MF $(DEPDIR)/oggScroll-rgbPlane.Tpo -c -o oggScroll-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-rgbPlane.Tpo $(DEPDIR)/oggScroll-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggScroll-rgbPlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
-
-oggScroll-rgbPlane.obj: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-rgbPlane.obj -MD -MP -MF $(DEPDIR)/oggScroll-rgbPlane.Tpo -c -o oggScroll-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-rgbPlane.Tpo $(DEPDIR)/oggScroll-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggScroll-rgbPlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
-
-oggScroll-blendElement.o: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-blendElement.o -MD -MP -MF $(DEPDIR)/oggScroll-blendElement.Tpo -c -o oggScroll-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-blendElement.Tpo $(DEPDIR)/oggScroll-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggScroll-blendElement.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
-
-oggScroll-blendElement.obj: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-blendElement.obj -MD -MP -MF $(DEPDIR)/oggScroll-blendElement.Tpo -c -o oggScroll-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-blendElement.Tpo $(DEPDIR)/oggScroll-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggScroll-blendElement.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
-
-oggScroll-oggScroll.o: oggScroll.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggScroll.o -MD -MP -MF $(DEPDIR)/oggScroll-oggScroll.Tpo -c -o oggScroll-oggScroll.o `test -f 'oggScroll.cpp' || echo '$(srcdir)/'`oggScroll.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggScroll.Tpo $(DEPDIR)/oggScroll-oggScroll.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggScroll.cpp' object='oggScroll-oggScroll.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggScroll.o `test -f 'oggScroll.cpp' || echo '$(srcdir)/'`oggScroll.cpp
-
-oggScroll-oggScroll.obj: oggScroll.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -MT oggScroll-oggScroll.obj -MD -MP -MF $(DEPDIR)/oggScroll-oggScroll.Tpo -c -o oggScroll-oggScroll.obj `if test -f 'oggScroll.cpp'; then $(CYGPATH_W) 'oggScroll.cpp'; else $(CYGPATH_W) '$(srcdir)/oggScroll.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggScroll-oggScroll.Tpo $(DEPDIR)/oggScroll-oggScroll.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggScroll.cpp' object='oggScroll-oggScroll.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggScroll_CXXFLAGS) $(CXXFLAGS) -c -o oggScroll-oggScroll.obj `if test -f 'oggScroll.cpp'; then $(CYGPATH_W) 'oggScroll.cpp'; else $(CYGPATH_W) '$(srcdir)/oggScroll.cpp'; fi`
-
-oggSilence-mediaUnit.o: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaUnit.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaUnit.Tpo -c -o oggSilence-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaUnit.Tpo $(DEPDIR)/oggSilence-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggSilence-mediaUnit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
-
-oggSilence-mediaUnit.obj: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaUnit.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaUnit.Tpo -c -o oggSilence-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaUnit.Tpo $(DEPDIR)/oggSilence-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggSilence-mediaUnit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
-
-oggSilence-mediaRepository.o: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaRepository.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaRepository.Tpo -c -o oggSilence-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaRepository.Tpo $(DEPDIR)/oggSilence-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggSilence-mediaRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
-
-oggSilence-mediaRepository.obj: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaRepository.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaRepository.Tpo -c -o oggSilence-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaRepository.Tpo $(DEPDIR)/oggSilence-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggSilence-mediaRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
-
-oggSilence-fileRepository.o: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-fileRepository.o -MD -MP -MF $(DEPDIR)/oggSilence-fileRepository.Tpo -c -o oggSilence-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-fileRepository.Tpo $(DEPDIR)/oggSilence-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggSilence-fileRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
-
-oggSilence-fileRepository.obj: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-fileRepository.obj -MD -MP -MF $(DEPDIR)/oggSilence-fileRepository.Tpo -c -o oggSilence-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-fileRepository.Tpo $(DEPDIR)/oggSilence-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggSilence-fileRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
-
-oggSilence-rawMediaPacket.o: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-rawMediaPacket.o -MD -MP -MF $(DEPDIR)/oggSilence-rawMediaPacket.Tpo -c -o oggSilence-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-rawMediaPacket.Tpo $(DEPDIR)/oggSilence-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggSilence-rawMediaPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
-
-oggSilence-rawMediaPacket.obj: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-rawMediaPacket.obj -MD -MP -MF $(DEPDIR)/oggSilence-rawMediaPacket.Tpo -c -o oggSilence-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-rawMediaPacket.Tpo $(DEPDIR)/oggSilence-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggSilence-rawMediaPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
-
-oggSilence-mediaDecoder.o: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaDecoder.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaDecoder.Tpo -c -o oggSilence-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaDecoder.Tpo $(DEPDIR)/oggSilence-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggSilence-mediaDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
-
-oggSilence-mediaDecoder.obj: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaDecoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaDecoder.Tpo -c -o oggSilence-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaDecoder.Tpo $(DEPDIR)/oggSilence-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggSilence-mediaDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
-
-oggSilence-mediaEncoder.o: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaEncoder.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaEncoder.Tpo -c -o oggSilence-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaEncoder.Tpo $(DEPDIR)/oggSilence-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggSilence-mediaEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
-
-oggSilence-mediaEncoder.obj: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaEncoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaEncoder.Tpo -c -o oggSilence-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaEncoder.Tpo $(DEPDIR)/oggSilence-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggSilence-mediaEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
-
-oggSilence-mediaConverter.o: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaConverter.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaConverter.Tpo -c -o oggSilence-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaConverter.Tpo $(DEPDIR)/oggSilence-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggSilence-mediaConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
-
-oggSilence-mediaConverter.obj: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaConverter.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaConverter.Tpo -c -o oggSilence-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaConverter.Tpo $(DEPDIR)/oggSilence-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggSilence-mediaConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
-
-oggSilence-oggDecoder.o: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggDecoder.o -MD -MP -MF $(DEPDIR)/oggSilence-oggDecoder.Tpo -c -o oggSilence-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggDecoder.Tpo $(DEPDIR)/oggSilence-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggSilence-oggDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
-
-oggSilence-oggDecoder.obj: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggDecoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggDecoder.Tpo -c -o oggSilence-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggDecoder.Tpo $(DEPDIR)/oggSilence-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggSilence-oggDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
-
-oggSilence-oggStreamDecoder.o: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggStreamDecoder.o -MD -MP -MF $(DEPDIR)/oggSilence-oggStreamDecoder.Tpo -c -o oggSilence-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggStreamDecoder.Tpo $(DEPDIR)/oggSilence-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggSilence-oggStreamDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
-
-oggSilence-oggStreamDecoder.obj: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggStreamDecoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggStreamDecoder.Tpo -c -o oggSilence-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggStreamDecoder.Tpo $(DEPDIR)/oggSilence-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggSilence-oggStreamDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
-
-oggSilence-oggPage.o: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggPage.o -MD -MP -MF $(DEPDIR)/oggSilence-oggPage.Tpo -c -o oggSilence-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggPage.Tpo $(DEPDIR)/oggSilence-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggSilence-oggPage.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
-
-oggSilence-oggPage.obj: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggPage.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggPage.Tpo -c -o oggSilence-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggPage.Tpo $(DEPDIR)/oggSilence-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggSilence-oggPage.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
-
-oggSilence-oggPacket.o: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggPacket.o -MD -MP -MF $(DEPDIR)/oggSilence-oggPacket.Tpo -c -o oggSilence-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggPacket.Tpo $(DEPDIR)/oggSilence-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggSilence-oggPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
-
-oggSilence-oggPacket.obj: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggPacket.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggPacket.Tpo -c -o oggSilence-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggPacket.Tpo $(DEPDIR)/oggSilence-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggSilence-oggPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
-
-oggSilence-ringbuffer.o: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-ringbuffer.o -MD -MP -MF $(DEPDIR)/oggSilence-ringbuffer.Tpo -c -o oggSilence-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-ringbuffer.Tpo $(DEPDIR)/oggSilence-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggSilence-ringbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
-
-oggSilence-ringbuffer.obj: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-ringbuffer.obj -MD -MP -MF $(DEPDIR)/oggSilence-ringbuffer.Tpo -c -o oggSilence-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-ringbuffer.Tpo $(DEPDIR)/oggSilence-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggSilence-ringbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
-
-oggSilence-oggRingbuffer.o: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggRingbuffer.o -MD -MP -MF $(DEPDIR)/oggSilence-oggRingbuffer.Tpo -c -o oggSilence-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggRingbuffer.Tpo $(DEPDIR)/oggSilence-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggSilence-oggRingbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
-
-oggSilence-oggRingbuffer.obj: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggRingbuffer.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggRingbuffer.Tpo -c -o oggSilence-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggRingbuffer.Tpo $(DEPDIR)/oggSilence-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggSilence-oggRingbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
-
-oggSilence-crc.o: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-crc.o -MD -MP -MF $(DEPDIR)/oggSilence-crc.Tpo -c -o oggSilence-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-crc.Tpo $(DEPDIR)/oggSilence-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggSilence-crc.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
-
-oggSilence-crc.obj: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-crc.obj -MD -MP -MF $(DEPDIR)/oggSilence-crc.Tpo -c -o oggSilence-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-crc.Tpo $(DEPDIR)/oggSilence-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggSilence-crc.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
-
-oggSilence-granulePosInterpreter.o: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-granulePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggSilence-granulePosInterpreter.Tpo -c -o oggSilence-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-granulePosInterpreter.Tpo $(DEPDIR)/oggSilence-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggSilence-granulePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
-
-oggSilence-granulePosInterpreter.obj: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-granulePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggSilence-granulePosInterpreter.Tpo -c -o oggSilence-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-granulePosInterpreter.Tpo $(DEPDIR)/oggSilence-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggSilence-granulePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
-
-oggSilence-mediaOutputDecoder.o: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaOutputDecoder.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaOutputDecoder.Tpo -c -o oggSilence-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaOutputDecoder.Tpo $(DEPDIR)/oggSilence-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggSilence-mediaOutputDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
-
-oggSilence-mediaOutputDecoder.obj: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaOutputDecoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaOutputDecoder.Tpo -c -o oggSilence-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaOutputDecoder.Tpo $(DEPDIR)/oggSilence-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggSilence-mediaOutputDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
-
-oggSilence-mediaInputEncoder.o: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaInputEncoder.o -MD -MP -MF $(DEPDIR)/oggSilence-mediaInputEncoder.Tpo -c -o oggSilence-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaInputEncoder.Tpo $(DEPDIR)/oggSilence-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggSilence-mediaInputEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
-
-oggSilence-mediaInputEncoder.obj: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-mediaInputEncoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-mediaInputEncoder.Tpo -c -o oggSilence-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-mediaInputEncoder.Tpo $(DEPDIR)/oggSilence-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggSilence-mediaInputEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
-
-oggSilence-streamSerializer.o: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamSerializer.o -MD -MP -MF $(DEPDIR)/oggSilence-streamSerializer.Tpo -c -o oggSilence-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamSerializer.Tpo $(DEPDIR)/oggSilence-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggSilence-streamSerializer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
-
-oggSilence-streamSerializer.obj: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamSerializer.obj -MD -MP -MF $(DEPDIR)/oggSilence-streamSerializer.Tpo -c -o oggSilence-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamSerializer.Tpo $(DEPDIR)/oggSilence-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggSilence-streamSerializer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
-
-oggSilence-oggBOSExtractorFactory.o: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggBOSExtractorFactory.o -MD -MP -MF $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Tpo -c -o oggSilence-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggSilence-oggBOSExtractorFactory.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
-
-oggSilence-oggBOSExtractorFactory.obj: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggBOSExtractorFactory.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Tpo -c -o oggSilence-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggSilence-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggSilence-oggBOSExtractorFactory.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
-
-oggSilence-oggStreamEncoder.o: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggStreamEncoder.o -MD -MP -MF $(DEPDIR)/oggSilence-oggStreamEncoder.Tpo -c -o oggSilence-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggStreamEncoder.Tpo $(DEPDIR)/oggSilence-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggSilence-oggStreamEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
-
-oggSilence-oggStreamEncoder.obj: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggStreamEncoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggStreamEncoder.Tpo -c -o oggSilence-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggStreamEncoder.Tpo $(DEPDIR)/oggSilence-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggSilence-oggStreamEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
-
-oggSilence-oggEncoder.o: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggEncoder.o -MD -MP -MF $(DEPDIR)/oggSilence-oggEncoder.Tpo -c -o oggSilence-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggEncoder.Tpo $(DEPDIR)/oggSilence-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggSilence-oggEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
-
-oggSilence-oggEncoder.obj: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggEncoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggEncoder.Tpo -c -o oggSilence-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggEncoder.Tpo $(DEPDIR)/oggSilence-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggSilence-oggEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
-
-oggSilence-streamExtractor.o: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamExtractor.o -MD -MP -MF $(DEPDIR)/oggSilence-streamExtractor.Tpo -c -o oggSilence-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamExtractor.Tpo $(DEPDIR)/oggSilence-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggSilence-streamExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
-
-oggSilence-streamExtractor.obj: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamExtractor.obj -MD -MP -MF $(DEPDIR)/oggSilence-streamExtractor.Tpo -c -o oggSilence-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamExtractor.Tpo $(DEPDIR)/oggSilence-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggSilence-streamExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
-
-oggSilence-streamParameter.o: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamParameter.o -MD -MP -MF $(DEPDIR)/oggSilence-streamParameter.Tpo -c -o oggSilence-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamParameter.Tpo $(DEPDIR)/oggSilence-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggSilence-streamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
-
-oggSilence-streamParameter.obj: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamParameter.obj -MD -MP -MF $(DEPDIR)/oggSilence-streamParameter.Tpo -c -o oggSilence-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamParameter.Tpo $(DEPDIR)/oggSilence-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggSilence-streamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
-
-oggSilence-streamMux.o: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamMux.o -MD -MP -MF $(DEPDIR)/oggSilence-streamMux.Tpo -c -o oggSilence-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamMux.Tpo $(DEPDIR)/oggSilence-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggSilence-streamMux.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
-
-oggSilence-streamMux.obj: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-streamMux.obj -MD -MP -MF $(DEPDIR)/oggSilence-streamMux.Tpo -c -o oggSilence-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-streamMux.Tpo $(DEPDIR)/oggSilence-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggSilence-streamMux.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
-
-oggSilence-bufferRepository.o: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-bufferRepository.o -MD -MP -MF $(DEPDIR)/oggSilence-bufferRepository.Tpo -c -o oggSilence-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-bufferRepository.Tpo $(DEPDIR)/oggSilence-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggSilence-bufferRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
-
-oggSilence-bufferRepository.obj: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-bufferRepository.obj -MD -MP -MF $(DEPDIR)/oggSilence-bufferRepository.Tpo -c -o oggSilence-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-bufferRepository.Tpo $(DEPDIR)/oggSilence-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggSilence-bufferRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
-
-oggSilence-oggComment.o: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggComment.o -MD -MP -MF $(DEPDIR)/oggSilence-oggComment.Tpo -c -o oggSilence-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggComment.Tpo $(DEPDIR)/oggSilence-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggSilence-oggComment.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
-
-oggSilence-oggComment.obj: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggComment.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggComment.Tpo -c -o oggSilence-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggComment.Tpo $(DEPDIR)/oggSilence-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggSilence-oggComment.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
-
-oggSilence-theoraPosInterpreter.o: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggSilence-theoraPosInterpreter.Tpo -c -o oggSilence-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraPosInterpreter.Tpo $(DEPDIR)/oggSilence-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggSilence-theoraPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
-
-oggSilence-theoraPosInterpreter.obj: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggSilence-theoraPosInterpreter.Tpo -c -o oggSilence-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraPosInterpreter.Tpo $(DEPDIR)/oggSilence-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggSilence-theoraPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
-
-oggSilence-theoraStreamParameter.o: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraStreamParameter.o -MD -MP -MF $(DEPDIR)/oggSilence-theoraStreamParameter.Tpo -c -o oggSilence-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraStreamParameter.Tpo $(DEPDIR)/oggSilence-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggSilence-theoraStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
-
-oggSilence-theoraStreamParameter.obj: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggSilence-theoraStreamParameter.Tpo -c -o oggSilence-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraStreamParameter.Tpo $(DEPDIR)/oggSilence-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggSilence-theoraStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
-
-oggSilence-theoraExtractor.o: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraExtractor.o -MD -MP -MF $(DEPDIR)/oggSilence-theoraExtractor.Tpo -c -o oggSilence-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraExtractor.Tpo $(DEPDIR)/oggSilence-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggSilence-theoraExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
-
-oggSilence-theoraExtractor.obj: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-theoraExtractor.obj -MD -MP -MF $(DEPDIR)/oggSilence-theoraExtractor.Tpo -c -o oggSilence-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-theoraExtractor.Tpo $(DEPDIR)/oggSilence-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggSilence-theoraExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
-
-oggSilence-vorbisPosInterpreter.o: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggSilence-vorbisPosInterpreter.Tpo -c -o oggSilence-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisPosInterpreter.Tpo $(DEPDIR)/oggSilence-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggSilence-vorbisPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
-
-oggSilence-vorbisPosInterpreter.obj: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggSilence-vorbisPosInterpreter.Tpo -c -o oggSilence-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisPosInterpreter.Tpo $(DEPDIR)/oggSilence-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggSilence-vorbisPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
-
-oggSilence-vorbisStreamParameter.o: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisStreamParameter.o -MD -MP -MF $(DEPDIR)/oggSilence-vorbisStreamParameter.Tpo -c -o oggSilence-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisStreamParameter.Tpo $(DEPDIR)/oggSilence-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggSilence-vorbisStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
-
-oggSilence-vorbisStreamParameter.obj: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggSilence-vorbisStreamParameter.Tpo -c -o oggSilence-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisStreamParameter.Tpo $(DEPDIR)/oggSilence-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggSilence-vorbisStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
-
-oggSilence-vorbisExtractor.o: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisExtractor.o -MD -MP -MF $(DEPDIR)/oggSilence-vorbisExtractor.Tpo -c -o oggSilence-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisExtractor.Tpo $(DEPDIR)/oggSilence-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggSilence-vorbisExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
-
-oggSilence-vorbisExtractor.obj: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisExtractor.obj -MD -MP -MF $(DEPDIR)/oggSilence-vorbisExtractor.Tpo -c -o oggSilence-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisExtractor.Tpo $(DEPDIR)/oggSilence-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggSilence-vorbisExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
-
-oggSilence-katePosInterpreter.o: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-katePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggSilence-katePosInterpreter.Tpo -c -o oggSilence-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-katePosInterpreter.Tpo $(DEPDIR)/oggSilence-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggSilence-katePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
-
-oggSilence-katePosInterpreter.obj: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-katePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggSilence-katePosInterpreter.Tpo -c -o oggSilence-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-katePosInterpreter.Tpo $(DEPDIR)/oggSilence-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggSilence-katePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
-
-oggSilence-kateStreamParameter.o: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-kateStreamParameter.o -MD -MP -MF $(DEPDIR)/oggSilence-kateStreamParameter.Tpo -c -o oggSilence-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-kateStreamParameter.Tpo $(DEPDIR)/oggSilence-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggSilence-kateStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
-
-oggSilence-kateStreamParameter.obj: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-kateStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggSilence-kateStreamParameter.Tpo -c -o oggSilence-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-kateStreamParameter.Tpo $(DEPDIR)/oggSilence-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggSilence-kateStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
-
-oggSilence-kateExtractor.o: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-kateExtractor.o -MD -MP -MF $(DEPDIR)/oggSilence-kateExtractor.Tpo -c -o oggSilence-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-kateExtractor.Tpo $(DEPDIR)/oggSilence-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggSilence-kateExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
-
-oggSilence-kateExtractor.obj: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-kateExtractor.obj -MD -MP -MF $(DEPDIR)/oggSilence-kateExtractor.Tpo -c -o oggSilence-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-kateExtractor.Tpo $(DEPDIR)/oggSilence-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggSilence-kateExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
-
-oggSilence-vorbisDecoder.o: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisDecoder.o -MD -MP -MF $(DEPDIR)/oggSilence-vorbisDecoder.Tpo -c -o oggSilence-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisDecoder.Tpo $(DEPDIR)/oggSilence-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggSilence-vorbisDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
-
-oggSilence-vorbisDecoder.obj: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisDecoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-vorbisDecoder.Tpo -c -o oggSilence-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisDecoder.Tpo $(DEPDIR)/oggSilence-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggSilence-vorbisDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
-
-oggSilence-vorbisEncoder.o: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisEncoder.o -MD -MP -MF $(DEPDIR)/oggSilence-vorbisEncoder.Tpo -c -o oggSilence-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisEncoder.Tpo $(DEPDIR)/oggSilence-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggSilence-vorbisEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
-
-oggSilence-vorbisEncoder.obj: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-vorbisEncoder.obj -MD -MP -MF $(DEPDIR)/oggSilence-vorbisEncoder.Tpo -c -o oggSilence-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-vorbisEncoder.Tpo $(DEPDIR)/oggSilence-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggSilence-vorbisEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
-
-oggSilence-audioPacket.o: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-audioPacket.o -MD -MP -MF $(DEPDIR)/oggSilence-audioPacket.Tpo -c -o oggSilence-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-audioPacket.Tpo $(DEPDIR)/oggSilence-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggSilence-audioPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
-
-oggSilence-audioPacket.obj: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-audioPacket.obj -MD -MP -MF $(DEPDIR)/oggSilence-audioPacket.Tpo -c -o oggSilence-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-audioPacket.Tpo $(DEPDIR)/oggSilence-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggSilence-audioPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
-
-oggSilence-audioConverter.o: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-audioConverter.o -MD -MP -MF $(DEPDIR)/oggSilence-audioConverter.Tpo -c -o oggSilence-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-audioConverter.Tpo $(DEPDIR)/oggSilence-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggSilence-audioConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
-
-oggSilence-audioConverter.obj: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-audioConverter.obj -MD -MP -MF $(DEPDIR)/oggSilence-audioConverter.Tpo -c -o oggSilence-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-audioConverter.Tpo $(DEPDIR)/oggSilence-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggSilence-audioConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
-
-oggSilence-cmdlineextractor.o: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-cmdlineextractor.o -MD -MP -MF $(DEPDIR)/oggSilence-cmdlineextractor.Tpo -c -o oggSilence-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-cmdlineextractor.Tpo $(DEPDIR)/oggSilence-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggSilence-cmdlineextractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
-
-oggSilence-cmdlineextractor.obj: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-cmdlineextractor.obj -MD -MP -MF $(DEPDIR)/oggSilence-cmdlineextractor.Tpo -c -o oggSilence-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-cmdlineextractor.Tpo $(DEPDIR)/oggSilence-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggSilence-cmdlineextractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
-
-oggSilence-basePlane.o: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-basePlane.o -MD -MP -MF $(DEPDIR)/oggSilence-basePlane.Tpo -c -o oggSilence-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-basePlane.Tpo $(DEPDIR)/oggSilence-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggSilence-basePlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
-
-oggSilence-basePlane.obj: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-basePlane.obj -MD -MP -MF $(DEPDIR)/oggSilence-basePlane.Tpo -c -o oggSilence-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-basePlane.Tpo $(DEPDIR)/oggSilence-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggSilence-basePlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
-
-oggSilence-rgbPlane.o: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-rgbPlane.o -MD -MP -MF $(DEPDIR)/oggSilence-rgbPlane.Tpo -c -o oggSilence-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-rgbPlane.Tpo $(DEPDIR)/oggSilence-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggSilence-rgbPlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
-
-oggSilence-rgbPlane.obj: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-rgbPlane.obj -MD -MP -MF $(DEPDIR)/oggSilence-rgbPlane.Tpo -c -o oggSilence-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-rgbPlane.Tpo $(DEPDIR)/oggSilence-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggSilence-rgbPlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
-
-oggSilence-blendElement.o: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-blendElement.o -MD -MP -MF $(DEPDIR)/oggSilence-blendElement.Tpo -c -o oggSilence-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-blendElement.Tpo $(DEPDIR)/oggSilence-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggSilence-blendElement.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
-
-oggSilence-blendElement.obj: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-blendElement.obj -MD -MP -MF $(DEPDIR)/oggSilence-blendElement.Tpo -c -o oggSilence-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-blendElement.Tpo $(DEPDIR)/oggSilence-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggSilence-blendElement.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
-
-oggSilence-oggSilence.o: oggSilence.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggSilence.o -MD -MP -MF $(DEPDIR)/oggSilence-oggSilence.Tpo -c -o oggSilence-oggSilence.o `test -f 'oggSilence.cpp' || echo '$(srcdir)/'`oggSilence.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggSilence.Tpo $(DEPDIR)/oggSilence-oggSilence.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggSilence.cpp' object='oggSilence-oggSilence.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggSilence.o `test -f 'oggSilence.cpp' || echo '$(srcdir)/'`oggSilence.cpp
-
-oggSilence-oggSilence.obj: oggSilence.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -MT oggSilence-oggSilence.obj -MD -MP -MF $(DEPDIR)/oggSilence-oggSilence.Tpo -c -o oggSilence-oggSilence.obj `if test -f 'oggSilence.cpp'; then $(CYGPATH_W) 'oggSilence.cpp'; else $(CYGPATH_W) '$(srcdir)/oggSilence.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggSilence-oggSilence.Tpo $(DEPDIR)/oggSilence-oggSilence.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggSilence.cpp' object='oggSilence-oggSilence.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggSilence_CXXFLAGS) $(CXXFLAGS) -c -o oggSilence-oggSilence.obj `if test -f 'oggSilence.cpp'; then $(CYGPATH_W) 'oggSilence.cpp'; else $(CYGPATH_W) '$(srcdir)/oggSilence.cpp'; fi`
-
-oggThumb-mediaUnit.o: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaUnit.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaUnit.Tpo -c -o oggThumb-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaUnit.Tpo $(DEPDIR)/oggThumb-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggThumb-mediaUnit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
-
-oggThumb-mediaUnit.obj: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaUnit.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaUnit.Tpo -c -o oggThumb-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaUnit.Tpo $(DEPDIR)/oggThumb-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggThumb-mediaUnit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
-
-oggThumb-mediaRepository.o: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaRepository.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaRepository.Tpo -c -o oggThumb-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaRepository.Tpo $(DEPDIR)/oggThumb-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggThumb-mediaRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
-
-oggThumb-mediaRepository.obj: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaRepository.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaRepository.Tpo -c -o oggThumb-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaRepository.Tpo $(DEPDIR)/oggThumb-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggThumb-mediaRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
-
-oggThumb-fileRepository.o: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-fileRepository.o -MD -MP -MF $(DEPDIR)/oggThumb-fileRepository.Tpo -c -o oggThumb-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-fileRepository.Tpo $(DEPDIR)/oggThumb-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggThumb-fileRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
-
-oggThumb-fileRepository.obj: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-fileRepository.obj -MD -MP -MF $(DEPDIR)/oggThumb-fileRepository.Tpo -c -o oggThumb-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-fileRepository.Tpo $(DEPDIR)/oggThumb-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggThumb-fileRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
-
-oggThumb-rawMediaPacket.o: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-rawMediaPacket.o -MD -MP -MF $(DEPDIR)/oggThumb-rawMediaPacket.Tpo -c -o oggThumb-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-rawMediaPacket.Tpo $(DEPDIR)/oggThumb-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggThumb-rawMediaPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
-
-oggThumb-rawMediaPacket.obj: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-rawMediaPacket.obj -MD -MP -MF $(DEPDIR)/oggThumb-rawMediaPacket.Tpo -c -o oggThumb-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-rawMediaPacket.Tpo $(DEPDIR)/oggThumb-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggThumb-rawMediaPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
-
-oggThumb-mediaDecoder.o: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaDecoder.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaDecoder.Tpo -c -o oggThumb-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaDecoder.Tpo $(DEPDIR)/oggThumb-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggThumb-mediaDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
-
-oggThumb-mediaDecoder.obj: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaDecoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaDecoder.Tpo -c -o oggThumb-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaDecoder.Tpo $(DEPDIR)/oggThumb-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggThumb-mediaDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
-
-oggThumb-mediaEncoder.o: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaEncoder.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaEncoder.Tpo -c -o oggThumb-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaEncoder.Tpo $(DEPDIR)/oggThumb-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggThumb-mediaEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
-
-oggThumb-mediaEncoder.obj: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaEncoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaEncoder.Tpo -c -o oggThumb-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaEncoder.Tpo $(DEPDIR)/oggThumb-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggThumb-mediaEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
-
-oggThumb-mediaConverter.o: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaConverter.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaConverter.Tpo -c -o oggThumb-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaConverter.Tpo $(DEPDIR)/oggThumb-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggThumb-mediaConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
-
-oggThumb-mediaConverter.obj: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaConverter.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaConverter.Tpo -c -o oggThumb-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaConverter.Tpo $(DEPDIR)/oggThumb-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggThumb-mediaConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
-
-oggThumb-oggDecoder.o: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggDecoder.o -MD -MP -MF $(DEPDIR)/oggThumb-oggDecoder.Tpo -c -o oggThumb-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggDecoder.Tpo $(DEPDIR)/oggThumb-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggThumb-oggDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
-
-oggThumb-oggDecoder.obj: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggDecoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggDecoder.Tpo -c -o oggThumb-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggDecoder.Tpo $(DEPDIR)/oggThumb-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggThumb-oggDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
-
-oggThumb-oggStreamDecoder.o: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggStreamDecoder.o -MD -MP -MF $(DEPDIR)/oggThumb-oggStreamDecoder.Tpo -c -o oggThumb-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggStreamDecoder.Tpo $(DEPDIR)/oggThumb-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggThumb-oggStreamDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
-
-oggThumb-oggStreamDecoder.obj: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggStreamDecoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggStreamDecoder.Tpo -c -o oggThumb-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggStreamDecoder.Tpo $(DEPDIR)/oggThumb-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggThumb-oggStreamDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
-
-oggThumb-oggPage.o: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggPage.o -MD -MP -MF $(DEPDIR)/oggThumb-oggPage.Tpo -c -o oggThumb-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggPage.Tpo $(DEPDIR)/oggThumb-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggThumb-oggPage.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
-
-oggThumb-oggPage.obj: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggPage.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggPage.Tpo -c -o oggThumb-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggPage.Tpo $(DEPDIR)/oggThumb-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggThumb-oggPage.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
-
-oggThumb-oggPacket.o: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggPacket.o -MD -MP -MF $(DEPDIR)/oggThumb-oggPacket.Tpo -c -o oggThumb-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggPacket.Tpo $(DEPDIR)/oggThumb-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggThumb-oggPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
-
-oggThumb-oggPacket.obj: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggPacket.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggPacket.Tpo -c -o oggThumb-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggPacket.Tpo $(DEPDIR)/oggThumb-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggThumb-oggPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
-
-oggThumb-ringbuffer.o: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-ringbuffer.o -MD -MP -MF $(DEPDIR)/oggThumb-ringbuffer.Tpo -c -o oggThumb-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-ringbuffer.Tpo $(DEPDIR)/oggThumb-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggThumb-ringbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
-
-oggThumb-ringbuffer.obj: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-ringbuffer.obj -MD -MP -MF $(DEPDIR)/oggThumb-ringbuffer.Tpo -c -o oggThumb-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-ringbuffer.Tpo $(DEPDIR)/oggThumb-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggThumb-ringbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
-
-oggThumb-oggRingbuffer.o: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggRingbuffer.o -MD -MP -MF $(DEPDIR)/oggThumb-oggRingbuffer.Tpo -c -o oggThumb-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggRingbuffer.Tpo $(DEPDIR)/oggThumb-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggThumb-oggRingbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
-
-oggThumb-oggRingbuffer.obj: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggRingbuffer.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggRingbuffer.Tpo -c -o oggThumb-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggRingbuffer.Tpo $(DEPDIR)/oggThumb-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggThumb-oggRingbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
-
-oggThumb-crc.o: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-crc.o -MD -MP -MF $(DEPDIR)/oggThumb-crc.Tpo -c -o oggThumb-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-crc.Tpo $(DEPDIR)/oggThumb-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggThumb-crc.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
-
-oggThumb-crc.obj: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-crc.obj -MD -MP -MF $(DEPDIR)/oggThumb-crc.Tpo -c -o oggThumb-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-crc.Tpo $(DEPDIR)/oggThumb-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggThumb-crc.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
-
-oggThumb-granulePosInterpreter.o: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-granulePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggThumb-granulePosInterpreter.Tpo -c -o oggThumb-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-granulePosInterpreter.Tpo $(DEPDIR)/oggThumb-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggThumb-granulePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
-
-oggThumb-granulePosInterpreter.obj: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-granulePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggThumb-granulePosInterpreter.Tpo -c -o oggThumb-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-granulePosInterpreter.Tpo $(DEPDIR)/oggThumb-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggThumb-granulePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
-
-oggThumb-mediaOutputDecoder.o: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaOutputDecoder.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaOutputDecoder.Tpo -c -o oggThumb-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaOutputDecoder.Tpo $(DEPDIR)/oggThumb-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggThumb-mediaOutputDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
-
-oggThumb-mediaOutputDecoder.obj: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaOutputDecoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaOutputDecoder.Tpo -c -o oggThumb-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaOutputDecoder.Tpo $(DEPDIR)/oggThumb-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggThumb-mediaOutputDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
-
-oggThumb-mediaInputEncoder.o: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaInputEncoder.o -MD -MP -MF $(DEPDIR)/oggThumb-mediaInputEncoder.Tpo -c -o oggThumb-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaInputEncoder.Tpo $(DEPDIR)/oggThumb-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggThumb-mediaInputEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
-
-oggThumb-mediaInputEncoder.obj: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-mediaInputEncoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-mediaInputEncoder.Tpo -c -o oggThumb-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-mediaInputEncoder.Tpo $(DEPDIR)/oggThumb-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggThumb-mediaInputEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
-
-oggThumb-streamSerializer.o: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamSerializer.o -MD -MP -MF $(DEPDIR)/oggThumb-streamSerializer.Tpo -c -o oggThumb-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamSerializer.Tpo $(DEPDIR)/oggThumb-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggThumb-streamSerializer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
-
-oggThumb-streamSerializer.obj: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamSerializer.obj -MD -MP -MF $(DEPDIR)/oggThumb-streamSerializer.Tpo -c -o oggThumb-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamSerializer.Tpo $(DEPDIR)/oggThumb-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggThumb-streamSerializer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
-
-oggThumb-oggBOSExtractorFactory.o: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggBOSExtractorFactory.o -MD -MP -MF $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Tpo -c -o oggThumb-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggThumb-oggBOSExtractorFactory.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
-
-oggThumb-oggBOSExtractorFactory.obj: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggBOSExtractorFactory.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Tpo -c -o oggThumb-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggThumb-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggThumb-oggBOSExtractorFactory.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
-
-oggThumb-oggStreamEncoder.o: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggStreamEncoder.o -MD -MP -MF $(DEPDIR)/oggThumb-oggStreamEncoder.Tpo -c -o oggThumb-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggStreamEncoder.Tpo $(DEPDIR)/oggThumb-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggThumb-oggStreamEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
-
-oggThumb-oggStreamEncoder.obj: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggStreamEncoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggStreamEncoder.Tpo -c -o oggThumb-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggStreamEncoder.Tpo $(DEPDIR)/oggThumb-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggThumb-oggStreamEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
-
-oggThumb-oggEncoder.o: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggEncoder.o -MD -MP -MF $(DEPDIR)/oggThumb-oggEncoder.Tpo -c -o oggThumb-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggEncoder.Tpo $(DEPDIR)/oggThumb-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggThumb-oggEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
-
-oggThumb-oggEncoder.obj: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggEncoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggEncoder.Tpo -c -o oggThumb-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggEncoder.Tpo $(DEPDIR)/oggThumb-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggThumb-oggEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
-
-oggThumb-streamExtractor.o: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamExtractor.o -MD -MP -MF $(DEPDIR)/oggThumb-streamExtractor.Tpo -c -o oggThumb-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamExtractor.Tpo $(DEPDIR)/oggThumb-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggThumb-streamExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
-
-oggThumb-streamExtractor.obj: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamExtractor.obj -MD -MP -MF $(DEPDIR)/oggThumb-streamExtractor.Tpo -c -o oggThumb-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamExtractor.Tpo $(DEPDIR)/oggThumb-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggThumb-streamExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
-
-oggThumb-streamParameter.o: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamParameter.o -MD -MP -MF $(DEPDIR)/oggThumb-streamParameter.Tpo -c -o oggThumb-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamParameter.Tpo $(DEPDIR)/oggThumb-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggThumb-streamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
-
-oggThumb-streamParameter.obj: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamParameter.obj -MD -MP -MF $(DEPDIR)/oggThumb-streamParameter.Tpo -c -o oggThumb-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamParameter.Tpo $(DEPDIR)/oggThumb-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggThumb-streamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
-
-oggThumb-streamMux.o: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamMux.o -MD -MP -MF $(DEPDIR)/oggThumb-streamMux.Tpo -c -o oggThumb-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamMux.Tpo $(DEPDIR)/oggThumb-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggThumb-streamMux.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
-
-oggThumb-streamMux.obj: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-streamMux.obj -MD -MP -MF $(DEPDIR)/oggThumb-streamMux.Tpo -c -o oggThumb-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-streamMux.Tpo $(DEPDIR)/oggThumb-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggThumb-streamMux.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
-
-oggThumb-bufferRepository.o: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-bufferRepository.o -MD -MP -MF $(DEPDIR)/oggThumb-bufferRepository.Tpo -c -o oggThumb-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-bufferRepository.Tpo $(DEPDIR)/oggThumb-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggThumb-bufferRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
-
-oggThumb-bufferRepository.obj: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-bufferRepository.obj -MD -MP -MF $(DEPDIR)/oggThumb-bufferRepository.Tpo -c -o oggThumb-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-bufferRepository.Tpo $(DEPDIR)/oggThumb-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggThumb-bufferRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
-
-oggThumb-oggComment.o: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggComment.o -MD -MP -MF $(DEPDIR)/oggThumb-oggComment.Tpo -c -o oggThumb-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggComment.Tpo $(DEPDIR)/oggThumb-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggThumb-oggComment.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
-
-oggThumb-oggComment.obj: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggComment.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggComment.Tpo -c -o oggThumb-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggComment.Tpo $(DEPDIR)/oggThumb-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggThumb-oggComment.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
-
-oggThumb-theoraPosInterpreter.o: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggThumb-theoraPosInterpreter.Tpo -c -o oggThumb-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraPosInterpreter.Tpo $(DEPDIR)/oggThumb-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggThumb-theoraPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
-
-oggThumb-theoraPosInterpreter.obj: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggThumb-theoraPosInterpreter.Tpo -c -o oggThumb-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraPosInterpreter.Tpo $(DEPDIR)/oggThumb-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggThumb-theoraPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
-
-oggThumb-theoraStreamParameter.o: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraStreamParameter.o -MD -MP -MF $(DEPDIR)/oggThumb-theoraStreamParameter.Tpo -c -o oggThumb-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraStreamParameter.Tpo $(DEPDIR)/oggThumb-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggThumb-theoraStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
-
-oggThumb-theoraStreamParameter.obj: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggThumb-theoraStreamParameter.Tpo -c -o oggThumb-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraStreamParameter.Tpo $(DEPDIR)/oggThumb-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggThumb-theoraStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
-
-oggThumb-theoraExtractor.o: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraExtractor.o -MD -MP -MF $(DEPDIR)/oggThumb-theoraExtractor.Tpo -c -o oggThumb-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraExtractor.Tpo $(DEPDIR)/oggThumb-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggThumb-theoraExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
-
-oggThumb-theoraExtractor.obj: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraExtractor.obj -MD -MP -MF $(DEPDIR)/oggThumb-theoraExtractor.Tpo -c -o oggThumb-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraExtractor.Tpo $(DEPDIR)/oggThumb-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggThumb-theoraExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
-
-oggThumb-vorbisPosInterpreter.o: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggThumb-vorbisPosInterpreter.Tpo -c -o oggThumb-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisPosInterpreter.Tpo $(DEPDIR)/oggThumb-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggThumb-vorbisPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
-
-oggThumb-vorbisPosInterpreter.obj: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggThumb-vorbisPosInterpreter.Tpo -c -o oggThumb-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisPosInterpreter.Tpo $(DEPDIR)/oggThumb-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggThumb-vorbisPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
-
-oggThumb-vorbisStreamParameter.o: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisStreamParameter.o -MD -MP -MF $(DEPDIR)/oggThumb-vorbisStreamParameter.Tpo -c -o oggThumb-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisStreamParameter.Tpo $(DEPDIR)/oggThumb-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggThumb-vorbisStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
-
-oggThumb-vorbisStreamParameter.obj: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggThumb-vorbisStreamParameter.Tpo -c -o oggThumb-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisStreamParameter.Tpo $(DEPDIR)/oggThumb-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggThumb-vorbisStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
-
-oggThumb-vorbisExtractor.o: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisExtractor.o -MD -MP -MF $(DEPDIR)/oggThumb-vorbisExtractor.Tpo -c -o oggThumb-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisExtractor.Tpo $(DEPDIR)/oggThumb-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggThumb-vorbisExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
-
-oggThumb-vorbisExtractor.obj: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-vorbisExtractor.obj -MD -MP -MF $(DEPDIR)/oggThumb-vorbisExtractor.Tpo -c -o oggThumb-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-vorbisExtractor.Tpo $(DEPDIR)/oggThumb-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggThumb-vorbisExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
-
-oggThumb-katePosInterpreter.o: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-katePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggThumb-katePosInterpreter.Tpo -c -o oggThumb-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-katePosInterpreter.Tpo $(DEPDIR)/oggThumb-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggThumb-katePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
-
-oggThumb-katePosInterpreter.obj: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-katePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggThumb-katePosInterpreter.Tpo -c -o oggThumb-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-katePosInterpreter.Tpo $(DEPDIR)/oggThumb-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggThumb-katePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
-
-oggThumb-kateStreamParameter.o: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kateStreamParameter.o -MD -MP -MF $(DEPDIR)/oggThumb-kateStreamParameter.Tpo -c -o oggThumb-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kateStreamParameter.Tpo $(DEPDIR)/oggThumb-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggThumb-kateStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
-
-oggThumb-kateStreamParameter.obj: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kateStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggThumb-kateStreamParameter.Tpo -c -o oggThumb-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kateStreamParameter.Tpo $(DEPDIR)/oggThumb-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggThumb-kateStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
-
-oggThumb-kateExtractor.o: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kateExtractor.o -MD -MP -MF $(DEPDIR)/oggThumb-kateExtractor.Tpo -c -o oggThumb-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kateExtractor.Tpo $(DEPDIR)/oggThumb-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggThumb-kateExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
-
-oggThumb-kateExtractor.obj: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kateExtractor.obj -MD -MP -MF $(DEPDIR)/oggThumb-kateExtractor.Tpo -c -o oggThumb-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kateExtractor.Tpo $(DEPDIR)/oggThumb-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggThumb-kateExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
-
-oggThumb-theoraDecoder.o: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraDecoder.o -MD -MP -MF $(DEPDIR)/oggThumb-theoraDecoder.Tpo -c -o oggThumb-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraDecoder.Tpo $(DEPDIR)/oggThumb-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggThumb-theoraDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
-
-oggThumb-theoraDecoder.obj: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraDecoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-theoraDecoder.Tpo -c -o oggThumb-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraDecoder.Tpo $(DEPDIR)/oggThumb-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggThumb-theoraDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
-
-oggThumb-theoraEncoder.o: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraEncoder.o -MD -MP -MF $(DEPDIR)/oggThumb-theoraEncoder.Tpo -c -o oggThumb-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraEncoder.Tpo $(DEPDIR)/oggThumb-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggThumb-theoraEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
-
-oggThumb-theoraEncoder.obj: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-theoraEncoder.obj -MD -MP -MF $(DEPDIR)/oggThumb-theoraEncoder.Tpo -c -o oggThumb-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-theoraEncoder.Tpo $(DEPDIR)/oggThumb-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggThumb-theoraEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
-
-oggThumb-effector.o: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-effector.o -MD -MP -MF $(DEPDIR)/oggThumb-effector.Tpo -c -o oggThumb-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-effector.Tpo $(DEPDIR)/oggThumb-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggThumb-effector.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
-
-oggThumb-effector.obj: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-effector.obj -MD -MP -MF $(DEPDIR)/oggThumb-effector.Tpo -c -o oggThumb-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-effector.Tpo $(DEPDIR)/oggThumb-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggThumb-effector.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
-
-oggThumb-crossfader.o: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-crossfader.o -MD -MP -MF $(DEPDIR)/oggThumb-crossfader.Tpo -c -o oggThumb-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-crossfader.Tpo $(DEPDIR)/oggThumb-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggThumb-crossfader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
-
-oggThumb-crossfader.obj: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-crossfader.obj -MD -MP -MF $(DEPDIR)/oggThumb-crossfader.Tpo -c -o oggThumb-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-crossfader.Tpo $(DEPDIR)/oggThumb-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggThumb-crossfader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
-
-oggThumb-plainPicture.o: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-plainPicture.o -MD -MP -MF $(DEPDIR)/oggThumb-plainPicture.Tpo -c -o oggThumb-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-plainPicture.Tpo $(DEPDIR)/oggThumb-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggThumb-plainPicture.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
-
-oggThumb-plainPicture.obj: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-plainPicture.obj -MD -MP -MF $(DEPDIR)/oggThumb-plainPicture.Tpo -c -o oggThumb-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-plainPicture.Tpo $(DEPDIR)/oggThumb-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggThumb-plainPicture.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
-
-oggThumb-lowpassEffect.o: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-lowpassEffect.o -MD -MP -MF $(DEPDIR)/oggThumb-lowpassEffect.Tpo -c -o oggThumb-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-lowpassEffect.Tpo $(DEPDIR)/oggThumb-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggThumb-lowpassEffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
-
-oggThumb-lowpassEffect.obj: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-lowpassEffect.obj -MD -MP -MF $(DEPDIR)/oggThumb-lowpassEffect.Tpo -c -o oggThumb-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-lowpassEffect.Tpo $(DEPDIR)/oggThumb-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggThumb-lowpassEffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
-
-oggThumb-kenburnseffect.o: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kenburnseffect.o -MD -MP -MF $(DEPDIR)/oggThumb-kenburnseffect.Tpo -c -o oggThumb-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kenburnseffect.Tpo $(DEPDIR)/oggThumb-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggThumb-kenburnseffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
-
-oggThumb-kenburnseffect.obj: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-kenburnseffect.obj -MD -MP -MF $(DEPDIR)/oggThumb-kenburnseffect.Tpo -c -o oggThumb-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-kenburnseffect.Tpo $(DEPDIR)/oggThumb-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggThumb-kenburnseffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
-
-oggThumb-pictureResize.o: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureResize.o -MD -MP -MF $(DEPDIR)/oggThumb-pictureResize.Tpo -c -o oggThumb-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureResize.Tpo $(DEPDIR)/oggThumb-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggThumb-pictureResize.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
-
-oggThumb-pictureResize.obj: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureResize.obj -MD -MP -MF $(DEPDIR)/oggThumb-pictureResize.Tpo -c -o oggThumb-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureResize.Tpo $(DEPDIR)/oggThumb-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggThumb-pictureResize.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
-
-oggThumb-pictureBlend.o: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureBlend.o -MD -MP -MF $(DEPDIR)/oggThumb-pictureBlend.Tpo -c -o oggThumb-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureBlend.Tpo $(DEPDIR)/oggThumb-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggThumb-pictureBlend.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
-
-oggThumb-pictureBlend.obj: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureBlend.obj -MD -MP -MF $(DEPDIR)/oggThumb-pictureBlend.Tpo -c -o oggThumb-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureBlend.Tpo $(DEPDIR)/oggThumb-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggThumb-pictureBlend.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
-
-oggThumb-pictureLoader.o: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureLoader.o -MD -MP -MF $(DEPDIR)/oggThumb-pictureLoader.Tpo -c -o oggThumb-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureLoader.Tpo $(DEPDIR)/oggThumb-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggThumb-pictureLoader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
-
-oggThumb-pictureLoader.obj: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-pictureLoader.obj -MD -MP -MF $(DEPDIR)/oggThumb-pictureLoader.Tpo -c -o oggThumb-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-pictureLoader.Tpo $(DEPDIR)/oggThumb-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggThumb-pictureLoader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
-
-oggThumb-cmdlineextractor.o: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-cmdlineextractor.o -MD -MP -MF $(DEPDIR)/oggThumb-cmdlineextractor.Tpo -c -o oggThumb-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-cmdlineextractor.Tpo $(DEPDIR)/oggThumb-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggThumb-cmdlineextractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
-
-oggThumb-cmdlineextractor.obj: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-cmdlineextractor.obj -MD -MP -MF $(DEPDIR)/oggThumb-cmdlineextractor.Tpo -c -o oggThumb-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-cmdlineextractor.Tpo $(DEPDIR)/oggThumb-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggThumb-cmdlineextractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
-
-oggThumb-basePlane.o: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-basePlane.o -MD -MP -MF $(DEPDIR)/oggThumb-basePlane.Tpo -c -o oggThumb-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-basePlane.Tpo $(DEPDIR)/oggThumb-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggThumb-basePlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
-
-oggThumb-basePlane.obj: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-basePlane.obj -MD -MP -MF $(DEPDIR)/oggThumb-basePlane.Tpo -c -o oggThumb-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-basePlane.Tpo $(DEPDIR)/oggThumb-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggThumb-basePlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
-
-oggThumb-rgbPlane.o: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-rgbPlane.o -MD -MP -MF $(DEPDIR)/oggThumb-rgbPlane.Tpo -c -o oggThumb-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-rgbPlane.Tpo $(DEPDIR)/oggThumb-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggThumb-rgbPlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
-
-oggThumb-rgbPlane.obj: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-rgbPlane.obj -MD -MP -MF $(DEPDIR)/oggThumb-rgbPlane.Tpo -c -o oggThumb-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-rgbPlane.Tpo $(DEPDIR)/oggThumb-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggThumb-rgbPlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
-
-oggThumb-blendElement.o: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-blendElement.o -MD -MP -MF $(DEPDIR)/oggThumb-blendElement.Tpo -c -o oggThumb-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-blendElement.Tpo $(DEPDIR)/oggThumb-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggThumb-blendElement.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
-
-oggThumb-blendElement.obj: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-blendElement.obj -MD -MP -MF $(DEPDIR)/oggThumb-blendElement.Tpo -c -o oggThumb-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-blendElement.Tpo $(DEPDIR)/oggThumb-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggThumb-blendElement.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
-
-oggThumb-oggThumb.o: oggThumb.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggThumb.o -MD -MP -MF $(DEPDIR)/oggThumb-oggThumb.Tpo -c -o oggThumb-oggThumb.o `test -f 'oggThumb.cpp' || echo '$(srcdir)/'`oggThumb.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggThumb.Tpo $(DEPDIR)/oggThumb-oggThumb.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggThumb.cpp' object='oggThumb-oggThumb.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggThumb.o `test -f 'oggThumb.cpp' || echo '$(srcdir)/'`oggThumb.cpp
-
-oggThumb-oggThumb.obj: oggThumb.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -MT oggThumb-oggThumb.obj -MD -MP -MF $(DEPDIR)/oggThumb-oggThumb.Tpo -c -o oggThumb-oggThumb.obj `if test -f 'oggThumb.cpp'; then $(CYGPATH_W) 'oggThumb.cpp'; else $(CYGPATH_W) '$(srcdir)/oggThumb.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggThumb-oggThumb.Tpo $(DEPDIR)/oggThumb-oggThumb.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggThumb.cpp' object='oggThumb-oggThumb.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggThumb_CXXFLAGS) $(CXXFLAGS) -c -o oggThumb-oggThumb.obj `if test -f 'oggThumb.cpp'; then $(CYGPATH_W) 'oggThumb.cpp'; else $(CYGPATH_W) '$(srcdir)/oggThumb.cpp'; fi`
-
-oggTranscode-mediaUnit.o: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaUnit.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaUnit.Tpo -c -o oggTranscode-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaUnit.Tpo $(DEPDIR)/oggTranscode-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggTranscode-mediaUnit.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaUnit.o `test -f 'mediaUnit.cpp' || echo '$(srcdir)/'`mediaUnit.cpp
-
-oggTranscode-mediaUnit.obj: mediaUnit.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaUnit.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaUnit.Tpo -c -o oggTranscode-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaUnit.Tpo $(DEPDIR)/oggTranscode-mediaUnit.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaUnit.cpp' object='oggTranscode-mediaUnit.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaUnit.obj `if test -f 'mediaUnit.cpp'; then $(CYGPATH_W) 'mediaUnit.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaUnit.cpp'; fi`
-
-oggTranscode-mediaRepository.o: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaRepository.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaRepository.Tpo -c -o oggTranscode-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaRepository.Tpo $(DEPDIR)/oggTranscode-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggTranscode-mediaRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaRepository.o `test -f 'mediaRepository.cpp' || echo '$(srcdir)/'`mediaRepository.cpp
-
-oggTranscode-mediaRepository.obj: mediaRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaRepository.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaRepository.Tpo -c -o oggTranscode-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaRepository.Tpo $(DEPDIR)/oggTranscode-mediaRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaRepository.cpp' object='oggTranscode-mediaRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaRepository.obj `if test -f 'mediaRepository.cpp'; then $(CYGPATH_W) 'mediaRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaRepository.cpp'; fi`
-
-oggTranscode-fileRepository.o: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-fileRepository.o -MD -MP -MF $(DEPDIR)/oggTranscode-fileRepository.Tpo -c -o oggTranscode-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-fileRepository.Tpo $(DEPDIR)/oggTranscode-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggTranscode-fileRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-fileRepository.o `test -f 'fileRepository.cpp' || echo '$(srcdir)/'`fileRepository.cpp
-
-oggTranscode-fileRepository.obj: fileRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-fileRepository.obj -MD -MP -MF $(DEPDIR)/oggTranscode-fileRepository.Tpo -c -o oggTranscode-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-fileRepository.Tpo $(DEPDIR)/oggTranscode-fileRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='fileRepository.cpp' object='oggTranscode-fileRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-fileRepository.obj `if test -f 'fileRepository.cpp'; then $(CYGPATH_W) 'fileRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/fileRepository.cpp'; fi`
-
-oggTranscode-rawMediaPacket.o: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-rawMediaPacket.o -MD -MP -MF $(DEPDIR)/oggTranscode-rawMediaPacket.Tpo -c -o oggTranscode-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-rawMediaPacket.Tpo $(DEPDIR)/oggTranscode-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggTranscode-rawMediaPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-rawMediaPacket.o `test -f 'rawMediaPacket.cpp' || echo '$(srcdir)/'`rawMediaPacket.cpp
-
-oggTranscode-rawMediaPacket.obj: rawMediaPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-rawMediaPacket.obj -MD -MP -MF $(DEPDIR)/oggTranscode-rawMediaPacket.Tpo -c -o oggTranscode-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-rawMediaPacket.Tpo $(DEPDIR)/oggTranscode-rawMediaPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rawMediaPacket.cpp' object='oggTranscode-rawMediaPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-rawMediaPacket.obj `if test -f 'rawMediaPacket.cpp'; then $(CYGPATH_W) 'rawMediaPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/rawMediaPacket.cpp'; fi`
-
-oggTranscode-mediaDecoder.o: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaDecoder.Tpo -c -o oggTranscode-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaDecoder.Tpo $(DEPDIR)/oggTranscode-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggTranscode-mediaDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaDecoder.o `test -f 'mediaDecoder.cpp' || echo '$(srcdir)/'`mediaDecoder.cpp
-
-oggTranscode-mediaDecoder.obj: mediaDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaDecoder.Tpo -c -o oggTranscode-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaDecoder.Tpo $(DEPDIR)/oggTranscode-mediaDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaDecoder.cpp' object='oggTranscode-mediaDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaDecoder.obj `if test -f 'mediaDecoder.cpp'; then $(CYGPATH_W) 'mediaDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaDecoder.cpp'; fi`
-
-oggTranscode-mediaEncoder.o: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaEncoder.Tpo -c -o oggTranscode-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaEncoder.Tpo $(DEPDIR)/oggTranscode-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggTranscode-mediaEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaEncoder.o `test -f 'mediaEncoder.cpp' || echo '$(srcdir)/'`mediaEncoder.cpp
-
-oggTranscode-mediaEncoder.obj: mediaEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaEncoder.Tpo -c -o oggTranscode-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaEncoder.Tpo $(DEPDIR)/oggTranscode-mediaEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaEncoder.cpp' object='oggTranscode-mediaEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaEncoder.obj `if test -f 'mediaEncoder.cpp'; then $(CYGPATH_W) 'mediaEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaEncoder.cpp'; fi`
-
-oggTranscode-mediaConverter.o: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaConverter.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaConverter.Tpo -c -o oggTranscode-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaConverter.Tpo $(DEPDIR)/oggTranscode-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggTranscode-mediaConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaConverter.o `test -f 'mediaConverter.cpp' || echo '$(srcdir)/'`mediaConverter.cpp
-
-oggTranscode-mediaConverter.obj: mediaConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaConverter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaConverter.Tpo -c -o oggTranscode-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaConverter.Tpo $(DEPDIR)/oggTranscode-mediaConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaConverter.cpp' object='oggTranscode-mediaConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaConverter.obj `if test -f 'mediaConverter.cpp'; then $(CYGPATH_W) 'mediaConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaConverter.cpp'; fi`
-
-oggTranscode-oggDecoder.o: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggDecoder.Tpo -c -o oggTranscode-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggDecoder.Tpo $(DEPDIR)/oggTranscode-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggTranscode-oggDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggDecoder.o `test -f 'oggDecoder.cpp' || echo '$(srcdir)/'`oggDecoder.cpp
-
-oggTranscode-oggDecoder.obj: oggDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggDecoder.Tpo -c -o oggTranscode-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggDecoder.Tpo $(DEPDIR)/oggTranscode-oggDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggDecoder.cpp' object='oggTranscode-oggDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggDecoder.obj `if test -f 'oggDecoder.cpp'; then $(CYGPATH_W) 'oggDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggDecoder.cpp'; fi`
-
-oggTranscode-oggStreamDecoder.o: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggStreamDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggStreamDecoder.Tpo -c -o oggTranscode-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggStreamDecoder.Tpo $(DEPDIR)/oggTranscode-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggTranscode-oggStreamDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggStreamDecoder.o `test -f 'oggStreamDecoder.cpp' || echo '$(srcdir)/'`oggStreamDecoder.cpp
-
-oggTranscode-oggStreamDecoder.obj: oggStreamDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggStreamDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggStreamDecoder.Tpo -c -o oggTranscode-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggStreamDecoder.Tpo $(DEPDIR)/oggTranscode-oggStreamDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamDecoder.cpp' object='oggTranscode-oggStreamDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggStreamDecoder.obj `if test -f 'oggStreamDecoder.cpp'; then $(CYGPATH_W) 'oggStreamDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamDecoder.cpp'; fi`
-
-oggTranscode-oggPage.o: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggPage.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggPage.Tpo -c -o oggTranscode-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggPage.Tpo $(DEPDIR)/oggTranscode-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggTranscode-oggPage.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggPage.o `test -f 'oggPage.cpp' || echo '$(srcdir)/'`oggPage.cpp
-
-oggTranscode-oggPage.obj: oggPage.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggPage.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggPage.Tpo -c -o oggTranscode-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggPage.Tpo $(DEPDIR)/oggTranscode-oggPage.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPage.cpp' object='oggTranscode-oggPage.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggPage.obj `if test -f 'oggPage.cpp'; then $(CYGPATH_W) 'oggPage.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPage.cpp'; fi`
-
-oggTranscode-oggPacket.o: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggPacket.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggPacket.Tpo -c -o oggTranscode-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggPacket.Tpo $(DEPDIR)/oggTranscode-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggTranscode-oggPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggPacket.o `test -f 'oggPacket.cpp' || echo '$(srcdir)/'`oggPacket.cpp
-
-oggTranscode-oggPacket.obj: oggPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggPacket.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggPacket.Tpo -c -o oggTranscode-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggPacket.Tpo $(DEPDIR)/oggTranscode-oggPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggPacket.cpp' object='oggTranscode-oggPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggPacket.obj `if test -f 'oggPacket.cpp'; then $(CYGPATH_W) 'oggPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/oggPacket.cpp'; fi`
-
-oggTranscode-ringbuffer.o: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-ringbuffer.o -MD -MP -MF $(DEPDIR)/oggTranscode-ringbuffer.Tpo -c -o oggTranscode-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-ringbuffer.Tpo $(DEPDIR)/oggTranscode-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggTranscode-ringbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-ringbuffer.o `test -f 'ringbuffer.cpp' || echo '$(srcdir)/'`ringbuffer.cpp
-
-oggTranscode-ringbuffer.obj: ringbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-ringbuffer.obj -MD -MP -MF $(DEPDIR)/oggTranscode-ringbuffer.Tpo -c -o oggTranscode-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-ringbuffer.Tpo $(DEPDIR)/oggTranscode-ringbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='ringbuffer.cpp' object='oggTranscode-ringbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-ringbuffer.obj `if test -f 'ringbuffer.cpp'; then $(CYGPATH_W) 'ringbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/ringbuffer.cpp'; fi`
-
-oggTranscode-oggRingbuffer.o: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggRingbuffer.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggRingbuffer.Tpo -c -o oggTranscode-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggRingbuffer.Tpo $(DEPDIR)/oggTranscode-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggTranscode-oggRingbuffer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggRingbuffer.o `test -f 'oggRingbuffer.cpp' || echo '$(srcdir)/'`oggRingbuffer.cpp
-
-oggTranscode-oggRingbuffer.obj: oggRingbuffer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggRingbuffer.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggRingbuffer.Tpo -c -o oggTranscode-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggRingbuffer.Tpo $(DEPDIR)/oggTranscode-oggRingbuffer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggRingbuffer.cpp' object='oggTranscode-oggRingbuffer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggRingbuffer.obj `if test -f 'oggRingbuffer.cpp'; then $(CYGPATH_W) 'oggRingbuffer.cpp'; else $(CYGPATH_W) '$(srcdir)/oggRingbuffer.cpp'; fi`
-
-oggTranscode-crc.o: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-crc.o -MD -MP -MF $(DEPDIR)/oggTranscode-crc.Tpo -c -o oggTranscode-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-crc.Tpo $(DEPDIR)/oggTranscode-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggTranscode-crc.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-crc.o `test -f 'crc.cpp' || echo '$(srcdir)/'`crc.cpp
-
-oggTranscode-crc.obj: crc.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-crc.obj -MD -MP -MF $(DEPDIR)/oggTranscode-crc.Tpo -c -o oggTranscode-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-crc.Tpo $(DEPDIR)/oggTranscode-crc.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crc.cpp' object='oggTranscode-crc.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-crc.obj `if test -f 'crc.cpp'; then $(CYGPATH_W) 'crc.cpp'; else $(CYGPATH_W) '$(srcdir)/crc.cpp'; fi`
-
-oggTranscode-granulePosInterpreter.o: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-granulePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggTranscode-granulePosInterpreter.Tpo -c -o oggTranscode-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-granulePosInterpreter.Tpo $(DEPDIR)/oggTranscode-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggTranscode-granulePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-granulePosInterpreter.o `test -f 'granulePosInterpreter.cpp' || echo '$(srcdir)/'`granulePosInterpreter.cpp
-
-oggTranscode-granulePosInterpreter.obj: granulePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-granulePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-granulePosInterpreter.Tpo -c -o oggTranscode-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-granulePosInterpreter.Tpo $(DEPDIR)/oggTranscode-granulePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='granulePosInterpreter.cpp' object='oggTranscode-granulePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-granulePosInterpreter.obj `if test -f 'granulePosInterpreter.cpp'; then $(CYGPATH_W) 'granulePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/granulePosInterpreter.cpp'; fi`
-
-oggTranscode-mediaOutputDecoder.o: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaOutputDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaOutputDecoder.Tpo -c -o oggTranscode-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaOutputDecoder.Tpo $(DEPDIR)/oggTranscode-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggTranscode-mediaOutputDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaOutputDecoder.o `test -f 'mediaOutputDecoder.cpp' || echo '$(srcdir)/'`mediaOutputDecoder.cpp
-
-oggTranscode-mediaOutputDecoder.obj: mediaOutputDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaOutputDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaOutputDecoder.Tpo -c -o oggTranscode-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaOutputDecoder.Tpo $(DEPDIR)/oggTranscode-mediaOutputDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaOutputDecoder.cpp' object='oggTranscode-mediaOutputDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaOutputDecoder.obj `if test -f 'mediaOutputDecoder.cpp'; then $(CYGPATH_W) 'mediaOutputDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaOutputDecoder.cpp'; fi`
-
-oggTranscode-mediaInputEncoder.o: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaInputEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-mediaInputEncoder.Tpo -c -o oggTranscode-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaInputEncoder.Tpo $(DEPDIR)/oggTranscode-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggTranscode-mediaInputEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaInputEncoder.o `test -f 'mediaInputEncoder.cpp' || echo '$(srcdir)/'`mediaInputEncoder.cpp
-
-oggTranscode-mediaInputEncoder.obj: mediaInputEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-mediaInputEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-mediaInputEncoder.Tpo -c -o oggTranscode-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-mediaInputEncoder.Tpo $(DEPDIR)/oggTranscode-mediaInputEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='mediaInputEncoder.cpp' object='oggTranscode-mediaInputEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-mediaInputEncoder.obj `if test -f 'mediaInputEncoder.cpp'; then $(CYGPATH_W) 'mediaInputEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/mediaInputEncoder.cpp'; fi`
-
-oggTranscode-streamSerializer.o: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamSerializer.o -MD -MP -MF $(DEPDIR)/oggTranscode-streamSerializer.Tpo -c -o oggTranscode-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamSerializer.Tpo $(DEPDIR)/oggTranscode-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggTranscode-streamSerializer.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamSerializer.o `test -f 'streamSerializer.cpp' || echo '$(srcdir)/'`streamSerializer.cpp
-
-oggTranscode-streamSerializer.obj: streamSerializer.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamSerializer.obj -MD -MP -MF $(DEPDIR)/oggTranscode-streamSerializer.Tpo -c -o oggTranscode-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamSerializer.Tpo $(DEPDIR)/oggTranscode-streamSerializer.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamSerializer.cpp' object='oggTranscode-streamSerializer.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamSerializer.obj `if test -f 'streamSerializer.cpp'; then $(CYGPATH_W) 'streamSerializer.cpp'; else $(CYGPATH_W) '$(srcdir)/streamSerializer.cpp'; fi`
-
-oggTranscode-oggBOSExtractorFactory.o: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggBOSExtractorFactory.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Tpo -c -o oggTranscode-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggTranscode-oggBOSExtractorFactory.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggBOSExtractorFactory.o `test -f 'oggBOSExtractorFactory.cpp' || echo '$(srcdir)/'`oggBOSExtractorFactory.cpp
-
-oggTranscode-oggBOSExtractorFactory.obj: oggBOSExtractorFactory.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggBOSExtractorFactory.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Tpo -c -o oggTranscode-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Tpo $(DEPDIR)/oggTranscode-oggBOSExtractorFactory.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggBOSExtractorFactory.cpp' object='oggTranscode-oggBOSExtractorFactory.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggBOSExtractorFactory.obj `if test -f 'oggBOSExtractorFactory.cpp'; then $(CYGPATH_W) 'oggBOSExtractorFactory.cpp'; else $(CYGPATH_W) '$(srcdir)/oggBOSExtractorFactory.cpp'; fi`
-
-oggTranscode-oggStreamEncoder.o: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggStreamEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggStreamEncoder.Tpo -c -o oggTranscode-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggStreamEncoder.Tpo $(DEPDIR)/oggTranscode-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggTranscode-oggStreamEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggStreamEncoder.o `test -f 'oggStreamEncoder.cpp' || echo '$(srcdir)/'`oggStreamEncoder.cpp
-
-oggTranscode-oggStreamEncoder.obj: oggStreamEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggStreamEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggStreamEncoder.Tpo -c -o oggTranscode-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggStreamEncoder.Tpo $(DEPDIR)/oggTranscode-oggStreamEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggStreamEncoder.cpp' object='oggTranscode-oggStreamEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggStreamEncoder.obj `if test -f 'oggStreamEncoder.cpp'; then $(CYGPATH_W) 'oggStreamEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggStreamEncoder.cpp'; fi`
-
-oggTranscode-oggEncoder.o: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggEncoder.Tpo -c -o oggTranscode-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggEncoder.Tpo $(DEPDIR)/oggTranscode-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggTranscode-oggEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggEncoder.o `test -f 'oggEncoder.cpp' || echo '$(srcdir)/'`oggEncoder.cpp
-
-oggTranscode-oggEncoder.obj: oggEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggEncoder.Tpo -c -o oggTranscode-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggEncoder.Tpo $(DEPDIR)/oggTranscode-oggEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggEncoder.cpp' object='oggTranscode-oggEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggEncoder.obj `if test -f 'oggEncoder.cpp'; then $(CYGPATH_W) 'oggEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/oggEncoder.cpp'; fi`
-
-oggTranscode-streamExtractor.o: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamExtractor.o -MD -MP -MF $(DEPDIR)/oggTranscode-streamExtractor.Tpo -c -o oggTranscode-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamExtractor.Tpo $(DEPDIR)/oggTranscode-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggTranscode-streamExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamExtractor.o `test -f 'streamExtractor.cpp' || echo '$(srcdir)/'`streamExtractor.cpp
-
-oggTranscode-streamExtractor.obj: streamExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamExtractor.obj -MD -MP -MF $(DEPDIR)/oggTranscode-streamExtractor.Tpo -c -o oggTranscode-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamExtractor.Tpo $(DEPDIR)/oggTranscode-streamExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamExtractor.cpp' object='oggTranscode-streamExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamExtractor.obj `if test -f 'streamExtractor.cpp'; then $(CYGPATH_W) 'streamExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/streamExtractor.cpp'; fi`
-
-oggTranscode-streamParameter.o: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamParameter.o -MD -MP -MF $(DEPDIR)/oggTranscode-streamParameter.Tpo -c -o oggTranscode-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamParameter.Tpo $(DEPDIR)/oggTranscode-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggTranscode-streamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamParameter.o `test -f 'streamParameter.cpp' || echo '$(srcdir)/'`streamParameter.cpp
-
-oggTranscode-streamParameter.obj: streamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamParameter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-streamParameter.Tpo -c -o oggTranscode-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamParameter.Tpo $(DEPDIR)/oggTranscode-streamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamParameter.cpp' object='oggTranscode-streamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamParameter.obj `if test -f 'streamParameter.cpp'; then $(CYGPATH_W) 'streamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/streamParameter.cpp'; fi`
-
-oggTranscode-streamMux.o: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamMux.o -MD -MP -MF $(DEPDIR)/oggTranscode-streamMux.Tpo -c -o oggTranscode-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamMux.Tpo $(DEPDIR)/oggTranscode-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggTranscode-streamMux.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamMux.o `test -f 'streamMux.cpp' || echo '$(srcdir)/'`streamMux.cpp
-
-oggTranscode-streamMux.obj: streamMux.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-streamMux.obj -MD -MP -MF $(DEPDIR)/oggTranscode-streamMux.Tpo -c -o oggTranscode-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-streamMux.Tpo $(DEPDIR)/oggTranscode-streamMux.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='streamMux.cpp' object='oggTranscode-streamMux.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-streamMux.obj `if test -f 'streamMux.cpp'; then $(CYGPATH_W) 'streamMux.cpp'; else $(CYGPATH_W) '$(srcdir)/streamMux.cpp'; fi`
-
-oggTranscode-bufferRepository.o: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-bufferRepository.o -MD -MP -MF $(DEPDIR)/oggTranscode-bufferRepository.Tpo -c -o oggTranscode-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-bufferRepository.Tpo $(DEPDIR)/oggTranscode-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggTranscode-bufferRepository.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-bufferRepository.o `test -f 'bufferRepository.cpp' || echo '$(srcdir)/'`bufferRepository.cpp
-
-oggTranscode-bufferRepository.obj: bufferRepository.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-bufferRepository.obj -MD -MP -MF $(DEPDIR)/oggTranscode-bufferRepository.Tpo -c -o oggTranscode-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-bufferRepository.Tpo $(DEPDIR)/oggTranscode-bufferRepository.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='bufferRepository.cpp' object='oggTranscode-bufferRepository.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-bufferRepository.obj `if test -f 'bufferRepository.cpp'; then $(CYGPATH_W) 'bufferRepository.cpp'; else $(CYGPATH_W) '$(srcdir)/bufferRepository.cpp'; fi`
-
-oggTranscode-oggComment.o: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggComment.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggComment.Tpo -c -o oggTranscode-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggComment.Tpo $(DEPDIR)/oggTranscode-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggTranscode-oggComment.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggComment.o `test -f 'oggComment.cpp' || echo '$(srcdir)/'`oggComment.cpp
-
-oggTranscode-oggComment.obj: oggComment.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggComment.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggComment.Tpo -c -o oggTranscode-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggComment.Tpo $(DEPDIR)/oggTranscode-oggComment.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggComment.cpp' object='oggTranscode-oggComment.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggComment.obj `if test -f 'oggComment.cpp'; then $(CYGPATH_W) 'oggComment.cpp'; else $(CYGPATH_W) '$(srcdir)/oggComment.cpp'; fi`
-
-oggTranscode-theoraPosInterpreter.o: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggTranscode-theoraPosInterpreter.Tpo -c -o oggTranscode-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraPosInterpreter.Tpo $(DEPDIR)/oggTranscode-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggTranscode-theoraPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraPosInterpreter.o `test -f 'theoraPosInterpreter.cpp' || echo '$(srcdir)/'`theoraPosInterpreter.cpp
-
-oggTranscode-theoraPosInterpreter.obj: theoraPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-theoraPosInterpreter.Tpo -c -o oggTranscode-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraPosInterpreter.Tpo $(DEPDIR)/oggTranscode-theoraPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraPosInterpreter.cpp' object='oggTranscode-theoraPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraPosInterpreter.obj `if test -f 'theoraPosInterpreter.cpp'; then $(CYGPATH_W) 'theoraPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraPosInterpreter.cpp'; fi`
-
-oggTranscode-theoraStreamParameter.o: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraStreamParameter.o -MD -MP -MF $(DEPDIR)/oggTranscode-theoraStreamParameter.Tpo -c -o oggTranscode-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraStreamParameter.Tpo $(DEPDIR)/oggTranscode-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggTranscode-theoraStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraStreamParameter.o `test -f 'theoraStreamParameter.cpp' || echo '$(srcdir)/'`theoraStreamParameter.cpp
-
-oggTranscode-theoraStreamParameter.obj: theoraStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-theoraStreamParameter.Tpo -c -o oggTranscode-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraStreamParameter.Tpo $(DEPDIR)/oggTranscode-theoraStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraStreamParameter.cpp' object='oggTranscode-theoraStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraStreamParameter.obj `if test -f 'theoraStreamParameter.cpp'; then $(CYGPATH_W) 'theoraStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraStreamParameter.cpp'; fi`
-
-oggTranscode-theoraExtractor.o: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraExtractor.o -MD -MP -MF $(DEPDIR)/oggTranscode-theoraExtractor.Tpo -c -o oggTranscode-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraExtractor.Tpo $(DEPDIR)/oggTranscode-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggTranscode-theoraExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraExtractor.o `test -f 'theoraExtractor.cpp' || echo '$(srcdir)/'`theoraExtractor.cpp
-
-oggTranscode-theoraExtractor.obj: theoraExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraExtractor.obj -MD -MP -MF $(DEPDIR)/oggTranscode-theoraExtractor.Tpo -c -o oggTranscode-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraExtractor.Tpo $(DEPDIR)/oggTranscode-theoraExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraExtractor.cpp' object='oggTranscode-theoraExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraExtractor.obj `if test -f 'theoraExtractor.cpp'; then $(CYGPATH_W) 'theoraExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraExtractor.cpp'; fi`
-
-oggTranscode-vorbisPosInterpreter.o: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisPosInterpreter.o -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Tpo -c -o oggTranscode-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Tpo $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggTranscode-vorbisPosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisPosInterpreter.o `test -f 'vorbisPosInterpreter.cpp' || echo '$(srcdir)/'`vorbisPosInterpreter.cpp
-
-oggTranscode-vorbisPosInterpreter.obj: vorbisPosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisPosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Tpo -c -o oggTranscode-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Tpo $(DEPDIR)/oggTranscode-vorbisPosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisPosInterpreter.cpp' object='oggTranscode-vorbisPosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisPosInterpreter.obj `if test -f 'vorbisPosInterpreter.cpp'; then $(CYGPATH_W) 'vorbisPosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisPosInterpreter.cpp'; fi`
-
-oggTranscode-vorbisStreamParameter.o: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisStreamParameter.o -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisStreamParameter.Tpo -c -o oggTranscode-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisStreamParameter.Tpo $(DEPDIR)/oggTranscode-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggTranscode-vorbisStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisStreamParameter.o `test -f 'vorbisStreamParameter.cpp' || echo '$(srcdir)/'`vorbisStreamParameter.cpp
-
-oggTranscode-vorbisStreamParameter.obj: vorbisStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisStreamParameter.Tpo -c -o oggTranscode-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisStreamParameter.Tpo $(DEPDIR)/oggTranscode-vorbisStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisStreamParameter.cpp' object='oggTranscode-vorbisStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisStreamParameter.obj `if test -f 'vorbisStreamParameter.cpp'; then $(CYGPATH_W) 'vorbisStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisStreamParameter.cpp'; fi`
-
-oggTranscode-vorbisExtractor.o: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisExtractor.o -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisExtractor.Tpo -c -o oggTranscode-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisExtractor.Tpo $(DEPDIR)/oggTranscode-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggTranscode-vorbisExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisExtractor.o `test -f 'vorbisExtractor.cpp' || echo '$(srcdir)/'`vorbisExtractor.cpp
-
-oggTranscode-vorbisExtractor.obj: vorbisExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisExtractor.obj -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisExtractor.Tpo -c -o oggTranscode-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisExtractor.Tpo $(DEPDIR)/oggTranscode-vorbisExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisExtractor.cpp' object='oggTranscode-vorbisExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisExtractor.obj `if test -f 'vorbisExtractor.cpp'; then $(CYGPATH_W) 'vorbisExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisExtractor.cpp'; fi`
-
-oggTranscode-katePosInterpreter.o: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-katePosInterpreter.o -MD -MP -MF $(DEPDIR)/oggTranscode-katePosInterpreter.Tpo -c -o oggTranscode-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-katePosInterpreter.Tpo $(DEPDIR)/oggTranscode-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggTranscode-katePosInterpreter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-katePosInterpreter.o `test -f 'katePosInterpreter.cpp' || echo '$(srcdir)/'`katePosInterpreter.cpp
-
-oggTranscode-katePosInterpreter.obj: katePosInterpreter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-katePosInterpreter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-katePosInterpreter.Tpo -c -o oggTranscode-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-katePosInterpreter.Tpo $(DEPDIR)/oggTranscode-katePosInterpreter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='katePosInterpreter.cpp' object='oggTranscode-katePosInterpreter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-katePosInterpreter.obj `if test -f 'katePosInterpreter.cpp'; then $(CYGPATH_W) 'katePosInterpreter.cpp'; else $(CYGPATH_W) '$(srcdir)/katePosInterpreter.cpp'; fi`
-
-oggTranscode-kateStreamParameter.o: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kateStreamParameter.o -MD -MP -MF $(DEPDIR)/oggTranscode-kateStreamParameter.Tpo -c -o oggTranscode-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kateStreamParameter.Tpo $(DEPDIR)/oggTranscode-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggTranscode-kateStreamParameter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kateStreamParameter.o `test -f 'kateStreamParameter.cpp' || echo '$(srcdir)/'`kateStreamParameter.cpp
-
-oggTranscode-kateStreamParameter.obj: kateStreamParameter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kateStreamParameter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-kateStreamParameter.Tpo -c -o oggTranscode-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kateStreamParameter.Tpo $(DEPDIR)/oggTranscode-kateStreamParameter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateStreamParameter.cpp' object='oggTranscode-kateStreamParameter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kateStreamParameter.obj `if test -f 'kateStreamParameter.cpp'; then $(CYGPATH_W) 'kateStreamParameter.cpp'; else $(CYGPATH_W) '$(srcdir)/kateStreamParameter.cpp'; fi`
-
-oggTranscode-kateExtractor.o: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kateExtractor.o -MD -MP -MF $(DEPDIR)/oggTranscode-kateExtractor.Tpo -c -o oggTranscode-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kateExtractor.Tpo $(DEPDIR)/oggTranscode-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggTranscode-kateExtractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kateExtractor.o `test -f 'kateExtractor.cpp' || echo '$(srcdir)/'`kateExtractor.cpp
-
-oggTranscode-kateExtractor.obj: kateExtractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kateExtractor.obj -MD -MP -MF $(DEPDIR)/oggTranscode-kateExtractor.Tpo -c -o oggTranscode-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kateExtractor.Tpo $(DEPDIR)/oggTranscode-kateExtractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kateExtractor.cpp' object='oggTranscode-kateExtractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kateExtractor.obj `if test -f 'kateExtractor.cpp'; then $(CYGPATH_W) 'kateExtractor.cpp'; else $(CYGPATH_W) '$(srcdir)/kateExtractor.cpp'; fi`
-
-oggTranscode-theoraDecoder.o: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-theoraDecoder.Tpo -c -o oggTranscode-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraDecoder.Tpo $(DEPDIR)/oggTranscode-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggTranscode-theoraDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraDecoder.o `test -f 'theoraDecoder.cpp' || echo '$(srcdir)/'`theoraDecoder.cpp
-
-oggTranscode-theoraDecoder.obj: theoraDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-theoraDecoder.Tpo -c -o oggTranscode-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraDecoder.Tpo $(DEPDIR)/oggTranscode-theoraDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraDecoder.cpp' object='oggTranscode-theoraDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraDecoder.obj `if test -f 'theoraDecoder.cpp'; then $(CYGPATH_W) 'theoraDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraDecoder.cpp'; fi`
-
-oggTranscode-theoraEncoder.o: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-theoraEncoder.Tpo -c -o oggTranscode-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraEncoder.Tpo $(DEPDIR)/oggTranscode-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggTranscode-theoraEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraEncoder.o `test -f 'theoraEncoder.cpp' || echo '$(srcdir)/'`theoraEncoder.cpp
-
-oggTranscode-theoraEncoder.obj: theoraEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-theoraEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-theoraEncoder.Tpo -c -o oggTranscode-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-theoraEncoder.Tpo $(DEPDIR)/oggTranscode-theoraEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='theoraEncoder.cpp' object='oggTranscode-theoraEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-theoraEncoder.obj `if test -f 'theoraEncoder.cpp'; then $(CYGPATH_W) 'theoraEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/theoraEncoder.cpp'; fi`
-
-oggTranscode-vorbisDecoder.o: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisDecoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisDecoder.Tpo -c -o oggTranscode-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisDecoder.Tpo $(DEPDIR)/oggTranscode-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggTranscode-vorbisDecoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisDecoder.o `test -f 'vorbisDecoder.cpp' || echo '$(srcdir)/'`vorbisDecoder.cpp
-
-oggTranscode-vorbisDecoder.obj: vorbisDecoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisDecoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisDecoder.Tpo -c -o oggTranscode-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisDecoder.Tpo $(DEPDIR)/oggTranscode-vorbisDecoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisDecoder.cpp' object='oggTranscode-vorbisDecoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisDecoder.obj `if test -f 'vorbisDecoder.cpp'; then $(CYGPATH_W) 'vorbisDecoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisDecoder.cpp'; fi`
-
-oggTranscode-vorbisEncoder.o: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisEncoder.o -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisEncoder.Tpo -c -o oggTranscode-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisEncoder.Tpo $(DEPDIR)/oggTranscode-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggTranscode-vorbisEncoder.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisEncoder.o `test -f 'vorbisEncoder.cpp' || echo '$(srcdir)/'`vorbisEncoder.cpp
-
-oggTranscode-vorbisEncoder.obj: vorbisEncoder.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-vorbisEncoder.obj -MD -MP -MF $(DEPDIR)/oggTranscode-vorbisEncoder.Tpo -c -o oggTranscode-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-vorbisEncoder.Tpo $(DEPDIR)/oggTranscode-vorbisEncoder.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='vorbisEncoder.cpp' object='oggTranscode-vorbisEncoder.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-vorbisEncoder.obj `if test -f 'vorbisEncoder.cpp'; then $(CYGPATH_W) 'vorbisEncoder.cpp'; else $(CYGPATH_W) '$(srcdir)/vorbisEncoder.cpp'; fi`
-
-oggTranscode-audioPacket.o: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioPacket.o -MD -MP -MF $(DEPDIR)/oggTranscode-audioPacket.Tpo -c -o oggTranscode-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioPacket.Tpo $(DEPDIR)/oggTranscode-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggTranscode-audioPacket.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioPacket.o `test -f 'audioPacket.cpp' || echo '$(srcdir)/'`audioPacket.cpp
-
-oggTranscode-audioPacket.obj: audioPacket.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioPacket.obj -MD -MP -MF $(DEPDIR)/oggTranscode-audioPacket.Tpo -c -o oggTranscode-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioPacket.Tpo $(DEPDIR)/oggTranscode-audioPacket.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioPacket.cpp' object='oggTranscode-audioPacket.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioPacket.obj `if test -f 'audioPacket.cpp'; then $(CYGPATH_W) 'audioPacket.cpp'; else $(CYGPATH_W) '$(srcdir)/audioPacket.cpp'; fi`
-
-oggTranscode-audioConverter.o: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioConverter.o -MD -MP -MF $(DEPDIR)/oggTranscode-audioConverter.Tpo -c -o oggTranscode-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioConverter.Tpo $(DEPDIR)/oggTranscode-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggTranscode-audioConverter.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioConverter.o `test -f 'audioConverter.cpp' || echo '$(srcdir)/'`audioConverter.cpp
-
-oggTranscode-audioConverter.obj: audioConverter.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioConverter.obj -MD -MP -MF $(DEPDIR)/oggTranscode-audioConverter.Tpo -c -o oggTranscode-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioConverter.Tpo $(DEPDIR)/oggTranscode-audioConverter.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioConverter.cpp' object='oggTranscode-audioConverter.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioConverter.obj `if test -f 'audioConverter.cpp'; then $(CYGPATH_W) 'audioConverter.cpp'; else $(CYGPATH_W) '$(srcdir)/audioConverter.cpp'; fi`
-
-oggTranscode-cmdlineextractor.o: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-cmdlineextractor.o -MD -MP -MF $(DEPDIR)/oggTranscode-cmdlineextractor.Tpo -c -o oggTranscode-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-cmdlineextractor.Tpo $(DEPDIR)/oggTranscode-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggTranscode-cmdlineextractor.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-cmdlineextractor.o `test -f 'cmdlineextractor.cpp' || echo '$(srcdir)/'`cmdlineextractor.cpp
-
-oggTranscode-cmdlineextractor.obj: cmdlineextractor.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-cmdlineextractor.obj -MD -MP -MF $(DEPDIR)/oggTranscode-cmdlineextractor.Tpo -c -o oggTranscode-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-cmdlineextractor.Tpo $(DEPDIR)/oggTranscode-cmdlineextractor.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='cmdlineextractor.cpp' object='oggTranscode-cmdlineextractor.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-cmdlineextractor.obj `if test -f 'cmdlineextractor.cpp'; then $(CYGPATH_W) 'cmdlineextractor.cpp'; else $(CYGPATH_W) '$(srcdir)/cmdlineextractor.cpp'; fi`
-
-oggTranscode-basePlane.o: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-basePlane.o -MD -MP -MF $(DEPDIR)/oggTranscode-basePlane.Tpo -c -o oggTranscode-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-basePlane.Tpo $(DEPDIR)/oggTranscode-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggTranscode-basePlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-basePlane.o `test -f 'basePlane.cpp' || echo '$(srcdir)/'`basePlane.cpp
-
-oggTranscode-basePlane.obj: basePlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-basePlane.obj -MD -MP -MF $(DEPDIR)/oggTranscode-basePlane.Tpo -c -o oggTranscode-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-basePlane.Tpo $(DEPDIR)/oggTranscode-basePlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='basePlane.cpp' object='oggTranscode-basePlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-basePlane.obj `if test -f 'basePlane.cpp'; then $(CYGPATH_W) 'basePlane.cpp'; else $(CYGPATH_W) '$(srcdir)/basePlane.cpp'; fi`
-
-oggTranscode-rgbPlane.o: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-rgbPlane.o -MD -MP -MF $(DEPDIR)/oggTranscode-rgbPlane.Tpo -c -o oggTranscode-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-rgbPlane.Tpo $(DEPDIR)/oggTranscode-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggTranscode-rgbPlane.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-rgbPlane.o `test -f 'rgbPlane.cpp' || echo '$(srcdir)/'`rgbPlane.cpp
-
-oggTranscode-rgbPlane.obj: rgbPlane.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-rgbPlane.obj -MD -MP -MF $(DEPDIR)/oggTranscode-rgbPlane.Tpo -c -o oggTranscode-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-rgbPlane.Tpo $(DEPDIR)/oggTranscode-rgbPlane.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='rgbPlane.cpp' object='oggTranscode-rgbPlane.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-rgbPlane.obj `if test -f 'rgbPlane.cpp'; then $(CYGPATH_W) 'rgbPlane.cpp'; else $(CYGPATH_W) '$(srcdir)/rgbPlane.cpp'; fi`
-
-oggTranscode-blendElement.o: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-blendElement.o -MD -MP -MF $(DEPDIR)/oggTranscode-blendElement.Tpo -c -o oggTranscode-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-blendElement.Tpo $(DEPDIR)/oggTranscode-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggTranscode-blendElement.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-blendElement.o `test -f 'blendElement.cpp' || echo '$(srcdir)/'`blendElement.cpp
-
-oggTranscode-blendElement.obj: blendElement.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-blendElement.obj -MD -MP -MF $(DEPDIR)/oggTranscode-blendElement.Tpo -c -o oggTranscode-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-blendElement.Tpo $(DEPDIR)/oggTranscode-blendElement.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='blendElement.cpp' object='oggTranscode-blendElement.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-blendElement.obj `if test -f 'blendElement.cpp'; then $(CYGPATH_W) 'blendElement.cpp'; else $(CYGPATH_W) '$(srcdir)/blendElement.cpp'; fi`
-
-oggTranscode-effector.o: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-effector.o -MD -MP -MF $(DEPDIR)/oggTranscode-effector.Tpo -c -o oggTranscode-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-effector.Tpo $(DEPDIR)/oggTranscode-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggTranscode-effector.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-effector.o `test -f 'effector.cpp' || echo '$(srcdir)/'`effector.cpp
-
-oggTranscode-effector.obj: effector.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-effector.obj -MD -MP -MF $(DEPDIR)/oggTranscode-effector.Tpo -c -o oggTranscode-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-effector.Tpo $(DEPDIR)/oggTranscode-effector.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='effector.cpp' object='oggTranscode-effector.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-effector.obj `if test -f 'effector.cpp'; then $(CYGPATH_W) 'effector.cpp'; else $(CYGPATH_W) '$(srcdir)/effector.cpp'; fi`
-
-oggTranscode-crossfader.o: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-crossfader.o -MD -MP -MF $(DEPDIR)/oggTranscode-crossfader.Tpo -c -o oggTranscode-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-crossfader.Tpo $(DEPDIR)/oggTranscode-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggTranscode-crossfader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-crossfader.o `test -f 'crossfader.cpp' || echo '$(srcdir)/'`crossfader.cpp
-
-oggTranscode-crossfader.obj: crossfader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-crossfader.obj -MD -MP -MF $(DEPDIR)/oggTranscode-crossfader.Tpo -c -o oggTranscode-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-crossfader.Tpo $(DEPDIR)/oggTranscode-crossfader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='crossfader.cpp' object='oggTranscode-crossfader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-crossfader.obj `if test -f 'crossfader.cpp'; then $(CYGPATH_W) 'crossfader.cpp'; else $(CYGPATH_W) '$(srcdir)/crossfader.cpp'; fi`
-
-oggTranscode-plainPicture.o: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-plainPicture.o -MD -MP -MF $(DEPDIR)/oggTranscode-plainPicture.Tpo -c -o oggTranscode-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-plainPicture.Tpo $(DEPDIR)/oggTranscode-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggTranscode-plainPicture.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-plainPicture.o `test -f 'plainPicture.cpp' || echo '$(srcdir)/'`plainPicture.cpp
-
-oggTranscode-plainPicture.obj: plainPicture.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-plainPicture.obj -MD -MP -MF $(DEPDIR)/oggTranscode-plainPicture.Tpo -c -o oggTranscode-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-plainPicture.Tpo $(DEPDIR)/oggTranscode-plainPicture.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='plainPicture.cpp' object='oggTranscode-plainPicture.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-plainPicture.obj `if test -f 'plainPicture.cpp'; then $(CYGPATH_W) 'plainPicture.cpp'; else $(CYGPATH_W) '$(srcdir)/plainPicture.cpp'; fi`
-
-oggTranscode-lowpassEffect.o: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-lowpassEffect.o -MD -MP -MF $(DEPDIR)/oggTranscode-lowpassEffect.Tpo -c -o oggTranscode-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-lowpassEffect.Tpo $(DEPDIR)/oggTranscode-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggTranscode-lowpassEffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-lowpassEffect.o `test -f 'lowpassEffect.cpp' || echo '$(srcdir)/'`lowpassEffect.cpp
-
-oggTranscode-lowpassEffect.obj: lowpassEffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-lowpassEffect.obj -MD -MP -MF $(DEPDIR)/oggTranscode-lowpassEffect.Tpo -c -o oggTranscode-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-lowpassEffect.Tpo $(DEPDIR)/oggTranscode-lowpassEffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='lowpassEffect.cpp' object='oggTranscode-lowpassEffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-lowpassEffect.obj `if test -f 'lowpassEffect.cpp'; then $(CYGPATH_W) 'lowpassEffect.cpp'; else $(CYGPATH_W) '$(srcdir)/lowpassEffect.cpp'; fi`
-
-oggTranscode-kenburnseffect.o: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kenburnseffect.o -MD -MP -MF $(DEPDIR)/oggTranscode-kenburnseffect.Tpo -c -o oggTranscode-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kenburnseffect.Tpo $(DEPDIR)/oggTranscode-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggTranscode-kenburnseffect.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kenburnseffect.o `test -f 'kenburnseffect.cpp' || echo '$(srcdir)/'`kenburnseffect.cpp
-
-oggTranscode-kenburnseffect.obj: kenburnseffect.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-kenburnseffect.obj -MD -MP -MF $(DEPDIR)/oggTranscode-kenburnseffect.Tpo -c -o oggTranscode-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-kenburnseffect.Tpo $(DEPDIR)/oggTranscode-kenburnseffect.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='kenburnseffect.cpp' object='oggTranscode-kenburnseffect.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-kenburnseffect.obj `if test -f 'kenburnseffect.cpp'; then $(CYGPATH_W) 'kenburnseffect.cpp'; else $(CYGPATH_W) '$(srcdir)/kenburnseffect.cpp'; fi`
-
-oggTranscode-pictureResize.o: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureResize.o -MD -MP -MF $(DEPDIR)/oggTranscode-pictureResize.Tpo -c -o oggTranscode-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureResize.Tpo $(DEPDIR)/oggTranscode-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggTranscode-pictureResize.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureResize.o `test -f 'pictureResize.cpp' || echo '$(srcdir)/'`pictureResize.cpp
-
-oggTranscode-pictureResize.obj: pictureResize.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureResize.obj -MD -MP -MF $(DEPDIR)/oggTranscode-pictureResize.Tpo -c -o oggTranscode-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureResize.Tpo $(DEPDIR)/oggTranscode-pictureResize.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureResize.cpp' object='oggTranscode-pictureResize.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureResize.obj `if test -f 'pictureResize.cpp'; then $(CYGPATH_W) 'pictureResize.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureResize.cpp'; fi`
-
-oggTranscode-pictureBlend.o: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureBlend.o -MD -MP -MF $(DEPDIR)/oggTranscode-pictureBlend.Tpo -c -o oggTranscode-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureBlend.Tpo $(DEPDIR)/oggTranscode-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggTranscode-pictureBlend.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureBlend.o `test -f 'pictureBlend.cpp' || echo '$(srcdir)/'`pictureBlend.cpp
-
-oggTranscode-pictureBlend.obj: pictureBlend.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureBlend.obj -MD -MP -MF $(DEPDIR)/oggTranscode-pictureBlend.Tpo -c -o oggTranscode-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureBlend.Tpo $(DEPDIR)/oggTranscode-pictureBlend.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureBlend.cpp' object='oggTranscode-pictureBlend.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureBlend.obj `if test -f 'pictureBlend.cpp'; then $(CYGPATH_W) 'pictureBlend.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureBlend.cpp'; fi`
-
-oggTranscode-pictureLoader.o: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureLoader.o -MD -MP -MF $(DEPDIR)/oggTranscode-pictureLoader.Tpo -c -o oggTranscode-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureLoader.Tpo $(DEPDIR)/oggTranscode-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggTranscode-pictureLoader.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureLoader.o `test -f 'pictureLoader.cpp' || echo '$(srcdir)/'`pictureLoader.cpp
-
-oggTranscode-pictureLoader.obj: pictureLoader.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-pictureLoader.obj -MD -MP -MF $(DEPDIR)/oggTranscode-pictureLoader.Tpo -c -o oggTranscode-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-pictureLoader.Tpo $(DEPDIR)/oggTranscode-pictureLoader.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='pictureLoader.cpp' object='oggTranscode-pictureLoader.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-pictureLoader.obj `if test -f 'pictureLoader.cpp'; then $(CYGPATH_W) 'pictureLoader.cpp'; else $(CYGPATH_W) '$(srcdir)/pictureLoader.cpp'; fi`
-
-oggTranscode-hookHandler.o: hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-hookHandler.o -MD -MP -MF $(DEPDIR)/oggTranscode-hookHandler.Tpo -c -o oggTranscode-hookHandler.o `test -f 'hookHandler.cpp' || echo '$(srcdir)/'`hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-hookHandler.Tpo $(DEPDIR)/oggTranscode-hookHandler.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='hookHandler.cpp' object='oggTranscode-hookHandler.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-hookHandler.o `test -f 'hookHandler.cpp' || echo '$(srcdir)/'`hookHandler.cpp
-
-oggTranscode-hookHandler.obj: hookHandler.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-hookHandler.obj -MD -MP -MF $(DEPDIR)/oggTranscode-hookHandler.Tpo -c -o oggTranscode-hookHandler.obj `if test -f 'hookHandler.cpp'; then $(CYGPATH_W) 'hookHandler.cpp'; else $(CYGPATH_W) '$(srcdir)/hookHandler.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-hookHandler.Tpo $(DEPDIR)/oggTranscode-hookHandler.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='hookHandler.cpp' object='oggTranscode-hookHandler.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-hookHandler.obj `if test -f 'hookHandler.cpp'; then $(CYGPATH_W) 'hookHandler.cpp'; else $(CYGPATH_W) '$(srcdir)/hookHandler.cpp'; fi`
-
-oggTranscode-videoHook.o: videoHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-videoHook.o -MD -MP -MF $(DEPDIR)/oggTranscode-videoHook.Tpo -c -o oggTranscode-videoHook.o `test -f 'videoHook.cpp' || echo '$(srcdir)/'`videoHook.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-videoHook.Tpo $(DEPDIR)/oggTranscode-videoHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='videoHook.cpp' object='oggTranscode-videoHook.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-videoHook.o `test -f 'videoHook.cpp' || echo '$(srcdir)/'`videoHook.cpp
-
-oggTranscode-videoHook.obj: videoHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-videoHook.obj -MD -MP -MF $(DEPDIR)/oggTranscode-videoHook.Tpo -c -o oggTranscode-videoHook.obj `if test -f 'videoHook.cpp'; then $(CYGPATH_W) 'videoHook.cpp'; else $(CYGPATH_W) '$(srcdir)/videoHook.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-videoHook.Tpo $(DEPDIR)/oggTranscode-videoHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='videoHook.cpp' object='oggTranscode-videoHook.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-videoHook.obj `if test -f 'videoHook.cpp'; then $(CYGPATH_W) 'videoHook.cpp'; else $(CYGPATH_W) '$(srcdir)/videoHook.cpp'; fi`
-
-oggTranscode-audioHook.o: audioHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioHook.o -MD -MP -MF $(DEPDIR)/oggTranscode-audioHook.Tpo -c -o oggTranscode-audioHook.o `test -f 'audioHook.cpp' || echo '$(srcdir)/'`audioHook.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioHook.Tpo $(DEPDIR)/oggTranscode-audioHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioHook.cpp' object='oggTranscode-audioHook.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioHook.o `test -f 'audioHook.cpp' || echo '$(srcdir)/'`audioHook.cpp
-
-oggTranscode-audioHook.obj: audioHook.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-audioHook.obj -MD -MP -MF $(DEPDIR)/oggTranscode-audioHook.Tpo -c -o oggTranscode-audioHook.obj `if test -f 'audioHook.cpp'; then $(CYGPATH_W) 'audioHook.cpp'; else $(CYGPATH_W) '$(srcdir)/audioHook.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-audioHook.Tpo $(DEPDIR)/oggTranscode-audioHook.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='audioHook.cpp' object='oggTranscode-audioHook.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-audioHook.obj `if test -f 'audioHook.cpp'; then $(CYGPATH_W) 'audioHook.cpp'; else $(CYGPATH_W) '$(srcdir)/audioHook.cpp'; fi`
-
-oggTranscode-oggTranscode.o: oggTranscode.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggTranscode.o -MD -MP -MF $(DEPDIR)/oggTranscode-oggTranscode.Tpo -c -o oggTranscode-oggTranscode.o `test -f 'oggTranscode.cpp' || echo '$(srcdir)/'`oggTranscode.cpp
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggTranscode.Tpo $(DEPDIR)/oggTranscode-oggTranscode.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggTranscode.cpp' object='oggTranscode-oggTranscode.o' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggTranscode.o `test -f 'oggTranscode.cpp' || echo '$(srcdir)/'`oggTranscode.cpp
-
-oggTranscode-oggTranscode.obj: oggTranscode.cpp
- at am__fastdepCXX_TRUE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -MT oggTranscode-oggTranscode.obj -MD -MP -MF $(DEPDIR)/oggTranscode-oggTranscode.Tpo -c -o oggTranscode-oggTranscode.obj `if test -f 'oggTranscode.cpp'; then $(CYGPATH_W) 'oggTranscode.cpp'; else $(CYGPATH_W) '$(srcdir)/oggTranscode.cpp'; fi`
- at am__fastdepCXX_TRUE@	$(am__mv) $(DEPDIR)/oggTranscode-oggTranscode.Tpo $(DEPDIR)/oggTranscode-oggTranscode.Po
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	source='oggTranscode.cpp' object='oggTranscode-oggTranscode.obj' libtool=no @AMDEPBACKSLASH@
- at AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
- at am__fastdepCXX_FALSE@	$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(oggTranscode_CXXFLAGS) $(CXXFLAGS) -c -o oggTranscode-oggTranscode.obj `if test -f 'oggTranscode.cpp'; then $(CYGPATH_W) 'oggTranscode.cpp'; else $(CYGPATH_W) '$(srcdir)/oggTranscode.cpp'; fi`
-
-ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
-	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	mkid -fID $$unique
-tags: TAGS
-
-TAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-		$(TAGS_FILES) $(LISP)
-	set x; \
-	here=`pwd`; \
-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	shift; \
-	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
-	  test -n "$$unique" || unique=$$empty_fix; \
-	  if test $$# -gt 0; then \
-	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-	      "$$@" $$unique; \
-	  else \
-	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
-	      $$unique; \
-	  fi; \
-	fi
-ctags: CTAGS
-CTAGS:  $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
-		$(TAGS_FILES) $(LISP)
-	list='$(SOURCES) $(HEADERS)  $(LISP) $(TAGS_FILES)'; \
-	unique=`for i in $$list; do \
-	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
-	  done | \
-	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
-	      END { if (nonempty) { for (i in files) print i; }; }'`; \
-	test -z "$(CTAGS_ARGS)$$unique" \
-	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
-	     $$unique
-
-GTAGS:
-	here=`$(am__cd) $(top_builddir) && pwd` \
-	  && $(am__cd) $(top_srcdir) \
-	  && gtags -i $(GTAGS_ARGS) "$$here"
-
-distclean-tags:
-	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-
-distdir: $(DISTFILES)
-	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-	list='$(DISTFILES)'; \
-	  dist_files=`for file in $$list; do echo $$file; done | \
-	  sed -e "s|^$$srcdirstrip/||;t" \
-	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
-	case $$dist_files in \
-	  */*) $(MKDIR_P) `echo "$$dist_files" | \
-			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
-			   sort -u` ;; \
-	esac; \
-	for file in $$dist_files; do \
-	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
-	  if test -d $$d/$$file; then \
-	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
-	    if test -d "$(distdir)/$$file"; then \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
-	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
-	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
-	    fi; \
-	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
-	  else \
-	    test -f "$(distdir)/$$file" \
-	    || cp -p $$d/$$file "$(distdir)/$$file" \
-	    || exit 1; \
-	  fi; \
-	done
-check-am: all-am
-check: check-am
-all-am: makefile $(PROGRAMS)
-installdirs:
-	for dir in "$(DESTDIR)$(bindir)"; do \
-	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
-	done
-install: install-am
-install-exec: install-exec-am
-install-data: install-data-am
-uninstall: uninstall-am
-
-install-am: all-am
-	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
-
-installcheck: installcheck-am
-install-strip:
-	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
-	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
-	  `test -z '$(STRIP)' || \
-	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
-mostlyclean-generic:
-
-clean-generic:
-
-distclean-generic:
-	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-
-maintainer-clean-generic:
-	@echo "This command is intended for maintainers to use"
-	@echo "it deletes files that may require special tools to rebuild."
-clean: clean-am
-
-clean-am: clean-binPROGRAMS clean-generic mostlyclean-am
-
-distclean: distclean-am
-	-rm -rf ./$(DEPDIR)
-	-rm -f makefile
-distclean-am: clean-am distclean-compile distclean-generic \
-	distclean-tags
-
-dvi: dvi-am
-
-dvi-am:
-
-html: html-am
-
-html-am:
-
-info: info-am
-
-info-am:
-
-install-data-am:
-
-install-dvi: install-dvi-am
-
-install-dvi-am:
-
-install-exec-am: install-binPROGRAMS
-
-install-html: install-html-am
-
-install-html-am:
-
-install-info: install-info-am
-
-install-info-am:
-
-install-man:
-
-install-pdf: install-pdf-am
-
-install-pdf-am:
-
-install-ps: install-ps-am
-
-install-ps-am:
-
-installcheck-am:
-
-maintainer-clean: maintainer-clean-am
-	-rm -rf ./$(DEPDIR)
-	-rm -f makefile
-maintainer-clean-am: distclean-am maintainer-clean-generic
-
-mostlyclean: mostlyclean-am
-
-mostlyclean-am: mostlyclean-compile mostlyclean-generic
-
-pdf: pdf-am
-
-pdf-am:
-
-ps: ps-am
-
-ps-am:
-
-uninstall-am: uninstall-binPROGRAMS
-
-.MAKE: install-am install-strip
-
-.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
-	clean-generic ctags distclean distclean-compile \
-	distclean-generic distclean-tags distdir dvi dvi-am html \
-	html-am info info-am install install-am install-binPROGRAMS \
-	install-data install-data-am install-dvi install-dvi-am \
-	install-exec install-exec-am install-html install-html-am \
-	install-info install-info-am install-man install-pdf \
-	install-pdf-am install-ps install-ps-am install-strip \
-	installcheck installcheck-am installdirs maintainer-clean \
-	maintainer-clean-generic mostlyclean mostlyclean-compile \
-	mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \
-	uninstall-am uninstall-binPROGRAMS
-
-
-# Tell versions [3.59,3.63) of GNU make to not export all variables.
-# Otherwise a system limit (for SysV at least) may be exceeded.
-.NOEXPORT:
diff --git a/src/misc/CMakeLists.txt b/src/misc/CMakeLists.txt
new file mode 100644
index 0000000..24c14f3
--- /dev/null
+++ b/src/misc/CMakeLists.txt
@@ -0,0 +1,8 @@
+SET ( LIBRARY_MISC_SRC
+      ringbuffer.cpp
+      log.cpp
+      helper.cpp
+      crc.cpp
+)
+
+ADD_LIBRARY ( ovtmisc ${LIBRARY_MISC_SRC} )
diff --git a/src/crc.cpp b/src/misc/crc.cpp
similarity index 100%
rename from src/crc.cpp
rename to src/misc/crc.cpp
diff --git a/src/crc.h b/src/misc/crc.h
similarity index 100%
rename from src/crc.h
rename to src/misc/crc.h
diff --git a/src/helper.cpp b/src/misc/helper.cpp
similarity index 100%
rename from src/helper.cpp
rename to src/misc/helper.cpp
diff --git a/src/helper.h b/src/misc/helper.h
similarity index 100%
rename from src/helper.h
rename to src/misc/helper.h
diff --git a/src/log.cpp b/src/misc/log.cpp
similarity index 100%
rename from src/log.cpp
rename to src/misc/log.cpp
diff --git a/src/log.h b/src/misc/log.h
similarity index 91%
rename from src/log.h
rename to src/misc/log.h
index 4a3169b..7836b64 100644
--- a/src/log.h
+++ b/src/misc/log.h
@@ -13,7 +13,7 @@ public:
   FakeStreambuf buf;
 
   FakeStream()
-      : std::ostream(&buf) {}
+    : std::ostream(&buf) {}
 };
 
 class OggLog {
@@ -26,7 +26,7 @@ public:
   };
 
   OggLog()
-      : currentLevel(LOG_INFO) {}
+    : currentLevel(LOG_INFO) {}
 
   void setLevel(Severity newLevel);
   Severity getLevel() const;
diff --git a/src/misc/ringbuffer.cpp b/src/misc/ringbuffer.cpp
new file mode 100644
index 0000000..676f37a
--- /dev/null
+++ b/src/misc/ringbuffer.cpp
@@ -0,0 +1,331 @@
+/*
+ * simple ring buffer
+ *
+ * Copyright (C) 2005-2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include <string.h>
+#include "ringbuffer.h"
+#include "exception.h"
+#include "log.h"
+
+ringbuffer::ringbuffer(uint32_t buffersize)
+  : size(buffersize), used(0), begin(0), end(0)
+{
+  lock();
+  logger.debug() <<"creating ringbuffer with size " << buffersize << std::endl;
+  fifo.resize(buffersize); //reserve(buffersize);// = new unsigned char[buffersize];
+  unlock();
+}
+
+//ringbuffer::ringbuffer(unsigned char* data, uint32_t len)
+//    : size(len), used(len), begin(0), end(0)
+//{
+//  // gonna make a copy for safety:
+//  lock();
+//  fifo.reserve(len);// = new unsigned char[len];
+//  fifo.insert(fifo.end(), data.data(), &data[len]); //memcpy(fifo, data, len);
+//  unlock();
+//}
+
+ringbuffer::~ringbuffer()
+{
+}
+
+//uint32_t ringbuffer::addData(const unsigned char* data, uint32_t len)
+//{
+//  lock();
+
+//  if ((!len) || (!data)) {
+//    unlock();
+//    return(0);
+//  }
+
+//  if (len > size) {
+//    unlock();
+//    throw OggException("Ring buffer write overflow");
+//  }
+//  if (begin+len < size) {
+//    memcpy(fifo.data()+begin,data,len);
+//  } else {
+//    // split
+//    int part1 = (size - begin);
+//    int part2 = len - part1;
+//    memcpy(fifo.data()+begin,data,part1);
+//    memcpy(fifo.data(),data+part1,part2);
+//  }
+
+//  begin += len;
+//  begin %= size;
+
+//  if (len > (size-used)) {
+//    throw OggException("Ring buffer overrun");
+//  } else {
+//    used += len;
+//  }
+
+//  unlock();
+
+//  return (len);
+
+//}
+
+uint32_t ringbuffer::addData(const std::vector<uint8_t>& data, uint32_t len)
+{
+  lock();
+
+  if ((!len) || (data.empty())) {
+    unlock();
+    return(0);
+  }
+
+  if (len > size) {
+    unlock();
+    throw OggException("Ring buffer write overflow");
+  }
+  if (begin+len < size) {
+    logger.debug() << "fifo: capacity " << fifo.capacity() << " size: "<< fifo.size() << std::endl;
+    logger.debug() << "writing data with length " << len << " as one block " << std::endl;
+    logger.debug() << "ringbuffer begin: " << begin << " end: " << end <<" size: " << size << std::endl;
+    memcpy(fifo.data()+begin,data.data(),len);
+  } else {
+    // split
+    int part1 = (size - begin);
+    int part2 = len - part1;
+    logger.debug() << "writing data with length " << len << " splitted " << part1 <<" / " << part2 << std::endl;
+    logger.debug() << "ringbuffer begin: " << begin << " end: " << end <<" size: " << size << std::endl;
+    memcpy(fifo.data()+begin,data.data(),part1);
+    memcpy(fifo.data(),data.data()+part1,part2);
+  }
+
+  begin += len;
+  begin %= size;
+
+  if (len > (size-used)) {
+    throw OggException("Ring buffer overrun");
+  } else {
+    used += len;
+  }
+
+  unlock();
+
+  return (len);
+
+}
+
+
+
+uint32_t ringbuffer::getData(unsigned char* data, uint32_t len)
+{
+  lock();
+
+  if (used < len)
+    len = used;
+
+  if (len > size) {
+    throw OggException("Ring buffer read overflow");
+  }
+  if (size < (end + len)) {
+    // split
+    int part1 = size - end;
+    int part2 = len - part1;
+    memcpy(data, fifo.data()+end, part1);
+    memcpy(data+part1, fifo.data(), part2);
+  } else
+    memcpy(data, fifo.data()+end, len);
+
+  end += len;
+  end %= size;
+  used -= len;
+
+  /*
+  for(uint32_t i=0; i<len; ++i) {
+    data[i] = fifo[end++];
+    end %= size;
+  }
+  */
+
+  unlock();
+
+  return (len);
+}
+
+uint32_t ringbuffer::getData(std::vector<uint8_t>& data, uint32_t len)
+{
+  lock();
+
+  if (used < len)
+    len = used;
+
+  if (len > size) {
+    throw OggException("Ring buffer read overflow");
+  }
+
+  data.clear();
+  data.reserve(len);
+//  data.insert(data.end(),len);
+
+  if (size < (end + len)) {
+    // split
+    int part1 = size - end;
+    int part2 = len - (size-end);
+    //data.insert(std::end(data),std::begin(fifo)+end, std::end(fifo)); //std::begin(fifo)+end+part1);
+    data.insert(data.end(),fifo.begin()+end, fifo.end()); //std::end(fifo));
+    data.insert(std::end(data),std::begin(fifo), std::begin(fifo)+part2);
+//    memcpy(data.data(), fifo.data()+end, part1);
+//    memcpy(data.data()+part1, fifo.data(), part2);
+  } else {
+    data.insert(std::end(data),std::begin(fifo)+end, std::begin(fifo)+end+len);
+//    memcpy(data.data(), fifo.data()+end, len);
+  }
+
+  end += len;
+  end %= size;
+  used -= len;
+
+  /*
+  for(uint32_t i=0; i<len; ++i) {
+    data[i] = fifo[end++];
+    end %= size;
+  }
+  */
+
+  unlock();
+
+  return (len);
+}
+
+uint32_t ringbuffer::getAvailable()
+{
+  uint32_t retValue;
+
+  lock();
+  retValue = size-used;
+  unlock();
+
+  return(retValue);
+}
+
+uint32_t ringbuffer::getUsed()
+{
+  uint32_t retValue;
+
+  lock();
+  retValue = used;
+  unlock();
+
+  return(retValue);
+}
+
+void ringbuffer::clean()
+{
+  lock();
+  begin = end = used = 0;
+  unlock();
+}
+
+//uint32_t ringbuffer::peekBack(unsigned char* data, uint32_t len)
+//{
+//  lock();
+//  if (len>used)
+//    len = used;
+
+//  int tmpEnd = begin-1;
+//  for (int i=len-1; i>=0; --i) {
+//    if (tmpEnd < 0)
+//      tmpEnd = size-1;
+//    data[i] = fifo[tmpEnd--];
+//  }
+//  unlock();
+
+//  return (len);
+//}
+
+uint32_t ringbuffer::peekBack(std::vector<uint8_t>& data, uint32_t len)
+{
+  lock();
+  if (len>used)
+    len = used;
+
+  /* clean data and fill with zeros in specified length */
+  data.clear();
+  data.insert(std::begin(data), len, 0);
+
+  int tmpEnd = begin-1;
+  for (int i=len-1; i>=0; --i) {
+    if (tmpEnd < 0)
+      tmpEnd = size-1;
+    data[i] = fifo[tmpEnd--];
+  }
+  unlock();
+
+  return (len);
+}
+
+
+//uint32_t ringbuffer::peekFront(unsigned char* data, uint32_t len)
+//{
+//  lock();
+//  if (used < len)
+//    len = used;
+
+//  uint32_t tmpEnd = end;
+//  for (uint32_t i=0; i<len; ++i) {
+//    data[i] = fifo[tmpEnd++];
+//    tmpEnd %= size;
+//  }
+//  unlock();
+
+//  return (len);
+//}
+
+uint32_t ringbuffer::peekFront(std::vector<uint8_t>& data, uint32_t len)
+{
+  lock();
+  if (used < len)
+    len = used;
+
+  /* clean data and fill with zeros in specified length */
+  data.clear();
+  data.insert(std::begin(data), len, 0);
+
+  uint32_t tmpEnd = end;
+  for (uint32_t i=0; i<len; ++i) {
+    data[i] = fifo[tmpEnd++];
+    tmpEnd %= size;
+  }
+  unlock();
+
+  return (len);
+}
+
+
+uint32_t ringbuffer::inc(uint32_t len)
+{
+  lock();
+  if (used < len)
+    len = used;
+
+  end += len;
+  end %= size;
+  used -= len;
+
+  unlock();
+
+  return (len);
+}
diff --git a/src/ringbuffer.h b/src/misc/ringbuffer.h
similarity index 51%
rename from src/ringbuffer.h
rename to src/misc/ringbuffer.h
index ad7ec04..7ecbd21 100644
--- a/src/ringbuffer.h
+++ b/src/misc/ringbuffer.h
@@ -22,41 +22,50 @@
 #ifndef ringbuffer_h
 #define ringbuffer_h
 
+#include <cstdint>
+#include <vector>
+
 class ringbuffer {
 
 protected:
-  unsigned char* fifo;
+  //unsigned char* fifo;
+  std::vector<std::uint8_t> fifo;
 
-  volatile unsigned int size;
-  volatile unsigned int used;
-  volatile unsigned int begin; //! first available sign
-  volatile unsigned int end;   //! oldest packet
+  uint32_t size;
+  uint32_t used;
+  uint32_t begin; //! first available sign
+  uint32_t end;   //! oldest packet
 
-  virtual void lock() {};
-  virtual void unlock() {};
+  void lock() {}
+  void unlock() {}
 
 public:
-  ringbuffer(unsigned int buffersize = 8000);
-  ringbuffer(unsigned char* data, unsigned int len);
+  ringbuffer(uint32_t buffersize = 8000);
+//  ringbuffer(uint8_t* rawdata, uint32_t len);
 
-  virtual ~ringbuffer();
+  ~ringbuffer();
 
-  unsigned int addData(const unsigned char* data, unsigned int len);
-  unsigned int getData(unsigned char* data, unsigned int len);
+//  uint32_t addData(const unsigned char* data, uint32_t len);
+  uint32_t getData(unsigned char* data, uint32_t len);
 
-  unsigned int getAvailable();
-  unsigned int getUsed();
+  uint32_t getAvailable();
+  uint32_t getUsed();
 
   // read newest nBytes
-  unsigned int peekBack(unsigned char* data, unsigned int len);
+//  uint32_t peekBack(unsigned char* data, uint32_t len);
 
   // read oldest nBytes
-  unsigned int peekFront(unsigned char* data, unsigned int len);
+//  uint32_t peekFront(unsigned char* data, uint32_t len);
 
   // delete the oldest len bytes
-  unsigned int inc(unsigned int len);
+  uint32_t inc(uint32_t len);
 
   void clean();
+
+  uint32_t addData(const std::vector<uint8_t> &data, uint32_t len);
+  uint32_t getData(std::vector<uint8_t> &data, uint32_t len);
+  uint32_t peekBack(std::vector<uint8_t> &data, uint32_t len);
+  uint32_t peekFront(std::vector<uint8_t> &data, uint32_t len);
 };
 
 #endif
diff --git a/src/oggPacket.cpp b/src/oggPacket.cpp
deleted file mode 100644
index 2c3df2b..0000000
--- a/src/oggPacket.cpp
+++ /dev/null
@@ -1,334 +0,0 @@
-/*
- * OggPacket will carry all relevant information of an ogg packet
- *
- * Copyright (C) 2008 Joern Seger
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- */
-
-#include <iostream>
-#include <sstream>
-#include <cstring>
-
-//#include "theora/theora.h"
-#include "oggPacket.h"
-#include "log.h"
-
-OggPacketInternal::OggPacketInternal()
-    : streamType(ogg_unknown), streamNo(255), streamHeader(false)
-{
-  packet = 0;
-  bytes = 0;
-  packetno = 0;
-  granulepos = -1;
-  b_o_s = 0;
-  e_o_s = 0;
-}
-
-OggPacketInternal* OggPacketInternal::clone()
-{
-  uint8* data = new uint8[bytes];
-  memcpy(data, packet, bytes);
-
-  PacketType packetType(normal);
-
-  if (b_o_s)
-    packetType = bos;
-
-  if (e_o_s)
-    packetType = eos;
-
-  OggPacketInternal* pkt = new OggPacketInternal(data, bytes, packetno, granulepos, packetType);
-
-  pkt->streamNo = streamNo;
-  pkt->streamType = streamType;
-  pkt->streamHeader = streamHeader;
-
-  return(pkt);
-}
-
-OggPacketInternal::OggPacketInternal(uint8* data, uint32 length,
-                                     uint32 packetNo, int64 granulePos, PacketType packetType)
-    : streamType(ogg_unknown), streamNo(255), streamHeader(false)
-{
-  packet     = data;
-  bytes      = length;
-  packetno   = packetNo;
-  granulepos = granulePos;
-  b_o_s      =  0;
-  e_o_s      =  0;
-
-  switch (packetType) {
-  case bos:
-    b_o_s = 256;
-    break;
-  case eos:
-    e_o_s = 256;
-    break;
-  default: {}
-  }
-
-}
-
-OggPacketInternal::~OggPacketInternal()
-{
-  if (packet)
-    delete[] packet;
-}
-
-OggPacket::OggPacket()
-{
-}
-
-OggPacket::OggPacket(OggPacketInternal* pagePtr)
-    : RefObject<OggPacketInternal>(pagePtr)
-{
-}
-
-OggPacket::OggPacket(const OggPacket& refObj)
-    : RefObject<OggPacketInternal>(refObj)
-{
-}
-
-OggPacket::~OggPacket()
-{
-}
-
-OggPacket& OggPacket::operator=(const OggPacket& refObj)
-{
-  if (this == &refObj)
-    return(*this);
-
-  (*refCounter)--;
-
-  if ((*refCounter) == 0) {
-    delete refCounter;
-    delete objPtr;
-  }
-
-  refCounter = refObj.refCounter;
-  objPtr     = refObj.objPtr;
-
-  (*refCounter)++;
-
-  return(*this);
-}
-
-int64 OggPacket::granulepos()
-{
-  if (objPtr)
-    return(objPtr->granulepos);
-
-  return(-2);
-}
-
-void OggPacket::setGranulepos(int64 pos)
-{
-  if (objPtr)
-    objPtr->granulepos = pos;
-}
-
-void OggPacket::setStreamHeader()
-{
-  objPtr->streamHeader = true;
-}
-
-bool OggPacket::isStreamHeader()
-{
-  return(objPtr->streamHeader);
-}
-
-OggPacket OggPacket::clone()
-{
-  OggPacketInternal* newPacket = new OggPacketInternal(*objPtr);
-
-  if (newPacket) {
-    newPacket->packet = new unsigned char[objPtr->bytes];
-    memcpy(newPacket->packet, objPtr->packet, objPtr->bytes);
-  }
-
-  return(OggPacket(newPacket));
-}
-
-uint32 OggPacket::getPacketNo()
-{
-  return(objPtr->packetno);
-}
-
-uint32 OggPacket::length()
-{
-  return(objPtr->bytes);
-}
-
-bool OggPacket::isBOS()
-{
-  return(objPtr->b_o_s);
-}
-
-bool OggPacket::isEOS()
-{
-  return(objPtr->e_o_s);
-}
-
-void OggPacket::setBOS()
-{
-  objPtr->b_o_s = 1;
-}
-
-void OggPacket::setEOS()
-{
-  objPtr->e_o_s = 1;
-}
-
-void OggPacket::unsetBOS()
-{
-  objPtr->b_o_s = 0;
-}
-
-void OggPacket::unsetEOS()
-{
-  objPtr->e_o_s = 0;
-}
-
-/*
-ogg_packet OggPacket::toLibogg()
-{
-  return(*objPtr);
-}
-*/
-uint8 OggPacket::getStreamNo()
-{
-  return(objPtr->streamNo);
-}
-
-OggType OggPacket::getStreamType()
-{
-  return(objPtr->streamType);
-}
-
-void OggPacket::setStreamNo(int8 no)
-{
-  objPtr->streamNo = no;
-}
-
-void OggPacket::setStreamType(OggType type)
-{
-  objPtr->streamType = type;
-}
-
-/*
-void OggPacket::fromLibogg(ogg_packet pack)
-{
-  // copy all information including the pointers
-  objPtr->bytes      = pack.bytes;
-  objPtr->packetno   = pack.packetno;
-  objPtr->granulepos = pack.granulepos;
-  objPtr->b_o_s      = pack.b_o_s;
-  objPtr->e_o_s      = pack.e_o_s;
-
-  objPtr->packet = new uint8[pack.bytes];
-
-  if (objPtr->packet) {
-    memcpy(objPtr->packet, pack.packet, pack.bytes);
-  }
-  else {
-    logger.error() << "OggPacket::fromLibogg: out of memory\n";
-  }
-}
-*/
-
-uint8* OggPacket::data()
-{
-  return(objPtr->packet);
-}
-
-/* print levels:
- * 1) only data length information
- * 2) header information
- * 3) additional header information
- * 4) header dump
- * 5) body dump
- */
-std::string OggPacket::print(uint8 level)
-{
-  std::stringstream retStream;
-
-  retStream << "\nOgg Packet: packet length = " << objPtr->bytes << std::endl;
-
-  if (level < 1)
-    return(retStream.str());
-
-  retStream << "\nHeader Information:"
-  << "\n\tBegin of Stream     : ";
-
-  if (objPtr->b_o_s)
-    retStream << "true";
-  else
-    retStream << "false";
-
-  retStream << "\n\tEnd of Stream       : ";
-
-  if (objPtr->e_o_s)
-    retStream << "true";
-  else
-    retStream << "false";
-
-  retStream << "\n\tGranule Position    : " << objPtr->granulepos;
-  retStream << "\n\tPacket Number       : " << objPtr->packetno;
-
-  retStream << std::endl;
-
-  if (level < 3)
-    return(retStream.str());
-
-  retStream << "\n\tStream Number       : " << (int)objPtr->streamNo;
-  retStream << "\n\tStream Type         : ";
-
-  switch (objPtr->streamType) {
-  case ogg_vorbis:
-    retStream << "Vorbis";
-    break;
-  case ogg_theora:
-    retStream << "Theora";
-    break;
-  case ogg_kate:
-    retStream << "Kate";
-    break;
-  case ogg_unknown:
-  default:
-    retStream << "unknown";
-    break;
-  }
-  retStream << std::endl;
-
-  if (level < 4)
-    return(retStream.str());
-
-  retStream << "\nPacket Hex dump:";
-
-  for (int32 c(0); c<objPtr->bytes; ++c) {
-    if ((c%16) == 0)
-      retStream << std::endl;
-    retStream << " " << std::hex;
-    if (((unsigned int) (objPtr->packet[c])) < 16)
-      retStream << "0";
-    retStream << (unsigned int) (objPtr->packet[c]);
-  }
-
-  retStream << std::dec << std::endl;
-
-  return(retStream.str());
-}
diff --git a/src/oggPage.cpp b/src/oggPage.cpp
deleted file mode 100644
index fef6f44..0000000
--- a/src/oggPage.cpp
+++ /dev/null
@@ -1,331 +0,0 @@
-/*
- * OggPage will carry all relevant information of an ogg page
- *
- * Copyright (C) 2008 Joern Seger
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- */
-
-#include <sstream>
-#include <cstring>
-
-#include "oggPage.h"
-#include "oggHeader.h"
-#include "crc.h"
-
-/* OggPageInternal */
-
-OggPageInternal::OggPageInternal()
-    : data(0), headerLength(0), bodyLength(0), streamNo(255), empty(true)
-{
-}
-
-OggPageInternal::OggPageInternal(uint8* _data, uint32 _headerLength, uint32 _bodyLength)
-    : data(_data), headerLength(_headerLength), bodyLength(_bodyLength),  streamNo(255), empty(false)
-{
-}
-
-OggPageInternal::~OggPageInternal()
-{
-  if (data)
-    delete[] data;
-}
-
-/*
-void OggPageInternal::fromLibogg(ogg_page page)
-{
-  if (data)
-    delete[] data;
-  data = new uint8[page.body_len+page.header_len];
-  headerLength = page.header_len;
-  bodyLength   = page.body_len;
-}
-
-ogg_page OggPageInternal::toLibogg()
-{
-  ogg_page page;
-  if (data) {
-    page.header = data;
-    page.body   = data+headerLength;
-    page.header_len = headerLength;
-    page.body_len   = bodyLength;
-  }
-  else {
-    page.header = 0;
-    page.body   = 0;
-    page.header_len = 0;
-    page.body_len   = 0;
-  }
-
-  return(page);
-}
-*/
-OggPage::OggPage()
-{
-}
-
-OggPage::OggPage(OggPageInternal* pagePtr)
-    : RefObject<OggPageInternal>(pagePtr)
-{
-}
-
-OggPage::OggPage(const OggPage& refObj)
-    : RefObject<OggPageInternal>(refObj)
-{
-}
-
-OggPage::~OggPage()
-{
-}
-
-OggPage& OggPage::operator=(const OggPage& refObj)
-{
-  if (this == &refObj)
-    return(*this);
-
-  (*refCounter)--;
-
-  if ((*refCounter) == 0) {
-    delete refCounter;
-    delete objPtr;
-  }
-
-  refCounter = refObj.refCounter;
-  objPtr     = refObj.objPtr;
-
-  (*refCounter)++;
-
-  return(*this);
-}
-
-bool OggPage::isContinued()
-{
-  return(((OggHeader*)(objPtr->data))->pack_type);
-}
-
-void OggPage::setContinued()
-{
-  ((OggHeader*)(objPtr->data))->pack_type = 1;
-}
-
-bool OggPage::isBOS()
-{
-  return(((OggHeader*)(objPtr->data))->page_type);
-}
-
-bool OggPage::isEOS()
-{
-  return(((OggHeader*)(objPtr->data))->last);
-}
-
-void OggPage::setBOS()
-{
-  ((OggHeader*)(objPtr->data))->page_type = 1;
-}
-
-void OggPage::unsetBOS()
-{
-  ((OggHeader*)(objPtr->data))->page_type = 0;
-}
-
-void OggPage::setEOS()
-{
-  ((OggHeader*)(objPtr->data))->last = 1;
-}
-
-void OggPage::unsetEOS()
-{
-  ((OggHeader*)(objPtr->data))->last = 0;
-}
-
-void OggPage::setStreamNo(uint8 streamNo)
-{
-  objPtr->streamNo = streamNo;
-}
-
-uint8 OggPage::getStreamNo()
-{
-  return(objPtr->streamNo);
-}
-
-uint32 OggPage::version()
-{
-  return(((OggHeader*)(objPtr->data))->version);
-}
-
-uint32 OggPage::packets()
-{
-  uint32 segments(((OggHeader*)(objPtr->data))->tableSegments);
-  uint32 packets(0);
-  uint8* oggPtr=objPtr->data+sizeof(OggHeader);
-
-  for (uint32 i(0); i<segments; ++i)
-    if (oggPtr[i]<0xff)packets++;
-
-  return(packets);
-
-}
-
-int64 OggPage::granulepos()
-{
-  return(((OggHeader*)(objPtr->data))->position);
-}
-
-uint32 OggPage::serialno()
-{
-  return(((OggHeader*)(objPtr->data))->serial);
-}
-
-uint32 OggPage::pageno()
-{
-  return(((OggHeader*)(objPtr->data))->pageNo);
-}
-
-uint32 OggPage::length()
-{
-  return(objPtr->headerLength + objPtr->bodyLength);
-}
-
-uint8* OggPage::data()
-{
-  return(objPtr->data);
-}
-
-bool OggPage::isEmpty()
-{
-  return(objPtr->empty);
-}
-
-void OggPage::createCRC()
-{
-  OggHeader* hdr = (OggHeader*)(objPtr->data);
-  hdr->checksum  = 0;
-  hdr->checksum  = Crc::create(objPtr->data, length());
-}
-
-OggPage OggPage::clone()
-{
-
-  if (length() == 0)
-    return(OggPage());
-
-  uint8* data = new uint8[length()];
-  memcpy(data, objPtr->data, length());
-
-  OggPageInternal* newInternalPage = new OggPageInternal(data, objPtr->headerLength, objPtr->bodyLength);
-
-  return(OggPage(newInternalPage));
-
-}
-
-/* print levels:
- * 0) only data length information
- * 1) header information
- * 2) additional header information
- * 3) header dump
- * 4) body dump
- */
-std::string OggPage::print(uint8 level)
-{
-  std::stringstream retStream;
-
-  retStream << "Ogg Page: header length = " << std::dec << objPtr->headerLength
-  << " and body length = " << std::dec << objPtr->bodyLength
-  << std::endl;
-
-  if (level < 1)
-    return(retStream.str());
-
-  OggHeader* header = (OggHeader*)(objPtr->data);
-  retStream << "Header Information:"
-  << "\n\tOgg Version      : " << (uint32)header->version
-  << "\n\tSerial No        : 0x" << std::hex << header->serial << std::dec
-  << "\n\tPacket Type      : ";
-
-  if (header->pack_type)
-    retStream << "continued packet";
-  else
-    retStream << "fresh packet";
-
-  retStream << "\n\tPage Type        : ";
-
-  if (header->page_type)
-    retStream << "begin of stream marker";
-  else
-    retStream << "normal page";
-
-  retStream << "\n\tLast Page        : ";
-
-  if (header->last)
-    retStream << "end of stream marker";
-  else
-    retStream << "normal page";
-
-  retStream << "\n\tGranule Position : " << header->position << "(0x" << std::hex << header->position << std::dec << ")";
-  retStream << "\n\tPage Number      : " << header->pageNo;
-  retStream << "\n\tChecksum         : 0x" << std::hex << header->checksum << std::dec;
-  retStream << "\n\tTable Segments   : " << (uint32) header->tableSegments;
-  retStream << std::endl << std::endl;
-
-  if (level < 2)
-    return(retStream.str());
-
-  retStream << "Segments:";
-
-  for (uint32 c(0); c<header->tableSegments; ++c) {
-    if ((c%16) == 0)
-      retStream << std::endl;
-    retStream << " "<< std::hex;
-    if (((unsigned int) (objPtr->data[c+sizeof(OggHeader)])) < 16)
-      retStream << "0";
-    retStream << (unsigned int) (objPtr->data[c+sizeof(OggHeader)]);
-  }
-
-  retStream << std::endl << std::endl;
-
-  if (level < 3)
-    return(retStream.str());
-
-  retStream << "Header Hex dump: ";
-  for (uint32 c(0); c<objPtr->headerLength; ++c) {
-    if ((c%16) == 0)
-      retStream << std::endl;
-    retStream << " " << std::hex;
-    if (((unsigned int) (objPtr->data[c])) < 16)
-      retStream << "0";
-    retStream << (unsigned int) (objPtr->data[c]);
-  }
-  retStream << std::dec << std::endl << std::endl;
-
-  if (level < 4)
-    return(retStream.str());
-
-  retStream << "Body Hex dump: ";
-
-  for (uint32 c(0); c<objPtr->bodyLength; ++c) {
-    if ((c%16) == 0)
-      retStream << std::endl;
-    retStream << " " << std::hex;
-    if (((unsigned int) (objPtr->data[c+objPtr->headerLength])) < 16)
-      retStream << "0";
-    retStream << (unsigned int) (objPtr->data[c+objPtr->headerLength]);
-  }
-
-  retStream << std::dec << std::endl;
-
-  return(retStream.str());
-}
-
diff --git a/src/old/SDLvideoOutput.cpp b/src/old/SDLvideoOutput.cpp
new file mode 100644
index 0000000..913bc1b
--- /dev/null
+++ b/src/old/SDLvideoOutput.cpp
@@ -0,0 +1,106 @@
+#include <iostream>
+
+#include "SDLvideoOutput.h"
+#include "log.h"
+
+SDLvideoOutput::SDLvideoOutput()
+  : MediaUnit(write, "SDLvideoOutput")
+{
+}
+
+SDLvideoOutput::SDLvideoOutput(VideoInfo& info)
+  : MediaUnit(write, "SDLvideoOutput")
+{
+  init(info);
+}
+
+void SDLvideoOutput::init(VideoInfo& info)
+{
+  videoInfo = info;
+
+  if ( SDL_Init(SDL_INIT_VIDEO) < 0 ) {
+    logger.error() << "Unable to init SDL: "<< SDL_GetError() << std::endl;
+    return;
+  }
+
+  screen = SDL_SetVideoMode(info.frame_width, info.frame_height, 0, SDL_SWSURFACE);
+  if ( screen == NULL ) {
+    logger.error() << "Unable to set " << info.frame_width <<" " << info.frame_height
+                   << " video: " << SDL_GetError() << std::endl;
+    return;
+  }
+
+  yuv_overlay = SDL_CreateYUVOverlay(info.frame_width, info.frame_height,
+                                     SDL_YV12_OVERLAY,
+                                     screen);
+  if ( yuv_overlay == NULL ) {
+    logger.error() << "SDLvideoOutput::init: Couldn't create SDL_yuv_overlay:" << SDL_GetError();
+    return;
+  }
+  rect.x = 0;
+  rect.y = 0;
+  rect.w = info.frame_width;
+  rect.h = info.frame_height;
+
+  SDL_DisplayYUVOverlay(yuv_overlay, &rect);
+
+}
+
+SDLvideoOutput::~SDLvideoOutput()
+{
+  SDL_Quit();
+  logger.debug() << std::endl;
+}
+
+//SDLvideoOutput& SDLvideoOutput::operator<<(TheoraVideoPacket packet)
+SDLvideoOutput& SDLvideoOutput::operator<<(th_ycbcr_buffer packet)
+{
+  int i;
+//  yuv_buffer yuv = packet.getYuvBuffer();
+  int crop_offset;
+
+  /* Lock SDL_yuv_overlay */
+  if ( SDL_MUSTLOCK(screen) ) {
+    if ( SDL_LockSurface(screen) < 0 ) {
+      logger.error() << "SDLvideoOutput::operator<<: ERROR SDL_LockSurface\n";
+      return(*this);
+    }
+  }
+  if (SDL_LockYUVOverlay(yuv_overlay) < 0) {
+    logger.error() << "SDLvideoOutput::operator<<: ERROR SDL_YUVOverlay\n";
+    return(*this);
+  }
+
+  /* let's draw the data (*yuv[3]) on a SDL screen (*screen) */
+  /* deal with border stride */
+  /* reverse u and v for SDL */
+  /* and crop input properly, respecting the encoded frame rect */
+  crop_offset=videoInfo.offset_x+packet[0].stride*videoInfo.offset_y;
+  for (i=0; i<yuv_overlay->h; i++)
+    memcpy(yuv_overlay->pixels[0]+yuv_overlay->pitches[0]*i,
+           packet[0].data+crop_offset+packet[0].stride*i,
+           yuv_overlay->w);
+  crop_offset=(videoInfo.offset_x/2)+(packet[1].stride)*(videoInfo.offset_y/2);
+  for (i=0; i<yuv_overlay->h/2; i++) {
+    memcpy(yuv_overlay->pixels[2]+yuv_overlay->pitches[2]*i,
+           packet[1].data+crop_offset+packet[1].stride*i,
+           yuv_overlay->w/2);
+    memcpy(yuv_overlay->pixels[1]+yuv_overlay->pitches[1]*i,
+           packet[2].data+crop_offset+packet[2].stride*i,
+           yuv_overlay->w/2);
+  }
+
+  logger.debug() << ".";
+
+  /* Unlock SDL_yuv_overlay */
+  if ( SDL_MUSTLOCK(screen) ) {
+    SDL_UnlockSurface(screen);
+  }
+  SDL_UnlockYUVOverlay(yuv_overlay);
+
+  /* Show, baby, show! */
+  SDL_DisplayYUVOverlay(yuv_overlay, &rect);
+
+  return(*this);
+
+}
diff --git a/src/old/SDLvideoOutput.h b/src/old/SDLvideoOutput.h
new file mode 100644
index 0000000..7fafc2f
--- /dev/null
+++ b/src/old/SDLvideoOutput.h
@@ -0,0 +1,29 @@
+#ifndef SDLVIDEOOUTPUT_H_
+#define SDLVIDEOOUTPUT_H_
+
+#include "mediaUnit.h"
+//#include "theoraVideoPacket.h"
+#include "videoInfo.h"
+#include <theora/codec.h>
+#include <SDL/SDL.h>
+
+class SDLvideoOutput : public MediaUnit {
+protected:
+  SDL_Surface *screen;
+  SDL_Overlay *yuv_overlay;
+  SDL_Rect     rect;
+
+  VideoInfo    videoInfo;
+
+public:
+  SDLvideoOutput();
+  SDLvideoOutput(VideoInfo& info);
+  virtual ~SDLvideoOutput();
+
+  void init(VideoInfo& info);
+
+//  SDLvideoOutput& operator<<(TheoraVideoPacket packet);
+  SDLvideoOutput& operator<<(th_ycbcr_buffer packet);
+};
+
+#endif /*SDLVIDEOOUTPUT_H_*/
diff --git a/src/old/jackAudioOutput.h b/src/old/jackAudioOutput.h
new file mode 100644
index 0000000..69d0cb3
--- /dev/null
+++ b/src/old/jackAudioOutput.h
@@ -0,0 +1,20 @@
+#ifndef jackAudioOutput_h
+#define jackAudioOutput_h
+
+#include "mediaUnit.h"
+#include "audioPacket.h"
+
+class JackAudioOutput : public MediaUnit {
+
+protected:
+
+
+public:
+  JackAudioOutput();
+  virtual ~JackAudioOutput();
+
+  JackAudioOutput& operator<<(AudioPacket audioPacket);
+
+};
+
+#endif
\ No newline at end of file
diff --git a/src/old/memFactory.h b/src/old/memFactory.h
new file mode 100644
index 0000000..b0bab3f
--- /dev/null
+++ b/src/old/memFactory.h
@@ -0,0 +1,96 @@
+#ifndef MEMFACTORY_H_
+#define MEMFACTORY_H_
+
+#include <list>
+#include <iostream>
+
+#include "definition.h"
+
+template <class C> class MemFactory {
+private:
+
+  static const uint32 maxElements = 20;
+
+  template <class T> class MemElem {
+  public:
+    bool used;
+    T* memRegion;
+    uint32 size;
+  };
+
+  std::list<MemElem<C> > list;
+  typename std::list<MemElem<C> >::iterator it;
+
+public:
+  MemFactory();
+  virtual ~MemFactory();
+
+  C* getMemElement(uint32 size);
+  void returnMemElement(C* elem);
+
+};
+
+template <class C> inline MemFactory<C>::MemFactory()
+{
+}
+
+template <class C> inline MemFactory<C>::~MemFactory()
+{
+
+  it = list.begin();
+
+  for (; it != list.end(); it++)
+    delete[] it->memRegion;
+}
+
+template <class C> inline C* MemFactory<C>::getMemElement(uint32 size)
+{
+  /* is there an unused data portion available, then use it */
+  it = list.begin();
+
+  for (; it != list.end(); it++)
+    if ((!it->used) && (it->size == size))
+      break;
+
+  MemElem<C> elem;
+  if (it ==list.end()) {
+    //		logger.debug() << "Create new Element\n";
+    elem.used = true;
+    elem.size = size;
+    elem.memRegion = new C[size];
+  } else {
+    elem = (*it);
+    elem.used = true;
+    list.erase(it);
+  }
+
+  list.push_back(elem);
+
+  if (list.size() > maxElements)
+    for (it = list.begin(); it != list.end(); it++) {
+      if (!it->used) {
+        //				logger.debug() << "Delete an Element\n";
+        delete[] it->memRegion;
+        list.erase(it);
+        break;
+      }
+    }
+
+  return (elem.memRegion);
+
+}
+
+template <class C> inline void MemFactory<C>::returnMemElement(C* elem)
+{
+  it = list.begin();
+
+  for (; it != list.end(); it++)
+    if (it->memRegion == elem) {
+      it->used = false;
+      //			logger.debug() << "Free new Element\n";
+      break;
+    }
+
+}
+
+#endif /*MEMFACTORY_H_*/
diff --git a/src/old/oggConfig.cpp b/src/old/oggConfig.cpp
new file mode 100644
index 0000000..ac14325
--- /dev/null
+++ b/src/old/oggConfig.cpp
@@ -0,0 +1,9 @@
+#include "oggConfig.h"
+
+OggConfig::OggConfig()
+{
+}
+
+OggConfig::~OggConfig()
+{
+}
diff --git a/src/old/oggConfig.h b/src/old/oggConfig.h
new file mode 100644
index 0000000..acf467b
--- /dev/null
+++ b/src/old/oggConfig.h
@@ -0,0 +1,15 @@
+#ifndef OGGCONFIG_H_
+#define OGGCONFIG_H_
+
+#include "mediaConfig.h"
+
+class OggConfig : public MediaConfig {
+public:
+  OggConfig();
+  virtual ~OggConfig();
+
+
+
+};
+
+#endif /*OGGCONFIG_H_*/
diff --git a/src/ovt_kate/CMakeLists.txt b/src/ovt_kate/CMakeLists.txt
new file mode 100644
index 0000000..3209560
--- /dev/null
+++ b/src/ovt_kate/CMakeLists.txt
@@ -0,0 +1,8 @@
+SET ( LIBRARY_KATE_SRC
+      katePosInterpreter.cpp  
+      kateStreamParameter.cpp
+      kateExtractor.cpp 
+    )
+
+ADD_LIBRARY ( ovtkate ${LIBRARY_KATE_SRC} )
+
diff --git a/src/kateExtractor.cpp b/src/ovt_kate/kateExtractor.cpp
similarity index 88%
rename from src/kateExtractor.cpp
rename to src/ovt_kate/kateExtractor.cpp
index 75470cc..c523cec 100644
--- a/src/kateExtractor.cpp
+++ b/src/ovt_kate/kateExtractor.cpp
@@ -49,7 +49,7 @@ bool KateExtractor::_extract(uint8* data, ExtractorInformation& info)
   info.parameter = param;
 
   /* set the ogg type and the number of header packets */
-  info.type = ogg_kate;
+  info.type = OggType::kate;
   info.numOfHeaderPackets = kateHeader->numHeaders;
 
   return(true);
@@ -58,14 +58,16 @@ bool KateExtractor::_extract(uint8* data, ExtractorInformation& info)
 bool KateExtractor::extract(OggPage& oggPage, ExtractorInformation& information)
 {
   /* if this is not a Begin Of Stream page, return immediately */
-  if (!oggPage.isBOS()) {
+  if (!oggPage->isBOS()) {
     logger.error() << "KatePosInterpreter::extract: This page is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
+  uint8_t* dataPtr = &(oggPage->data())[0];
+
   /* get the information starting points within the raw data */
-  OggHeader* oggHeader  = (OggHeader*) (oggPage.data());
-  uint8*     data       = (oggPage.data() + sizeof(OggHeader) + oggHeader->tableSegments);
+  OggHeader* oggHeader  = (OggHeader*) dataPtr;
+  uint8*     data       = dataPtr + sizeof(OggHeader) + oggHeader->tableSegments;
 
   if (_extract(data, information) == false)
     return(false);
@@ -78,12 +80,12 @@ bool KateExtractor::extract(OggPage& oggPage, ExtractorInformation& information)
 bool KateExtractor::extract(OggPacket& packet, ExtractorInformation& information)
 {
   // if this is not a Begin Of Stream page, return immediately
-  if (!packet.isBOS()) {
+  if (!packet->isBOS()) {
     logger.error() << "TheoraPosInterpreter::extract: This packet is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
-  if (_extract(packet.data(), information) == false)
+  if (_extract(packet->data(), information) == false)
     return(false);
 
   return(true);
diff --git a/src/kateExtractor.h b/src/ovt_kate/kateExtractor.h
similarity index 100%
rename from src/kateExtractor.h
rename to src/ovt_kate/kateExtractor.h
diff --git a/src/kateHeader.h b/src/ovt_kate/kateHeader.h
similarity index 100%
rename from src/kateHeader.h
rename to src/ovt_kate/kateHeader.h
diff --git a/src/katePosInterpreter.cpp b/src/ovt_kate/katePosInterpreter.cpp
similarity index 93%
rename from src/katePosInterpreter.cpp
rename to src/ovt_kate/katePosInterpreter.cpp
index 2c59a89..6f06ffe 100644
--- a/src/katePosInterpreter.cpp
+++ b/src/ovt_kate/katePosInterpreter.cpp
@@ -7,7 +7,7 @@
 
 
 KatePosInterpreter::KatePosInterpreter()
-    : granuleShift(0), granulerateNumerator(1), granulerateDenominator(1)
+  : granuleShift(0), granulerateNumerator(1), granulerateDenominator(1)
 {
 }
 
@@ -128,10 +128,10 @@ GranulePosInterpreter& TheoraPosInterpreter::operator+=(GranulePosInterpreter& _
 
 void KatePosInterpreter::setStreamPosition(OggPacket& packet)
 {
-  int64_t granpos = packet.granulepos();
+  int64_t granpos = packet->granulepos();
   if (granpos >= 0) {
-    actualGranulePosition = packet.granulepos();
-    packet.setGranulepos(actualGranulePosition);
+    actualGranulePosition = packet->granulepos();
+    packet->setGranulepos(actualGranulePosition);
   }
 }
 
diff --git a/src/katePosInterpreter.h b/src/ovt_kate/katePosInterpreter.h
similarity index 100%
rename from src/katePosInterpreter.h
rename to src/ovt_kate/katePosInterpreter.h
diff --git a/src/kateStreamParameter.cpp b/src/ovt_kate/kateStreamParameter.cpp
similarity index 82%
rename from src/kateStreamParameter.cpp
rename to src/ovt_kate/kateStreamParameter.cpp
index a260636..1bcd5e4 100644
--- a/src/kateStreamParameter.cpp
+++ b/src/ovt_kate/kateStreamParameter.cpp
@@ -28,23 +28,23 @@ bool KateStreamParameter::operator==(const StreamParameter& _param)
   if ((granulerateNum != param->granulerateNum) ||
       (granulerateDenom != param->granulerateDenom)) {
     logger.error() << "kate parameter compare: granulerate does not match: "
-    << granulerateNum << "/" << param->granulerateDenom
-    << " != " << param->granulerateNum << "/" << param->granulerateDenom
-    << std::endl;
+                   << granulerateNum << "/" << param->granulerateDenom
+                   << " != " << param->granulerateNum << "/" << param->granulerateDenom
+                   << std::endl;
     return(false);
   }
 
   if (language != param->language) {
     logger.error() << "kate parameter compare: language does not match: "
-    << language << param->language
-    << std::endl;
+                   << language << param->language
+                   << std::endl;
     return(false);
   }
 
   if (category != param->category) {
     logger.error() << "kate parameter compare: category does not match: "
-    << category << param->category
-    << std::endl;
+                   << category << param->category
+                   << std::endl;
     return(false);
   }
 
diff --git a/src/kateStreamParameter.h b/src/ovt_kate/kateStreamParameter.h
similarity index 100%
rename from src/kateStreamParameter.h
rename to src/ovt_kate/kateStreamParameter.h
diff --git a/src/ovt_theora/CMakeLists.txt b/src/ovt_theora/CMakeLists.txt
new file mode 100644
index 0000000..6d7c43a
--- /dev/null
+++ b/src/ovt_theora/CMakeLists.txt
@@ -0,0 +1,11 @@
+SET ( LIBRARY_THEORA_SRC
+      theoraEncoder.cpp
+      theoraDecoder.cpp  
+      theoraExtractor.cpp  
+      theoraPosInterpreter.cpp
+      theoraStreamParameter.cpp
+    )
+#      theoraConfig.cpp
+
+ADD_LIBRARY ( ovttheora ${LIBRARY_THEORA_SRC} )
+
diff --git a/src/theoraDecoder.cpp b/src/ovt_theora/theoraDecoder.cpp
similarity index 92%
rename from src/theoraDecoder.cpp
rename to src/ovt_theora/theoraDecoder.cpp
index a3d40be..9e17ace 100644
--- a/src/theoraDecoder.cpp
+++ b/src/ovt_theora/theoraDecoder.cpp
@@ -37,8 +37,8 @@
 #include "log.h"
 
 TheoraDecoder::TheoraDecoder(uint8 _streamID) :
-    MediaOutputDecoder(_streamID), setupInfo(NULL), theoraDecState(NULL),
-    initCount(0)
+  MediaOutputDecoder(_streamID), setupInfo(NULL), theoraDecState(NULL),
+  initCount(0)
 {
 }
 
@@ -84,7 +84,7 @@ void TheoraDecoder::initDecoder(StreamConfig& config,
     /* Insert the header
      * Give an error message if the data does not fit the current codec */
     int retVal = th_decode_headerin(&theoraInfo, &theoraComment,
-                                    &setupInfo, config.headerList[i].obj());
+                                    &setupInfo, config.headerList[i]->getUnderlayingOggPacketPtr());
     if (retVal <= 0) {
       // TODO: cleanup everything that has been set up until now
       th_comment_clear(&theoraComment);
@@ -181,12 +181,12 @@ MediaOutputDecoder& TheoraDecoder::operator<<(OggPacket packet)
 
 bool TheoraDecoder::isNextPacketKeyframe()
 {
-  return ((th_packet_iskeyframe(packetList.front().obj()) == 1));
+  return ((th_packet_iskeyframe(packetList.front()->getUnderlayingOggPacketPtr()) == 1));
 }
 
 bool TheoraDecoder::isPacketKeyframe(OggPacket packet)
 {
-  return ((th_packet_iskeyframe(packet.obj()) == 1));
+  return ((th_packet_iskeyframe(packet->getUnderlayingOggPacketPtr()) == 1));
 }
 
 uint32 TheoraDecoder::getPositionOfNextPacket()
@@ -212,7 +212,7 @@ TheoraDecoder& TheoraDecoder::operator>>(th_ycbcr_buffer& picture)
   /* insert the packet into the theora decoder */
   ogg_int64_t dummy;
   int result;
-  result = th_decode_packetin(theoraDecState, packet.obj(), &dummy);
+  result = th_decode_packetin(theoraDecState, packet->getUnderlayingOggPacketPtr(), &dummy);
   if (result != 0 && result != TH_DUPFRAME) {
     reportTheoraError(result);
   }
@@ -306,37 +306,37 @@ std::string TheoraDecoder::configuration() const
   stream << "Theora Decoder Configuration:"<<std::endl;
   stream << std::endl;
   stream << "Theora Version   : " << (int)theoraInfo.version_major << "."
-  << (int)theoraInfo.version_minor << "." << (int)theoraInfo.version_subminor
-  << std::endl;
+         << (int)theoraInfo.version_minor << "." << (int)theoraInfo.version_subminor
+         << std::endl;
   stream << std::endl;
   stream << "Video Size       : " << theoraInfo.pic_width << " x "
-  << theoraInfo.pic_height<<std::endl;
+         << theoraInfo.pic_height<<std::endl;
 
   if ((theoraInfo.pic_width != theoraInfo.frame_width)
       || (theoraInfo.pic_height != theoraInfo.frame_height)) {
 
     stream << " - Frame Size    : " << theoraInfo.frame_width << " x "
-    << theoraInfo.frame_height << std::endl;
+           << theoraInfo.frame_height << std::endl;
     stream << " - Offset        : " << theoraInfo.pic_x << " x "
-    << theoraInfo.pic_y << std::endl;
+           << theoraInfo.pic_y << std::endl;
 
   }
 
   stream << "Keyframe Shift   : " <<(uint32)(1
-      << theoraInfo.keyframe_granule_shift)<<" frames "<<std::endl;
+         << theoraInfo.keyframe_granule_shift)<<" frames "<<std::endl;
   stream << "Aspect Ratio     : " << theoraInfo.aspect_numerator << " : "
-  << theoraInfo.aspect_denominator << std::endl;
+         << theoraInfo.aspect_denominator << std::endl;
   stream << "Framerate        : " << theoraInfo.fps_numerator << " / "
-  << theoraInfo.fps_denominator << "\n";
+         << theoraInfo.fps_denominator << "\n";
   stream << std::endl;
   stream << "Quality          : " << theoraInfo.quality << " / 64"
-  << std::endl;
+         << std::endl;
   stream << "Datarate         : " << theoraInfo.target_bitrate << std::endl;
   stream << "Pixel Format     : ";
   switch (theoraInfo.pixel_fmt) {
   case TH_PF_420:
     stream << "420 (Chroma decimination by 2 in both directions)"
-    <<std::endl;
+           <<std::endl;
     break;
   case TH_PF_422:
     stream << "422 (Chroma decimination by 2 in X direction)"<<std::endl;
diff --git a/src/theoraDecoder.h b/src/ovt_theora/theoraDecoder.h
similarity index 100%
rename from src/theoraDecoder.h
rename to src/ovt_theora/theoraDecoder.h
diff --git a/src/theoraEncoder.cpp b/src/ovt_theora/theoraEncoder.cpp
similarity index 89%
rename from src/theoraEncoder.cpp
rename to src/ovt_theora/theoraEncoder.cpp
index db2215a..e186a0d 100644
--- a/src/theoraEncoder.cpp
+++ b/src/ovt_theora/theoraEncoder.cpp
@@ -36,7 +36,7 @@
 #include "log.h"
 
 TheoraEncoder::TheoraEncoder(uint8 _streamNo)
-    : MediaInputEncoder(_streamNo), packetCounter(0)
+  : MediaInputEncoder(_streamNo), packetCounter(0)
 {
   th_comment_init(&theoraComment);
 }
@@ -49,13 +49,11 @@ TheoraEncoder::~TheoraEncoder()
   th_info_clear(&theoraInfo);
   th_comment_clear(&theoraComment);
 
-  // the original packet is owned by the encoder, so we are not allowed to delete it
-  packet.packet = 0;
 }
 
 void TheoraEncoder::createHeader(std::vector<OggPacket>& headerList, std::vector<OggComment>& oggComments)
 {
-  int32 encodeRetID;
+  int32 encodeRetID(1);
 
   th_comment_add_tag(&theoraComment,"ENCODER",PACKAGE_STRING);
 
@@ -63,19 +61,21 @@ void TheoraEncoder::createHeader(std::vector<OggPacket>& headerList, std::vector
   for (uint32 i(0); i<oggComments.size(); ++i)
     th_comment_add_tag(&theoraComment, (char*) oggComments[i].tag.c_str(), (char*) oggComments[i].value.c_str());
 
-
-  while ((encodeRetID = th_encode_flushheader(theoraState, &theoraComment, &packet)) > 0) {
-//    ost::slog(ost::Slog::levelDebug) << "TheoraEncoder:: inserting header/n";
+  while (encodeRetID > 0) {
+    OggPacket packet = std::make_shared<OggPacketInternal>();
+    encodeRetID = th_encode_flushheader(theoraState, &theoraComment, packet->getUnderlayingOggPacketPtr());
+    //    ost::slog(ost::Slog::levelDebug) << "TheoraEncoder:: inserting header/n";
 
 #ifdef DEBUG
     logger.debug() << "Theora Packet Number: "<< packet.packetno << "reset to 0" << std::endl;
 #endif
 
-    packet.streamType   = ogg_theora;
-    packet.streamNo     = streamNo;
-    packet.streamHeader = true;
-    packet.packetno     = 0;
-    headerList.push_back(OggPacket(packet.clone()));
+    packet->setStreamType(OggType::theora);
+    packet->setStreamNo(streamNo);
+    packet->setStreamHeader();
+    packet->setPacketno(0);
+
+    headerList.push_back(packet);
 
   }
 
@@ -156,6 +156,7 @@ void TheoraEncoder::configureEncoder(StreamConfig& streamConf, std::vector<OggCo
     theoraInfo.pixel_fmt      = TH_PF_420; // most likly this format
     break;
   }
+
   theoraInfo.target_bitrate     = config->videoBitrate;
   theoraInfo.quality            = config->videoQuality;
   theoraInfo.keyframe_granule_shift = config->keyframeShift; // 6 bit to distinguish interframes
@@ -173,7 +174,7 @@ void TheoraEncoder::configureEncoder(StreamConfig& streamConf, std::vector<OggCo
 
   streamConf.serialNo = rand();
   streamConf.streamNo = streamNo;
-  streamConf.type = ogg_theora;
+  streamConf.type = OggType::theora;
   streamConf.numOfHeaderPackets = streamConf.headerList.size();
 
 
@@ -189,7 +190,7 @@ MediaInputEncoder& TheoraEncoder::operator >>(OggPacket& packet)
   packet = packetList.front();
   packetList.pop_front();
 
-  packet.obj()->packetno = packetCounter++;
+  packet->setPacketno(packetCounter++);
 
   if (packetList.empty())
     setEmpty();
@@ -208,24 +209,27 @@ MediaInputEncoder& TheoraEncoder::operator <<(th_ycbcr_buffer buffer)
       throw OggException("TheoraEncoder::operator <<: encoder or video buffer is NULL");
     if (errID == TH_EINVAL) {
       logger.debug() << "Size of picture "<<buffer[0].width << " x " << buffer[0].height<< " encoder wants "
-      << std::endl;
+                     << std::endl;
       throw OggException("TheoraEncoder::operator <<: buffer size does not match the frame size the encoder was initialized with, or encoding has already completed");
     }
   }
 
-  int32 encodeRetID;
+  int32 encodeRetID(1);
 
-  while ((encodeRetID = th_encode_packetout(theoraState, 0, &packet)) > 0) {
+  while ( encodeRetID > 0) {
 
+    OggPacket packet = std::make_shared<OggPacketInternal>();
+
+    encodeRetID = th_encode_packetout(theoraState, 0, packet->getUnderlayingOggPacketPtr());
 #ifdef DEBUG
     logger.debug() << "Theora Packet Number: "<< packet.packetno<<std::endl;
     logger.debug() << "Theora Packet Length: "<< packet.bytes<<std::endl;
 #endif
 
-    packet.streamType   = ogg_theora;
-    packet.streamNo     = streamNo;
-    packet.streamHeader = false;
-    packetList.push_back(OggPacket(packet.clone()));
+    packet->setStreamType(OggType::theora);
+    packet->setStreamNo(streamNo);
+
+    packetList.push_back(packet);
 
 
     // This is not really nice, but there is no function available to tell us
@@ -268,7 +272,7 @@ std::string TheoraEncoder::configuration() const
   stream << "Stream No: "<<(int)streamNo<<std::endl;
   stream << std::endl;
   stream << "Theora Version   : " << (int) theoraInfo.version_major << "." << (int) theoraInfo.version_minor
-  << "." << (int) theoraInfo.version_subminor << std::endl;
+         << "." << (int) theoraInfo.version_subminor << std::endl;
   stream << std::endl;
   stream << "Video Size       : " << theoraInfo.pic_width << " x " << theoraInfo.pic_height<<std::endl;
 
diff --git a/src/theoraEncoder.h b/src/ovt_theora/theoraEncoder.h
similarity index 97%
rename from src/theoraEncoder.h
rename to src/ovt_theora/theoraEncoder.h
index 07d837e..5fce4fa 100644
--- a/src/theoraEncoder.h
+++ b/src/ovt_theora/theoraEncoder.h
@@ -30,8 +30,6 @@ protected:
   th_comment           theoraComment;
   th_info              theoraInfo;
 
-  OggPacketInternal    packet;
-
   std::list<OggPacket> packetList;
 
   void createHeader(std::vector<OggPacket>& headerList, std::vector<OggComment>& oggComments);
diff --git a/src/theoraExtractor.cpp b/src/ovt_theora/theoraExtractor.cpp
similarity index 91%
rename from src/theoraExtractor.cpp
rename to src/ovt_theora/theoraExtractor.cpp
index 6939789..9b4b15e 100644
--- a/src/theoraExtractor.cpp
+++ b/src/ovt_theora/theoraExtractor.cpp
@@ -70,7 +70,7 @@ bool TheoraExtractor::_extract(uint8* data, ExtractorInformation& info)
   info.parameter = param;
 
   /* set the ogg type and the number of header packets */
-  info.type = ogg_theora;
+  info.type = OggType::theora;
   info.numOfHeaderPackets = 3; // the first three packets are headers
 
   return(true);
@@ -79,14 +79,15 @@ bool TheoraExtractor::_extract(uint8* data, ExtractorInformation& info)
 bool TheoraExtractor::extract(OggPage& oggPage, ExtractorInformation& information)
 {
   /* if this is not a Begin Of Stream page, return immediately */
-  if (!oggPage.isBOS()) {
+  if (!oggPage->isBOS()) {
     logger.error() << "TheoraPosInterpreter::extract: This page is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
+  uint8_t* dataPtr = &(oggPage->data())[0];
   /* get the information starting points within the raw data */
-  OggHeader* oggHeader  = (OggHeader*) (oggPage.data());
-  uint8*     data       = (oggPage.data() + sizeof(OggHeader) + oggHeader->tableSegments);
+  OggHeader* oggHeader  = (OggHeader*) dataPtr;
+  uint8*     data       = dataPtr + sizeof(OggHeader) + oggHeader->tableSegments;
 
   if (_extract(data, information) == false)
     return(false);
@@ -99,12 +100,12 @@ bool TheoraExtractor::extract(OggPage& oggPage, ExtractorInformation& informatio
 bool TheoraExtractor::extract(OggPacket& packet, ExtractorInformation& information)
 {
   // if this is not a Begin Of Stream page, return immediately
-  if (!packet.isBOS()) {
+  if (!packet->isBOS()) {
     logger.error() << "TheoraPosInterpreter::extract: This packet is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
-  if (_extract(packet.data(), information) == false)
+  if (_extract(packet->data(), information) == false)
     return(false);
 
   return(true);
diff --git a/src/theoraExtractor.h b/src/ovt_theora/theoraExtractor.h
similarity index 100%
rename from src/theoraExtractor.h
rename to src/ovt_theora/theoraExtractor.h
diff --git a/src/theoraHeader.h b/src/ovt_theora/theoraHeader.h
similarity index 100%
rename from src/theoraHeader.h
rename to src/ovt_theora/theoraHeader.h
diff --git a/src/theoraPosInterpreter.cpp b/src/ovt_theora/theoraPosInterpreter.cpp
similarity index 96%
rename from src/theoraPosInterpreter.cpp
rename to src/ovt_theora/theoraPosInterpreter.cpp
index da42c84..673e59c 100644
--- a/src/theoraPosInterpreter.cpp
+++ b/src/ovt_theora/theoraPosInterpreter.cpp
@@ -7,7 +7,7 @@
 
 
 TheoraPosInterpreter::TheoraPosInterpreter()
-    : keyframeShift(6), framerateNumerator(1), framerateDenominator(1)
+  : keyframeShift(6), framerateNumerator(1), framerateDenominator(1)
 {
 }
 
@@ -207,14 +207,14 @@ GranulePosInterpreter& TheoraPosInterpreter::operator+=(GranulePosInterpreter& _
 bool TheoraPosInterpreter::packetIsKeyframe(OggPacket& packet)
 {
   // is there any data available
-  if (packet.length()<=0)
+  if (packet->length()<=0)
     return(false);
 
-  if (packet.data()[0]&0x80) {
+  if (packet->data()[0]&0x80) {
     return(false);
   }
 
-  if (!(packet.data()[0]&0x40)) {
+  if (!(packet->data()[0]&0x40)) {
     return(true);
   }
 
@@ -229,7 +229,7 @@ void TheoraPosInterpreter::setStreamPosition(OggPacket& packet)
   else
     actualGranulePosition+=1;
 
-  packet.setGranulepos(actualGranulePosition);
+  packet->setGranulepos(actualGranulePosition);
 }
 
 
diff --git a/src/theoraPosInterpreter.h b/src/ovt_theora/theoraPosInterpreter.h
similarity index 100%
rename from src/theoraPosInterpreter.h
rename to src/ovt_theora/theoraPosInterpreter.h
diff --git a/src/theoraStreamParameter.cpp b/src/ovt_theora/theoraStreamParameter.cpp
similarity index 82%
rename from src/theoraStreamParameter.cpp
rename to src/ovt_theora/theoraStreamParameter.cpp
index 8955251..9d0ec83 100644
--- a/src/theoraStreamParameter.cpp
+++ b/src/ovt_theora/theoraStreamParameter.cpp
@@ -28,25 +28,25 @@ bool TheoraStreamParameter::operator==(const StreamParameter& _param)
   if ((framerateNum != param->framerateNum) ||
       (framerateDenom != param->framerateDenom)) {
     logger.error() << "theora parameter compare: framerate does not match: "
-    << framerateNum << "/" << param->framerateDenom
-    << " != " << param->framerateNum << "/" << param->framerateDenom
-    << std::endl;
+                   << framerateNum << "/" << param->framerateDenom
+                   << " != " << param->framerateNum << "/" << param->framerateDenom
+                   << std::endl;
     return(false);
   }
 
   if ((pictureX != param->pictureX) ||
       (pictureY  != param->pictureY)) {
     logger.error() << "theora parameter compare: height or width are not matching:"
-    << pictureX << ":" << pictureY << " != "
-    << param->pictureX << ":" << param->pictureY << "\n";
+                   << pictureX << ":" << pictureY << " != "
+                   << param->pictureX << ":" << param->pictureY << "\n";
     return(false);
   }
 
   if ((frameX != param->frameX) ||
       (frameY != param->frameY)) {
     logger.error() << "theora parameter compare: frame height or width are not matching:"
-    << frameX << ":" << frameY << " != "
-    << param->frameX << ":" << param->frameY << "\n";
+                   << frameX << ":" << frameY << " != "
+                   << param->frameX << ":" << param->frameY << "\n";
     return(false);
   }
 
@@ -67,8 +67,8 @@ std::string TheoraStreamParameter::toString()
 
   stream << std::endl;
   stream << "Size         : " << pictureX << " x " << pictureY
-  << " (Frame Size : " << frameX << " x" << frameY << " )\n"
-  << "KeyframeShift: " <<(uint32)keyframeShift<<std::endl;
+         << " (Frame Size : " << frameX << " x" << frameY << " )\n"
+         << "KeyframeShift: " <<(uint32)keyframeShift<<std::endl;
   stream << "Aspect Ratio : " << aspectRatioNum << ":" << aspectRatioDenom << std::endl;
   stream << "Framerate    : " << framerateNum <<"/"<<framerateDenom << "\n";
 
diff --git a/src/theoraStreamParameter.h b/src/ovt_theora/theoraStreamParameter.h
similarity index 100%
rename from src/theoraStreamParameter.h
rename to src/ovt_theora/theoraStreamParameter.h
diff --git a/src/ovt_vorbis/CMakeLists.txt b/src/ovt_vorbis/CMakeLists.txt
new file mode 100644
index 0000000..0bf0e8c
--- /dev/null
+++ b/src/ovt_vorbis/CMakeLists.txt
@@ -0,0 +1,11 @@
+SET ( LIBRARY_VORBIS_SRC
+      vorbisDecoder.cpp  
+      vorbisEncoder.cpp  
+      vorbisExtractor.cpp  
+      vorbisPosInterpreter.cpp  
+      vorbisStreamParameter.cpp
+      audioPacket.cpp
+    )
+
+ADD_LIBRARY ( ovtvorbis STATIC ${LIBRARY_VORBIS_SRC} )
+
diff --git a/src/audioPacket.cpp b/src/ovt_vorbis/audioPacket.cpp
similarity index 57%
rename from src/audioPacket.cpp
rename to src/ovt_vorbis/audioPacket.cpp
index 39b2b9b..ed86201 100644
--- a/src/audioPacket.cpp
+++ b/src/ovt_vorbis/audioPacket.cpp
@@ -5,7 +5,7 @@
 #include "log.h"
 
 AudioPacketInternal::AudioPacketInternal() :
-    pcmData(0), length(0), channels(0)
+  pcmData(0), length(0), channels(0)
 {
 }
 
@@ -15,7 +15,7 @@ AudioPacketInternal::~AudioPacketInternal()
 }
 
 AudioPacketInternal::AudioPacketInternal(const AudioPacketInternal& packet) :
-    pcmData(0), length(packet.length), channels(packet.channels)
+  pcmData(0), length(packet.length), channels(packet.channels)
 {
   /* create memory region */
   initMem(channels, length);
@@ -27,7 +27,7 @@ AudioPacketInternal::AudioPacketInternal(const AudioPacketInternal& packet) :
 
 AudioPacketInternal::AudioPacketInternal(float** _dataPtr, uint32 _length,
     uint8 _channels) :
-    pcmData(0), length(_length), channels(_channels)
+  pcmData(0), length(_length), channels(_channels)
 {
   /* create memory region */
   initMem(channels, length);
@@ -39,7 +39,7 @@ AudioPacketInternal::AudioPacketInternal(float** _dataPtr, uint32 _length,
 }
 
 AudioPacketInternal::AudioPacketInternal(uint8 _channels, uint32 _length) :
-    length(_length), channels(_channels)
+  length(_length), channels(_channels)
 {
   /* create memory region */
   initMem(channels, length);
@@ -101,60 +101,3 @@ void AudioPacketInternal::cleanup()
   length = 0;
 }
 
-//----------------------------
-
-AudioPacket::AudioPacket()
-{
-//	logger.debug() << "constructor "<<(*refCounter)<<std::endl;
-}
-
-AudioPacket::AudioPacket(const AudioPacket& packet) :
-    RefObject<AudioPacketInternal>(packet)
-{
-//	logger.debug() << "copy constructor "<<(*refCounter)<<std::endl;
-}
-
-AudioPacket::AudioPacket(AudioPacketInternal* internalPacket) :
-    RefObject<AudioPacketInternal>(internalPacket)
-{
-//	logger.debug() << "new Instance by internal packet "<<(*refCounter)<<std::endl;
-
-}
-
-AudioPacket::~AudioPacket()
-{
-}
-
-AudioPacket& AudioPacket::operator=(const AudioPacket& packet)
-{
-//	logger.debug() << "operator= "<<(*refCounter)<<std::endl;
-
-  if (this == &packet)
-    return(*this);
-
-  (*refCounter)--;
-
-  if ((*refCounter) == 0) {
-    delete refCounter;
-    delete objPtr;
-  }
-
-  refCounter = packet.refCounter;
-  objPtr = packet.objPtr;
-
-  (*refCounter)++;
-
-  return(*this);
-}
-
-AudioPacketInternal* AudioPacket::operator*()
-{
-  return(objPtr);
-}
-
-AudioPacket AudioPacket::clone()
-{
-  AudioPacketInternal* newPacket = new AudioPacketInternal(*objPtr);
-
-  return (AudioPacket(newPacket));
-}
diff --git a/src/audioPacket.h b/src/ovt_vorbis/audioPacket.h
similarity index 63%
rename from src/audioPacket.h
rename to src/ovt_vorbis/audioPacket.h
index a0c85fa..508c9e5 100644
--- a/src/audioPacket.h
+++ b/src/ovt_vorbis/audioPacket.h
@@ -2,7 +2,7 @@
 #define audioPacket_h
 
 #include "definition.h"
-#include "refObject.h"
+#include <memory>
 
 class AudioPacketInternal {
 
@@ -19,7 +19,7 @@ public:
   AudioPacketInternal(const AudioPacketInternal& packet);
   AudioPacketInternal(uint8 channels, uint32 length);
   AudioPacketInternal(float** dataPtr, uint32 length, uint8 channels);
-  virtual ~AudioPacketInternal();
+  ~AudioPacketInternal();
 
   uint32 getLength() const;
   uint8 getChannels() const;
@@ -31,19 +31,6 @@ public:
   void cleanup();
 };
 
-class AudioPacket : public RefObject<AudioPacketInternal> {
-
-public:
-  AudioPacket();
-  AudioPacket(const AudioPacket& packet);
-  AudioPacket(AudioPacketInternal* internalPacket);
-  virtual ~AudioPacket();
-
-  AudioPacketInternal* operator*();
-  AudioPacket& operator=(const AudioPacket& packet);
-
-  AudioPacket clone();
-
-};
+typedef std::shared_ptr<AudioPacketInternal> AudioPacket;
 
 #endif
diff --git a/src/vorbisDecoder.cpp b/src/ovt_vorbis/vorbisDecoder.cpp
similarity index 95%
rename from src/vorbisDecoder.cpp
rename to src/ovt_vorbis/vorbisDecoder.cpp
index b99da9a..f87b863 100644
--- a/src/vorbisDecoder.cpp
+++ b/src/ovt_vorbis/vorbisDecoder.cpp
@@ -11,7 +11,7 @@
 #include "log.h"
 
 VorbisDecoder::VorbisDecoder(uint8 _streamID) :
-    MediaOutputDecoder(_streamID), initCount(0)
+  MediaOutputDecoder(_streamID), initCount(0)
 {
 
 }
@@ -57,7 +57,7 @@ void VorbisDecoder::initDecoder(StreamConfig& config, std::vector<OggComment>& o
 
     /* Einfügen der Header
      * Fehlermeldung, wenn die Daten nicht zum aktuellen Codec passen */
-    retVal = vorbis_synthesis_headerin(&vorbisInfo, &vorbisComment, config.headerList[i].obj());
+    retVal = vorbis_synthesis_headerin(&vorbisInfo, &vorbisComment, config.headerList[i]->getUnderlayingOggPacketPtr());
     if (retVal < 0) {
       vorbis_comment_clear(&vorbisComment);
       throw OggException("VorbisDecoder::initDecoder: packet is not a header");
@@ -107,7 +107,7 @@ MediaOutputDecoder& VorbisDecoder::operator<<(OggPacket packet)
     throw OggException("VorbisDecoder::operator<<: stream not configured");
   }
 
-  if (vorbis_synthesis(&vorbisBlock,packet.obj())==0)
+  if (vorbis_synthesis(&vorbisBlock,packet->getUnderlayingOggPacketPtr())==0)
     vorbis_synthesis_blockin(&vorbisDspState,&vorbisBlock);
 
   float** pcm;
@@ -140,7 +140,7 @@ VorbisDecoder& VorbisDecoder::operator>>(AudioPacket& audioPacket)
   audioPacket = packetList.front();
   packetList.pop_front();
 
-  sampleCounter += (*audioPacket)->getLength();
+  sampleCounter += audioPacket->getLength();
 
 //  logger.debug() << "  Sample counter: "<<sampleCounter;
   if (packetList.empty())
diff --git a/src/vorbisDecoder.h b/src/ovt_vorbis/vorbisDecoder.h
similarity index 96%
rename from src/vorbisDecoder.h
rename to src/ovt_vorbis/vorbisDecoder.h
index 515659f..3bcdfc2 100644
--- a/src/vorbisDecoder.h
+++ b/src/ovt_vorbis/vorbisDecoder.h
@@ -49,7 +49,8 @@ public:
   virtual void clear();
 
   virtual double getTimeOfNextPacket();
-  virtual uint32 getPositionOfNextPacket() {
+  virtual uint32 getPositionOfNextPacket()
+  {
     return packetCount;
   }
 
diff --git a/src/vorbisEncoder.cpp b/src/ovt_vorbis/vorbisEncoder.cpp
similarity index 73%
rename from src/vorbisEncoder.cpp
rename to src/ovt_vorbis/vorbisEncoder.cpp
index e7ec3c3..fb8f881 100644
--- a/src/vorbisEncoder.cpp
+++ b/src/ovt_vorbis/vorbisEncoder.cpp
@@ -12,7 +12,7 @@
 #include "log.h"
 
 VorbisEncoder::VorbisEncoder(uint8 _streamNo) :
-    MediaInputEncoder(_streamNo), pktCnt(0)
+  MediaInputEncoder(_streamNo), pktCnt(0)
 {
 }
 
@@ -24,7 +24,6 @@ VorbisEncoder::~VorbisEncoder()
     vorbis_block_clear(&vorbisBlock);
     vorbis_dsp_clear(&vorbisState);
     vorbis_info_clear(&vorbisInfo);
-    packet.packet = 0; // this has been deleted before
   }
 
 }
@@ -73,52 +72,54 @@ void VorbisEncoder::configureEncoder(StreamConfig& streamConfig, std::vector<Ogg
   vorbis_analysis_init(&vorbisState, &vorbisInfo);
   vorbis_block_init(&vorbisState, &vorbisBlock);
 
-  OggPacketInternal header;
-  OggPacketInternal header_comm;
-  OggPacketInternal header_code;
+  OggPacket header      = std::make_shared<OggPacketInternal>();
+  OggPacket header_comm = std::make_shared<OggPacketInternal>();
+  OggPacket header_code = std::make_shared<OggPacketInternal>();
 
-  vorbis_analysis_headerout(&vorbisState, &vorbisComment, &header,
-                            &header_comm, &header_code);
+  vorbis_analysis_headerout(&vorbisState, &vorbisComment,
+                            header->getUnderlayingOggPacketPtr(),
+                            header_comm->getUnderlayingOggPacketPtr(),
+                            header_code->getUnderlayingOggPacketPtr() );
 
-  header.streamType   = ogg_vorbis;
-  header.streamNo     = streamNo;
-  header.streamHeader = true;
+  header->setStreamType(OggType::vorbis);
+  header->setStreamNo(streamNo);
+  header->setStreamHeader();
 
 #ifdef DEBUG
   logger.debug() << "Vorbis Packet Number: "<< header.packetno << "reset to 0" << std::endl;
 #endif
-  header.packetno     = 0;
+  header->setPacketno(0);
 
-  streamConfig.headerList.push_back(OggPacket(header.clone()));
+  streamConfig.headerList.push_back(header);
 
-  header_comm.streamType   = ogg_vorbis;
-  header_comm.streamNo     = streamNo;
-  header_comm.streamHeader = true;
+  header_comm->setStreamType(OggType::vorbis);
+  header_comm->setStreamNo(streamNo);
+  header_comm->setStreamHeader();
 
 #ifdef DEBUG
   logger.debug() << "Vorbis Packet Number: "<< header_comm.packetno << "reset to 0" << std::endl;
 #endif
-  header_comm.packetno     = 0;
+  header_comm->setPacketno(0);
 
-  streamConfig.headerList.push_back(OggPacket(header_comm.clone()));
+  streamConfig.headerList.push_back(header_comm);
 
-  header_code.streamType   = ogg_vorbis;
-  header_code.streamNo     = streamNo;
-  header_code.streamHeader = true;
+  header_code->setStreamType(OggType::vorbis);
+  header_code->setStreamNo(streamNo);
+  header_code->setStreamHeader();
 
 #ifdef DEBUG
   logger.debug() << "Vorbis Packet Number: "<< header_code.packetno << "reset to 0" << std::endl;
 #endif
-  header_code.packetno     = 0;
+  header_code->setPacketno(0);
 
-  streamConfig.headerList.push_back(OggPacket(header_code.clone()));
+  streamConfig.headerList.push_back(header_code);
 
   VorbisExtractor extractor;
   extractor.extract(streamConfig.headerList[0], streamConfig);
 
   streamConfig.numOfHeaderPackets = streamConfig.headerList.size();
 //	streamConfig.parameter = new VorbisStreamParameter(config);
-  streamConfig.type = ogg_vorbis;
+  streamConfig.type = OggType::vorbis;
   streamConfig.streamNo = streamNo;
   streamConfig.serialNo = rand();
 
@@ -129,25 +130,20 @@ void VorbisEncoder::configureEncoder(StreamConfig& streamConfig, std::vector<Ogg
   // reset packet Counter, in case, the stream reconfigured
   pktCnt = 0;
 
-  /* The vorbis decoder is not the owner of these packets,
-   forget what we have seen */
-  header.packet = 0;
-  header_comm.packet = 0;
-  header_code.packet = 0;
 }
 
 MediaInputEncoder& VorbisEncoder::operator<<(AudioPacket& aPacket)
 {
-  float **buffer=vorbis_analysis_buffer(&vorbisState, (*aPacket)->getLength());
+  float **buffer=vorbis_analysis_buffer(&vorbisState, aPacket->getLength());
 
   /* there is no chance to give the data directly to the encoder
    * so we need to copy :-( */
   for (uint8 i(0); i<vorbisInfo.channels; ++i) {
-    memcpy(buffer[i], (*aPacket)->getDataOfChannel(i), (*aPacket)->getLength()*sizeof(float));
+    memcpy(buffer[i], aPacket->getDataOfChannel(i), aPacket->getLength()*sizeof(float));
   }
 
   /* tell the library how much we actually submitted */
-  if (vorbis_analysis_wrote(&vorbisState, (*aPacket)->getLength()) < 0)
+  if (vorbis_analysis_wrote(&vorbisState, aPacket->getLength()) < 0)
     throw OggException("VorbisEncoder::operator <<: Invalid value");
 
   /* vorbis does some data preanalysis, then divvies up blocks for
@@ -155,20 +151,21 @@ MediaInputEncoder& VorbisEncoder::operator<<(AudioPacket& aPacket)
    block for encoding now */
   while ((vorbis_analysis_blockout(&vorbisState, &vorbisBlock))==1) {
 
+    OggPacket packet = std::make_shared<OggPacketInternal>();
+
     /* analysis, assume we want to use bitrate management */
     vorbis_analysis(&vorbisBlock,0);
     vorbis_bitrate_addblock(&vorbisBlock);
 
-    while (vorbis_bitrate_flushpacket(&vorbisState, &packet)) {
+    while (vorbis_bitrate_flushpacket(&vorbisState, packet->getUnderlayingOggPacketPtr())) {
 //			logger.debug() << "Position: "<<packet.granulepos<<std::endl;
-      packet.streamType = ogg_vorbis;
-      packet.streamNo = streamNo;
-      packet.streamHeader = false;
+      packet->setStreamType(OggType::vorbis);
+      packet->setStreamNo(streamNo);
 #ifdef DEBUG
-      logger.debug() << "Vorbis Packet Number: "<< packet.packetno << std::endl;
+      logger.debug() << "Vorbis Packet Number: "<< packet->getPacketno() << std::endl;
 #endif
-      packet.packetno = pktCnt++;
-      packetList.push_back(OggPacket(packet.clone()));
+      packet->setPacketno(pktCnt++);
+      packetList.push_back(packet);
     }
   }
 
@@ -207,15 +204,18 @@ void VorbisEncoder::flush()
     vorbis_analysis(&vorbisBlock,0);
     vorbis_bitrate_addblock(&vorbisBlock);
 
-    while (vorbis_bitrate_flushpacket(&vorbisState, &packet)) {
+    bool do_flush(true);
+
+    while ( do_flush ) {
 //      logger.debug() << "Flush: "<<packet.granulepos<<std::endl;
+      OggPacket packet = std::make_shared<OggPacketInternal>();
+      do_flush = vorbis_bitrate_flushpacket(&vorbisState, packet->getUnderlayingOggPacketPtr());
+
+      packet->setStreamType(OggType::vorbis);
+      packet->setStreamNo(streamNo);
+      packet->setPacketno(pktCnt++);
 
-      packet.streamType   = ogg_vorbis;
-      packet.streamNo     = streamNo;
-      packet.streamHeader = false;
-      packet.packetno     = pktCnt++;
-      //packet.e_o_s        = 255;
-      packetList.push_back(OggPacket(packet.clone()));
+      packetList.push_back(packet);
     }
   }
 
diff --git a/src/vorbisEncoder.h b/src/ovt_vorbis/vorbisEncoder.h
similarity index 97%
rename from src/vorbisEncoder.h
rename to src/ovt_vorbis/vorbisEncoder.h
index f436253..8cf7cc6 100644
--- a/src/vorbisEncoder.h
+++ b/src/ovt_vorbis/vorbisEncoder.h
@@ -27,7 +27,7 @@ protected:
   vorbis_dsp_state vorbisState;
   vorbis_block vorbisBlock;
 
-  OggPacketInternal packet;
+//  OggPacket packet;
 
   std::list<OggPacket> packetList;
 
diff --git a/src/vorbisExtractor.cpp b/src/ovt_vorbis/vorbisExtractor.cpp
similarity index 87%
rename from src/vorbisExtractor.cpp
rename to src/ovt_vorbis/vorbisExtractor.cpp
index 0e96bfb..6cb12d6 100644
--- a/src/vorbisExtractor.cpp
+++ b/src/ovt_vorbis/vorbisExtractor.cpp
@@ -46,7 +46,7 @@ bool VorbisExtractor::_extract(uint8* data, ExtractorInformation& info)
   info.parameter = param;
 
   /* set the ogg type and the number of header packets */
-  info.type = ogg_vorbis;
+  info.type = OggType::vorbis;
   info.numOfHeaderPackets = 3; // the first three packets are headers
 
   return(true);
@@ -55,14 +55,15 @@ bool VorbisExtractor::_extract(uint8* data, ExtractorInformation& info)
 bool VorbisExtractor::extract(OggPage& oggPage, ExtractorInformation& information)
 {
   /* if this is not a Begin Of Stream page, return immediately */
-  if (!oggPage.isBOS()) {
+  if (!oggPage->isBOS()) {
     logger.error() << "VorbisPosInterpreter::extract: This page is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
+  uint8_t* dataPtr = &(oggPage->data())[0];
   /* get the information starting points within the raw data */
-  OggHeader* oggHeader  = (OggHeader*) (oggPage.data());
-  uint8*     data       = (oggPage.data() + sizeof(OggHeader) + oggHeader->tableSegments);
+  OggHeader* oggHeader  = (OggHeader*) dataPtr;
+  uint8*     data       = dataPtr + sizeof(OggHeader) + oggHeader->tableSegments;
 
   if (_extract(data, information) == false)
     return(false);
@@ -75,12 +76,12 @@ bool VorbisExtractor::extract(OggPage& oggPage, ExtractorInformation& informatio
 bool VorbisExtractor::extract(OggPacket& packet, ExtractorInformation& information)
 {
   /// if this is not a Begin Of Stream page, return immediately
-  if (!packet.isBOS()) {
+  if (!packet->isBOS()) {
     logger.error() << "VorbisPosInterpreter::extract: This page is not a BOS (Begin Of Stream) page\n";
     return(false);
   }
 
-  if (_extract(packet.data(), information) == false)
+  if (_extract(packet->data(), information) == false)
     return(false);
 
   return(true);
diff --git a/src/vorbisExtractor.h b/src/ovt_vorbis/vorbisExtractor.h
similarity index 100%
rename from src/vorbisExtractor.h
rename to src/ovt_vorbis/vorbisExtractor.h
diff --git a/src/vorbisHeader.h b/src/ovt_vorbis/vorbisHeader.h
similarity index 100%
rename from src/vorbisHeader.h
rename to src/ovt_vorbis/vorbisHeader.h
diff --git a/src/vorbisPosInterpreter.cpp b/src/ovt_vorbis/vorbisPosInterpreter.cpp
similarity index 96%
rename from src/vorbisPosInterpreter.cpp
rename to src/ovt_vorbis/vorbisPosInterpreter.cpp
index e121573..89c2376 100644
--- a/src/vorbisPosInterpreter.cpp
+++ b/src/ovt_vorbis/vorbisPosInterpreter.cpp
@@ -13,7 +13,7 @@ struct VorbisPackHeader {
 };
 
 VorbisPosInterpreter::VorbisPosInterpreter()
-    : samplerate(0), blocksize0(0), blocksize1(0), lastBlock(none)
+  : samplerate(0), blocksize0(0), blocksize1(0), lastBlock(none)
 {
 }
 
@@ -180,7 +180,7 @@ void VorbisPosInterpreter::setStreamPosition(OggPacket& packet)
 {
 //  packet.setGranulepos(getPosition());
 
-  VorbisPackHeader* packHead = (VorbisPackHeader*)(packet.data());
+  VorbisPackHeader* packHead = (VorbisPackHeader*)(packet->data());
 
   if (packHead->block)
     addBlock1();
@@ -188,7 +188,7 @@ void VorbisPosInterpreter::setStreamPosition(OggPacket& packet)
     addBlock0();
 
 //  logger.debug() << "Granule Position: "<<packet.granulepos();
-  packet.setGranulepos(getPosition());
+  packet->setGranulepos(getPosition());
 //  logger.debug() << "-> "<<packet.granulepos()<<std::endl;
 
 }
diff --git a/src/vorbisPosInterpreter.h b/src/ovt_vorbis/vorbisPosInterpreter.h
similarity index 100%
rename from src/vorbisPosInterpreter.h
rename to src/ovt_vorbis/vorbisPosInterpreter.h
diff --git a/src/vorbisStreamParameter.cpp b/src/ovt_vorbis/vorbisStreamParameter.cpp
similarity index 73%
rename from src/vorbisStreamParameter.cpp
rename to src/ovt_vorbis/vorbisStreamParameter.cpp
index e343e58..91d8dfe 100644
--- a/src/vorbisStreamParameter.cpp
+++ b/src/ovt_vorbis/vorbisStreamParameter.cpp
@@ -24,44 +24,44 @@ bool VorbisStreamParameter::operator==(const StreamParameter& _param)
 
   if (channels != param->channels) {
     logger.error() << "vorbis parameter compare: number of channels not matching "
-    << channels << " != " << param->channels
-    << std::endl;
+                   << channels << " != " << param->channels
+                   << std::endl;
     retValue = false;
   }
 
   if (samplerate != param->samplerate) {
     logger.error() << "vorbis parameter compare: sample rate not matching "
-    << samplerate << " != " << param->samplerate
-    << std::endl;
+                   << samplerate << " != " << param->samplerate
+                   << std::endl;
     retValue = false;
   }
 
   if (datarate != param->datarate) {
     logger.error() << "vorbis parameter compare: data rate not matching "
-    << datarate << " != " << param->datarate << std::endl;
+                   << datarate << " != " << param->datarate << std::endl;
 //		<< "This is not a blocker if all other parameters match" <<std::endl;
     retValue = false;
   }
 
   if (block0 != param->block0) {
     logger.error() << "vorbis parameter compare: size of block0 does not match "
-    << block0 << " != " << param->block0 << std::endl
-    << "You may try to reencode with the datarate of the other file"
-    << std::endl;
+                   << block0 << " != " << param->block0 << std::endl
+                   << "You may try to reencode with the datarate of the other file"
+                   << std::endl;
     retValue = false;
   }
 
   if (block1 != param->block1) {
     logger.error() << "vorbis parameter compare: size of block0 does not match "
-    << block1 << " != " << param->block1 << std::endl
-    << "You may try to reencode with the datarate of the other file"
-    << std::endl;
+                   << block1 << " != " << param->block1 << std::endl
+                   << "You may try to reencode with the datarate of the other file"
+                   << std::endl;
     retValue = false;
   }
 
   if (retValue == false) {
     logger.error() << "\nPlease try to resample with the following command\n"
-    << "oggResize";
+                   << "oggResize";
     if (channels != param->channels)
       logger.error() << " -N "<<channels;
     if (samplerate != param->samplerate)
@@ -78,8 +78,8 @@ std::string VorbisStreamParameter::toString()
 {
   std::stringstream stream;
   stream << "Vorbis Stream:\n" << "\twith " << channels << " channel(s)\n"
-  << "\tand  " << samplerate << " kHz sample rate\n" << "\tand  "
-  << datarate << " data rate\n\n";
+         << "\tand  " << samplerate << " kHz sample rate\n" << "\tand  "
+         << datarate << " data rate\n\n";
 
 //  logger.debug() << "block0: "<<block0<<"\nblock1: "<<block1<<"\n\n";
   return (stream.str());
diff --git a/src/vorbisStreamParameter.h b/src/ovt_vorbis/vorbisStreamParameter.h
similarity index 100%
rename from src/vorbisStreamParameter.h
rename to src/ovt_vorbis/vorbisStreamParameter.h
diff --git a/src/rawMediaPacket.cpp b/src/rawMediaPacket.cpp
deleted file mode 100644
index 05d7e9e..0000000
--- a/src/rawMediaPacket.cpp
+++ /dev/null
@@ -1,110 +0,0 @@
-/*
- * RawMediaPacket class to carry a raw bunch of data
- *
- * Copyright (C) 2005-2008 Joern Seger
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- */
-
-#include <string.h>
-#include "rawMediaPacket.h"
-
-RawMediaData::RawMediaData()
-    : data(0), length(0)
-{
-}
-
-RawMediaData::RawMediaData(uint8* _data, uint32 _length, bool copy)
-{
-  if (copy)
-    memcpy(data=new unsigned char[_length], _data, length=_length);
-  else {
-    data = _data;
-    length = _length;
-  }
-}
-
-RawMediaData::~RawMediaData()
-{
-  if (data)
-    delete[] data;
-}
-
-uint8* RawMediaData::getData(uint32& _length)
-{
-  _length = length;
-  return(data);
-}
-
-uint8* RawMediaData::getData()
-{
-  return(data);
-}
-
-void RawMediaData::setData(uint8* _data, uint32 _length, bool copy)
-{
-  if (data)
-    delete[] data;
-
-  length = _length;
-
-  if (copy)
-    memcpy(data=new unsigned char[length], _data, length);
-  else
-    data = _data;
-
-}
-
-uint32 RawMediaData::size()
-{
-  return(length);
-}
-
-/*********************************/
-
-RawMediaPacket::RawMediaPacket()
-{
-}
-
-RawMediaPacket::RawMediaPacket(const RawMediaPacket& packet)
-    : RefObject<RawMediaData>(packet)
-{
-}
-
-RawMediaPacket::RawMediaPacket(RawMediaData* dataPtr)
-    : RefObject<RawMediaData>(dataPtr)
-{
-}
-
-RawMediaPacket::~RawMediaPacket()
-{
-}
-
-uint8* RawMediaPacket::getData(uint32& length)
-{
-  return(objPtr->getData(length));
-}
-
-uint8* RawMediaPacket::getData()
-{
-  return(objPtr->getData());
-}
-
-uint32 RawMediaPacket::size()
-{
-  return(objPtr->size());
-}
-
diff --git a/src/ringbuffer.cpp b/src/ringbuffer.cpp
deleted file mode 100644
index f8dcc7b..0000000
--- a/src/ringbuffer.cpp
+++ /dev/null
@@ -1,198 +0,0 @@
-/*
- * simple ring buffer
- *
- * Copyright (C) 2005-2008 Joern Seger
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
-
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
-
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
- *
- */
-
-#include <string.h>
-#include "ringbuffer.h"
-#include "exception.h"
-#include "log.h"
-
-ringbuffer::ringbuffer(unsigned int buffersize)
-    : size(buffersize), used(0), begin(0), end(0)
-{
-  lock();
-  fifo = new unsigned char[buffersize];
-  unlock();
-}
-
-ringbuffer::ringbuffer(unsigned char* data, unsigned int len)
-    : size(len), used(len), begin(0), end(0)
-{
-  // gonna make a copy for safety:
-  lock();
-  fifo = new unsigned char[len];
-  memcpy(fifo, data, len);
-  unlock();
-}
-
-ringbuffer::~ringbuffer()
-{
-  delete[] fifo;
-}
-
-unsigned int ringbuffer::addData(const unsigned char* data, unsigned int len)
-{
-  lock();
-
-  if ((!len) || (!data)) {
-    unlock();
-    return(0);
-  }
-
-  if (len > size) {
-    unlock();
-    throw OggException("Ring buffer write overflow");
-  }
-  if (begin+len < size) {
-    memcpy(fifo+begin,data,len);
-  } else {
-    // split
-    int part1 = (size - begin);
-    int part2 = len - part1;
-    memcpy(fifo+begin,data,part1);
-    memcpy(fifo,data+part1,part2);
-  }
-
-  begin += len;
-  begin %= size;
-
-  if (len > (size-used)) {
-    throw OggException("Ring buffer overrun");
-  } else {
-    used += len;
-  }
-
-  unlock();
-
-  return (len);
-
-}
-
-unsigned int ringbuffer::getData(unsigned char* data, unsigned int len)
-{
-  lock();
-
-  if (used < len)
-    len = used;
-
-  if (len > size) {
-    throw OggException("Ring buffer read overflow");
-  }
-  if (size < (end + len)) {
-    // split
-    int part1 = size - end;
-    int part2 = len - part1;
-    memcpy(data, fifo+end, part1);
-    memcpy(data+part1, fifo, part2);
-  } else
-    memcpy(data, fifo+end, len);
-
-  end += len;
-  end %= size;
-  used -= len;
-
-  /*
-  for(unsigned int i=0; i<len; ++i) {
-    data[i] = fifo[end++];
-    end %= size;
-  }
-  */
-
-  unlock();
-
-  return (len);
-}
-
-unsigned int ringbuffer::getAvailable()
-{
-  unsigned int retValue;
-
-  lock();
-  retValue = size-used;
-  unlock();
-
-  return(retValue);
-}
-
-unsigned int ringbuffer::getUsed()
-{
-  unsigned int retValue;
-
-  lock();
-  retValue = used;
-  unlock();
-
-  return(retValue);
-}
-
-void ringbuffer::clean()
-{
-  lock();
-  begin = end = used = 0;
-  unlock();
-}
-
-unsigned int ringbuffer::peekBack(unsigned char* data, unsigned int len)
-{
-  lock();
-  if (len>used)
-    len = used;
-
-  int tmpEnd = begin-1;
-  for (int i=len-1; i>=0; --i) {
-    if (tmpEnd < 0)
-      tmpEnd = size-1;
-    data[i] = fifo[tmpEnd--];
-  }
-  unlock();
-
-  return (len);
-}
-
-unsigned int ringbuffer::peekFront(unsigned char* data, unsigned int len)
-{
-  lock();
-  if (used < len)
-    len = used;
-
-  unsigned int tmpEnd = end;
-  for (unsigned int i=0; i<len; ++i) {
-    data[i] = fifo[tmpEnd++];
-    tmpEnd %= size;
-  }
-  unlock();
-
-  return (len);
-}
-
-unsigned int ringbuffer::inc(unsigned int len)
-{
-  lock();
-  if (used < len)
-    len = used;
-
-  end += len;
-  end %= size;
-  used -= len;
-
-  unlock();
-
-  return (len);
-}
diff --git a/src/theoraConfig.cpp b/src/theoraConfig.cpp
new file mode 100644
index 0000000..0675d20
--- /dev/null
+++ b/src/theoraConfig.cpp
@@ -0,0 +1,9 @@
+#include "theoraConfig.h"
+
+TheoraConfig::TheoraConfig()
+{
+}
+
+TheoraConfig::~TheoraConfig()
+{
+}
diff --git a/src/theoraConfig.h b/src/theoraConfig.h
new file mode 100644
index 0000000..2f88094
--- /dev/null
+++ b/src/theoraConfig.h
@@ -0,0 +1,31 @@
+#ifndef THEORACONFIG_H_
+#define THEORACONFIG_H_
+
+#include "definition.h"
+
+#include "mediaConfig.h"
+
+class TheoraConfig : public MediaConfig {
+public:
+  TheoraConfig();
+  virtual ~TheoraConfig();
+
+  uint32 pictureX;
+  uint32 pictureY;
+  uint32 frameX;
+  uint32 frameY;
+  uint32 frameXOffset;
+  uint32 frameYOffset;
+
+  uint32 aspectRatioNum;
+  uint32 aspectRatioDedum;
+
+  uint32 framerateNum;
+  uint32 framerateDenum;
+
+  uint32 videoQuality;
+  uint32 videoBitrate;
+
+};
+
+#endif /*THEORACONFIG_H_*/
diff --git a/src/theoraVideoPacket.cpp b/src/theoraVideoPacket.cpp
new file mode 100644
index 0000000..79fe9c1
--- /dev/null
+++ b/src/theoraVideoPacket.cpp
@@ -0,0 +1,94 @@
+/*
+ * TheoraVideoPacket
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+
+#include "theoraVideoPacket.h"
+
+#ifdef HAVE_LIBTHEORA
+
+TheoraVideoPacket::TheoraVideoPacket()
+{}
+
+TheoraVideoPacket::TheoraVideoPacket(TheoraVideoPacket& packet)
+  : RefObject<VideoData>(packet)
+{}
+
+TheoraVideoPacket::~TheoraVideoPacket()
+{}
+
+uint64 TheoraVideoPacket::getGranulePosition()
+{
+  if (objPtr)
+    return (objPtr->granulePosition);
+
+  return(0);
+}
+
+double TheoraVideoPacket::getTime()
+{
+  if (objPtr)
+    return (objPtr->time);
+
+  return(0);
+}
+
+bool TheoraVideoPacket::isKeyFrame()
+{
+  if (objPtr)
+    return (objPtr->keyframe);
+
+  return(0);
+}
+
+yuv_buffer& TheoraVideoPacket::getYuvBuffer()
+{
+  if (objPtr)
+    return (objPtr->yuvBuffer);
+
+  static yuv_buffer dummy;
+
+  return(dummy);
+}
+
+void TheoraVideoPacket::setGranulePosition(uint64 position)
+{
+  if (objPtr)
+    objPtr->granulePosition = position;
+}
+
+void TheoraVideoPacket::setTime(double picTime)
+{
+  if (objPtr)
+    objPtr->time = picTime;
+}
+
+void TheoraVideoPacket::setKeyFrame(bool isKFrame)
+{
+  if (objPtr)
+    objPtr->keyframe = isKFrame;
+}
+
+void TheoraVideoPacket::setYuvBuffer(yuv_buffer& buffer)
+{
+  if (objPtr)
+    objPtr->yuvBuffer = buffer;
+}
+
+#endif
diff --git a/src/theoraVideoPacket.h b/src/theoraVideoPacket.h
new file mode 100644
index 0000000..70486f4
--- /dev/null
+++ b/src/theoraVideoPacket.h
@@ -0,0 +1,72 @@
+/*
+ * theoraVideoPacket
+ *
+ * Copyright (C) 2008 Joern Seger
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ *
+ */
+#ifndef THEORAVIDEOPACKET_H_
+#define THEORAVIDEOPACKET_H_
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#else
+#warning only use with autotools
+#endif
+
+#ifdef HAVE_LIBTHEORA
+
+#include <theora/theora.h>
+#include "refObject.h"
+#include "definition.h"
+
+class VideoData {
+
+public:
+
+  yuv_buffer yuvBuffer;
+
+  uint64     granulePosition;
+  double     time;
+  bool       keyframe;
+
+};
+
+class TheoraVideoPacket : public RefObject<VideoData> {
+
+public:
+
+  TheoraVideoPacket();
+  TheoraVideoPacket(TheoraVideoPacket& packet);
+  virtual ~TheoraVideoPacket();
+
+  TheoraVideoPacket& operator=(const TheoraVideoPacket& packet);
+
+  uint64      getGranulePosition();
+  double      getTime();
+  bool        isKeyFrame();
+  yuv_buffer& getYuvBuffer();
+
+  void        setGranulePosition(uint64 position);
+  void        setTime(double picTime);
+  void        setKeyFrame(bool isFrame);
+  void        setYuvBuffer(yuv_buffer& buffer);
+
+};
+
+#endif
+
+#endif /*THEORAVIDEOPACKET_H_*/
diff --git a/src/tools.dox b/src/tools.dox
new file mode 100644
index 0000000..4ce7e2b
--- /dev/null
+++ b/src/tools.dox
@@ -0,0 +1,1294 @@
+# Doxyfile 1.5.3
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project
+#
+# All text after a hash (#) is considered a comment and will be ignored
+# The format is:
+#       TAG = value [value, ...]
+# For lists items can also be appended using:
+#       TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (" ")
+
+#---------------------------------------------------------------------------
+# Project related configuration options
+#---------------------------------------------------------------------------
+
+# This tag specifies the encoding used for all characters in the config file that 
+# follow. The default is UTF-8 which is also the encoding used for all text before 
+# the first occurrence of this tag. Doxygen uses libiconv (or the iconv built into 
+# libc) for the transcoding. See http://www.gnu.org/software/libiconv for the list of 
+# possible encodings.
+
+DOXYFILE_ENCODING      = UTF-8
+
+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded 
+# by quotes) that should identify the project.
+
+PROJECT_NAME           = Ogg Video Tools
+
+# The PROJECT_NUMBER tag can be used to enter a project or revision number. 
+# This could be handy for archiving the generated documentation or 
+# if some version control system is used.
+
+PROJECT_NUMBER         = 0.4
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) 
+# base path where the generated documentation will be put. 
+# If a relative path is entered, it will be relative to the location 
+# where doxygen was started. If left blank the current directory will be used.
+
+OUTPUT_DIRECTORY       = 
+
+# If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 
+# 4096 sub-directories (in 2 levels) under the output directory of each output 
+# format and will distribute the generated files over these directories. 
+# Enabling this option can be useful when feeding doxygen a huge amount of 
+# source files, where putting all generated files in the same directory would 
+# otherwise cause performance problems for the file system.
+
+CREATE_SUBDIRS         = NO
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all 
+# documentation generated by doxygen is written. Doxygen will use this 
+# information to generate all constant output in the proper language. 
+# The default language is English, other supported languages are: 
+# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, 
+# Croatian, Czech, Danish, Dutch, Finnish, French, German, Greek, Hungarian, 
+# Italian, Japanese, Japanese-en (Japanese with English messages), Korean, 
+# Korean-en, Lithuanian, Norwegian, Polish, Portuguese, Romanian, Russian, 
+# Serbian, Slovak, Slovene, Spanish, Swedish, and Ukrainian.
+
+OUTPUT_LANGUAGE        = English
+
+# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will 
+# include brief member descriptions after the members that are listed in 
+# the file and class documentation (similar to JavaDoc). 
+# Set to NO to disable this.
+
+BRIEF_MEMBER_DESC      = YES
+
+# If the REPEAT_BRIEF tag is set to YES (the default) Doxygen will prepend 
+# the brief description of a member or function before the detailed description. 
+# Note: if both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the 
+# brief descriptions will be completely suppressed.
+
+REPEAT_BRIEF           = YES
+
+# This tag implements a quasi-intelligent brief description abbreviator 
+# that is used to form the text in various listings. Each string 
+# in this list, if found as the leading text of the brief description, will be 
+# stripped from the text and the result after processing the whole list, is 
+# used as the annotated text. Otherwise, the brief description is used as-is. 
+# If left blank, the following values are used ("$name" is automatically 
+# replaced with the name of the entity): "The $name class" "The $name widget" 
+# "The $name file" "is" "provides" "specifies" "contains" 
+# "represents" "a" "an" "the"
+
+ABBREVIATE_BRIEF       = 
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then 
+# Doxygen will generate a detailed section even if there is only a brief 
+# description.
+
+ALWAYS_DETAILED_SEC    = NO
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all 
+# inherited members of a class in the documentation of that class as if those 
+# members were ordinary class members. Constructors, destructors and assignment 
+# operators of the base classes will not be shown.
+
+INLINE_INHERITED_MEMB  = NO
+
+# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full 
+# path before files name in the file list and in the header files. If set 
+# to NO the shortest path that makes the file name unique will be used.
+
+FULL_PATH_NAMES        = YES
+
+# If the FULL_PATH_NAMES tag is set to YES then the STRIP_FROM_PATH tag 
+# can be used to strip a user-defined part of the path. Stripping is 
+# only done if one of the specified strings matches the left-hand part of 
+# the path. The tag can be used to show relative paths in the file list. 
+# If left blank the directory from which doxygen is run is used as the 
+# path to strip.
+
+STRIP_FROM_PATH        = 
+
+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of 
+# the path mentioned in the documentation of a class, which tells 
+# the reader which header file to include in order to use a class. 
+# If left blank only the name of the header file containing the class 
+# definition is used. Otherwise one should specify the include paths that 
+# are normally passed to the compiler using the -I flag.
+
+STRIP_FROM_INC_PATH    = 
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter 
+# (but less readable) file names. This can be useful is your file systems 
+# doesn't support long names like on DOS, Mac, or CD-ROM.
+
+SHORT_NAMES            = NO
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then Doxygen 
+# will interpret the first line (until the first dot) of a JavaDoc-style 
+# comment as the brief description. If set to NO, the JavaDoc 
+# comments will behave just like regular Qt-style comments 
+# (thus requiring an explicit @brief command for a brief description.)
+
+JAVADOC_AUTOBRIEF      = NO
+
+# If the QT_AUTOBRIEF tag is set to YES then Doxygen will 
+# interpret the first line (until the first dot) of a Qt-style 
+# comment as the brief description. If set to NO, the comments 
+# will behave just like regular Qt-style comments (thus requiring 
+# an explicit \brief command for a brief description.)
+
+QT_AUTOBRIEF           = NO
+
+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make Doxygen 
+# treat a multi-line C++ special comment block (i.e. a block of //! or /// 
+# comments) as a brief description. This used to be the default behaviour. 
+# The new default is to treat a multi-line C++ comment block as a detailed 
+# description. Set this tag to YES if you prefer the old behaviour instead.
+
+MULTILINE_CPP_IS_BRIEF = NO
+
+# If the DETAILS_AT_TOP tag is set to YES then Doxygen 
+# will output the detailed description near the top, like JavaDoc.
+# If set to NO, the detailed description appears after the member 
+# documentation.
+
+DETAILS_AT_TOP         = NO
+
+# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented 
+# member inherits the documentation from any documented member that it 
+# re-implements.
+
+INHERIT_DOCS           = YES
+
+# If the SEPARATE_MEMBER_PAGES tag is set to YES, then doxygen will produce 
+# a new page for each member. If set to NO, the documentation of a member will 
+# be part of the file/class/namespace that contains it.
+
+SEPARATE_MEMBER_PAGES  = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab. 
+# Doxygen uses this value to replace tabs by spaces in code fragments.
+
+TAB_SIZE               = 8
+
+# This tag can be used to specify a number of aliases that acts 
+# as commands in the documentation. An alias has the form "name=value". 
+# For example adding "sideeffect=\par Side Effects:\n" will allow you to 
+# put the command \sideeffect (or @sideeffect) in the documentation, which 
+# will result in a user-defined paragraph with heading "Side Effects:". 
+# You can put \n's in the value part of an alias to insert newlines.
+
+ALIASES                = 
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C 
+# sources only. Doxygen will then generate output that is more tailored for C. 
+# For instance, some of the names that are used will be different. The list 
+# of all members will be omitted, etc.
+
+OPTIMIZE_OUTPUT_FOR_C  = NO
+
+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java 
+# sources only. Doxygen will then generate output that is more tailored for Java. 
+# For instance, namespaces will be presented as packages, qualified scopes 
+# will look different, etc.
+
+OPTIMIZE_OUTPUT_JAVA   = NO
+
+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want to 
+# include (a tag file for) the STL sources as input, then you should 
+# set this tag to YES in order to let doxygen match functions declarations and 
+# definitions whose arguments contain STL classes (e.g. func(std::string); v.s. 
+# func(std::string) {}). This also make the inheritance and collaboration 
+# diagrams that involve STL classes more complete and accurate.
+
+BUILTIN_STL_SUPPORT    = NO
+
+# If you use Microsoft's C++/CLI language, you should set this option to YES to
+# enable parsing support.
+
+CPP_CLI_SUPPORT        = NO
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC 
+# tag is set to YES, then doxygen will reuse the documentation of the first 
+# member in the group (if any) for the other members of the group. By default 
+# all members of a group must be documented explicitly.
+
+DISTRIBUTE_GROUP_DOC   = NO
+
+# Set the SUBGROUPING tag to YES (the default) to allow class member groups of 
+# the same type (for instance a group of public functions) to be put as a 
+# subgroup of that type (e.g. under the Public Functions section). Set it to 
+# NO to prevent subgrouping. Alternatively, this can be done per class using 
+# the \nosubgrouping command.
+
+SUBGROUPING            = YES
+
+#---------------------------------------------------------------------------
+# Build related configuration options
+#---------------------------------------------------------------------------
+
+# If the EXTRACT_ALL tag is set to YES doxygen will assume all entities in 
+# documentation are documented, even if no documentation was available. 
+# Private class members and static file members will be hidden unless 
+# the EXTRACT_PRIVATE and EXTRACT_STATIC tags are set to YES
+
+EXTRACT_ALL            = YES
+
+# If the EXTRACT_PRIVATE tag is set to YES all private members of a class 
+# will be included in the documentation.
+
+EXTRACT_PRIVATE        = NO
+
+# If the EXTRACT_STATIC tag is set to YES all static members of a file 
+# will be included in the documentation.
+
+EXTRACT_STATIC         = YES
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES classes (and structs) 
+# defined locally in source files will be included in the documentation. 
+# If set to NO only classes defined in header files are included.
+
+EXTRACT_LOCAL_CLASSES  = YES
+
+# This flag is only useful for Objective-C code. When set to YES local 
+# methods, which are defined in the implementation section but not in 
+# the interface are included in the documentation. 
+# If set to NO (the default) only methods in the interface are included.
+
+EXTRACT_LOCAL_METHODS  = NO
+
+# If this flag is set to YES, the members of anonymous namespaces will be extracted 
+# and appear in the documentation as a namespace called 'anonymous_namespace{file}', 
+# where file will be replaced with the base name of the file that contains the anonymous 
+# namespace. By default anonymous namespace are hidden.
+
+EXTRACT_ANON_NSPACES   = NO
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all 
+# undocumented members of documented classes, files or namespaces. 
+# If set to NO (the default) these members will be included in the 
+# various overviews, but no documentation section is generated. 
+# This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_MEMBERS     = NO
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, Doxygen will hide all 
+# undocumented classes that are normally visible in the class hierarchy. 
+# If set to NO (the default) these classes will be included in the various 
+# overviews. This option has no effect if EXTRACT_ALL is enabled.
+
+HIDE_UNDOC_CLASSES     = NO
+
+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all 
+# friend (class|struct|union) declarations. 
+# If set to NO (the default) these declarations will be included in the 
+# documentation.
+
+HIDE_FRIEND_COMPOUNDS  = NO
+
+# If the HIDE_IN_BODY_DOCS tag is set to YES, Doxygen will hide any 
+# documentation blocks found inside the body of a function. 
+# If set to NO (the default) these blocks will be appended to the 
+# function's detailed documentation block.
+
+HIDE_IN_BODY_DOCS      = NO
+
+# The INTERNAL_DOCS tag determines if documentation 
+# that is typed after a \internal command is included. If the tag is set 
+# to NO (the default) then the documentation will be excluded. 
+# Set it to YES to include the internal documentation.
+
+INTERNAL_DOCS          = NO
+
+# If the CASE_SENSE_NAMES tag is set to NO then Doxygen will only generate 
+# file names in lower-case letters. If set to YES upper-case letters are also 
+# allowed. This is useful if you have classes or files whose names only differ 
+# in case and if your file system supports case sensitive file names. Windows 
+# and Mac users are advised to set this option to NO.
+
+CASE_SENSE_NAMES       = YES
+
+# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen 
+# will show members with their full class and namespace scopes in the 
+# documentation. If set to YES the scope will be hidden.
+
+HIDE_SCOPE_NAMES       = NO
+
+# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen 
+# will put a list of the files that are included by a file in the documentation 
+# of that file.
+
+SHOW_INCLUDE_FILES     = YES
+
+# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] 
+# is inserted in the documentation for inline members.
+
+INLINE_INFO            = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES (the default) then doxygen 
+# will sort the (detailed) documentation of file and class members 
+# alphabetically by member name. If set to NO the members will appear in 
+# declaration order.
+
+SORT_MEMBER_DOCS       = YES
+
+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the 
+# brief documentation of file, namespace and class members alphabetically 
+# by member name. If set to NO (the default) the members will appear in 
+# declaration order.
+
+SORT_BRIEF_DOCS        = NO
+
+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be 
+# sorted by fully-qualified names, including namespaces. If set to 
+# NO (the default), the class list will be sorted only by class name, 
+# not including the namespace part. 
+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
+# Note: This option applies only to the class list, not to the 
+# alphabetical list.
+
+SORT_BY_SCOPE_NAME     = NO
+
+# The GENERATE_TODOLIST tag can be used to enable (YES) or 
+# disable (NO) the todo list. This list is created by putting \todo 
+# commands in the documentation.
+
+GENERATE_TODOLIST      = YES
+
+# The GENERATE_TESTLIST tag can be used to enable (YES) or 
+# disable (NO) the test list. This list is created by putting \test 
+# commands in the documentation.
+
+GENERATE_TESTLIST      = YES
+
+# The GENERATE_BUGLIST tag can be used to enable (YES) or 
+# disable (NO) the bug list. This list is created by putting \bug 
+# commands in the documentation.
+
+GENERATE_BUGLIST       = YES
+
+# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or 
+# disable (NO) the deprecated list. This list is created by putting 
+# \deprecated commands in the documentation.
+
+GENERATE_DEPRECATEDLIST= YES
+
+# The ENABLED_SECTIONS tag can be used to enable conditional 
+# documentation sections, marked by \if sectionname ... \endif.
+
+ENABLED_SECTIONS       = 
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines 
+# the initial value of a variable or define consists of for it to appear in 
+# the documentation. If the initializer consists of more lines than specified 
+# here it will be hidden. Use a value of 0 to hide initializers completely. 
+# The appearance of the initializer of individual variables and defines in the 
+# documentation can be controlled using \showinitializer or \hideinitializer 
+# command in the documentation regardless of this setting.
+
+MAX_INITIALIZER_LINES  = 30
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated 
+# at the bottom of the documentation of classes and structs. If set to YES the 
+# list will mention the files that were used to generate the documentation.
+
+SHOW_USED_FILES        = YES
+
+# If the sources in your project are distributed over multiple directories 
+# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy 
+# in the documentation. The default is NO.
+
+SHOW_DIRECTORIES       = NO
+
+# The FILE_VERSION_FILTER tag can be used to specify a program or script that 
+# doxygen should invoke to get the current version for each file (typically from the 
+# version control system). Doxygen will invoke the program by executing (via 
+# popen()) the command <command> <input-file>, where <command> is the value of 
+# the FILE_VERSION_FILTER tag, and <input-file> is the name of an input file 
+# provided by doxygen. Whatever the program writes to standard output 
+# is used as the file version. See the manual for examples.
+
+FILE_VERSION_FILTER    = 
+
+#---------------------------------------------------------------------------
+# configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated 
+# by doxygen. Possible values are YES and NO. If left blank NO is used.
+
+QUIET                  = NO
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are 
+# generated by doxygen. Possible values are YES and NO. If left blank 
+# NO is used.
+
+WARNINGS               = YES
+
+# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings 
+# for undocumented members. If EXTRACT_ALL is set to YES then this flag will 
+# automatically be disabled.
+
+WARN_IF_UNDOCUMENTED   = YES
+
+# If WARN_IF_DOC_ERROR is set to YES, doxygen will generate warnings for 
+# potential errors in the documentation, such as not documenting some 
+# parameters in a documented function, or documenting parameters that 
+# don't exist or using markup commands wrongly.
+
+WARN_IF_DOC_ERROR      = YES
+
+# This WARN_NO_PARAMDOC option can be abled to get warnings for 
+# functions that are documented, but have no documentation for their parameters 
+# or return value. If set to NO (the default) doxygen will only warn about 
+# wrong or incomplete parameter documentation, but not about the absence of 
+# documentation.
+
+WARN_NO_PARAMDOC       = NO
+
+# The WARN_FORMAT tag determines the format of the warning messages that 
+# doxygen can produce. The string should contain the $file, $line, and $text 
+# tags, which will be replaced by the file and line number from which the 
+# warning originated and the warning text. Optionally the format may contain 
+# $version, which will be replaced by the version of the file (if it could 
+# be obtained via FILE_VERSION_FILTER)
+
+WARN_FORMAT            = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning 
+# and error messages should be written. If left blank the output is written 
+# to stderr.
+
+WARN_LOGFILE           = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag can be used to specify the files and/or directories that contain 
+# documented source files. You may enter file names like "myfile.cpp" or 
+# directories like "/usr/src/myproject". Separate the files or directories 
+# with spaces.
+
+INPUT                  = 
+
+# This tag can be used to specify the character encoding of the source files that 
+# doxygen parses. Internally doxygen uses the UTF-8 encoding, which is also the default 
+# input encoding. Doxygen uses libiconv (or the iconv built into libc) for the transcoding. 
+# See http://www.gnu.org/software/libiconv for the list of possible encodings.
+
+INPUT_ENCODING         = UTF-8
+
+# If the value of the INPUT tag contains directories, you can use the 
+# FILE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank the following patterns are tested: 
+# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx 
+# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py
+
+FILE_PATTERNS          = 
+
+# The RECURSIVE tag can be used to turn specify whether or not subdirectories 
+# should be searched for input files as well. Possible values are YES and NO. 
+# If left blank NO is used.
+
+RECURSIVE              = NO
+
+# The EXCLUDE tag can be used to specify files and/or directories that should 
+# excluded from the INPUT source files. This way you can easily exclude a 
+# subdirectory from a directory tree whose root is specified with the INPUT tag.
+
+EXCLUDE                = 
+
+# The EXCLUDE_SYMLINKS tag can be used select whether or not files or 
+# directories that are symbolic links (a Unix filesystem feature) are excluded 
+# from the input.
+
+EXCLUDE_SYMLINKS       = NO
+
+# If the value of the INPUT tag contains directories, you can use the 
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude 
+# certain files from those directories. Note that the wildcards are matched 
+# against the file with absolute path, so to exclude all test directories 
+# for example use the pattern */test/*
+
+EXCLUDE_PATTERNS       = 
+
+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names 
+# (namespaces, classes, functions, etc.) that should be excluded from the output. 
+# The symbol name can be a fully qualified name, a word, or if the wildcard * is used, 
+# a substring. Examples: ANamespace, AClass, AClass::ANamespace, ANamespace::*Test
+
+EXCLUDE_SYMBOLS        = 
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or 
+# directories that contain example code fragments that are included (see 
+# the \include command).
+
+EXAMPLE_PATH           = 
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the 
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp 
+# and *.h) to filter out the source-files in the directories. If left 
+# blank all files are included.
+
+EXAMPLE_PATTERNS       = 
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be 
+# searched for input files to be used with the \include or \dontinclude 
+# commands irrespective of the value of the RECURSIVE tag. 
+# Possible values are YES and NO. If left blank NO is used.
+
+EXAMPLE_RECURSIVE      = NO
+
+# The IMAGE_PATH tag can be used to specify one or more files or 
+# directories that contain image that are included in the documentation (see 
+# the \image command).
+
+IMAGE_PATH             = 
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should 
+# invoke to filter for each input file. Doxygen will invoke the filter program 
+# by executing (via popen()) the command <filter> <input-file>, where <filter> 
+# is the value of the INPUT_FILTER tag, and <input-file> is the name of an 
+# input file. Doxygen will then use the output that the filter program writes 
+# to standard output.  If FILTER_PATTERNS is specified, this tag will be 
+# ignored.
+
+INPUT_FILTER           = 
+
+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern 
+# basis.  Doxygen will compare the file name with each pattern and apply the 
+# filter if there is a match.  The filters are a list of the form: 
+# pattern=filter (like *.cpp=my_cpp_filter). See INPUT_FILTER for further 
+# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER 
+# is applied to all files.
+
+FILTER_PATTERNS        = 
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using 
+# INPUT_FILTER) will be used to filter the input files when producing source 
+# files to browse (i.e. when SOURCE_BROWSER is set to YES).
+
+FILTER_SOURCE_FILES    = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will 
+# be generated. Documented entities will be cross-referenced with these sources. 
+# Note: To get rid of all source code in the generated output, make sure also 
+# VERBATIM_HEADERS is set to NO. If you have enabled CALL_GRAPH or CALLER_GRAPH 
+# then you must also enable this option. If you don't then doxygen will produce 
+# a warning and turn it on anyway
+
+SOURCE_BROWSER         = NO
+
+# Setting the INLINE_SOURCES tag to YES will include the body 
+# of functions and classes directly in the documentation.
+
+INLINE_SOURCES         = NO
+
+# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct 
+# doxygen to hide any special comment blocks from generated source code 
+# fragments. Normal C and C++ comments will always remain visible.
+
+STRIP_CODE_COMMENTS    = YES
+
+# If the REFERENCED_BY_RELATION tag is set to YES (the default) 
+# then for each documented function all documented 
+# functions referencing it will be listed.
+
+REFERENCED_BY_RELATION = YES
+
+# If the REFERENCES_RELATION tag is set to YES (the default) 
+# then for each documented function all documented entities 
+# called/used by that function will be listed.
+
+REFERENCES_RELATION    = YES
+
+# If the REFERENCES_LINK_SOURCE tag is set to YES (the default)
+# and SOURCE_BROWSER tag is set to YES, then the hyperlinks from
+# functions in REFERENCES_RELATION and REFERENCED_BY_RELATION lists will
+# link to the source code.  Otherwise they will link to the documentstion.
+
+REFERENCES_LINK_SOURCE = YES
+
+# If the USE_HTAGS tag is set to YES then the references to source code 
+# will point to the HTML generated by the htags(1) tool instead of doxygen 
+# built-in source browser. The htags tool is part of GNU's global source 
+# tagging system (see http://www.gnu.org/software/global/global.html). You 
+# will need version 4.8.6 or higher.
+
+USE_HTAGS              = NO
+
+# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen 
+# will generate a verbatim copy of the header file for each class for 
+# which an include is specified. Set to NO to disable this.
+
+VERBATIM_HEADERS       = YES
+
+#---------------------------------------------------------------------------
+# configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index 
+# of all compounds will be generated. Enable this if the project 
+# contains a lot of classes, structs, unions or interfaces.
+
+ALPHABETICAL_INDEX     = NO
+
+# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then 
+# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns 
+# in which this list will be split (can be a number in the range [1..20])
+
+COLS_IN_ALPHA_INDEX    = 5
+
+# In case all classes in a project start with a common prefix, all 
+# classes will be put under the same header in the alphabetical index. 
+# The IGNORE_PREFIX tag can be used to specify one or more prefixes that 
+# should be ignored while generating the index headers.
+
+IGNORE_PREFIX          = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES (the default) Doxygen will 
+# generate HTML output.
+
+GENERATE_HTML          = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `html' will be used as the default path.
+
+HTML_OUTPUT            = html
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for 
+# each generated HTML page (for example: .htm,.php,.asp). If it is left blank 
+# doxygen will generate files with .html extension.
+
+HTML_FILE_EXTENSION    = .html
+
+# The HTML_HEADER tag can be used to specify a personal HTML header for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard header.
+
+HTML_HEADER            = 
+
+# The HTML_FOOTER tag can be used to specify a personal HTML footer for 
+# each generated HTML page. If it is left blank doxygen will generate a 
+# standard footer.
+
+HTML_FOOTER            = 
+
+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading 
+# style sheet that is used by each HTML page. It can be used to 
+# fine-tune the look of the HTML output. If the tag is left blank doxygen 
+# will generate a default style sheet. Note that doxygen will try to copy 
+# the style sheet file to the HTML output directory, so don't put your own 
+# stylesheet in the HTML output directory as well, or it will be erased!
+
+HTML_STYLESHEET        = 
+
+# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, 
+# files or namespaces will be aligned in HTML using tables. If set to 
+# NO a bullet list will be used.
+
+HTML_ALIGN_MEMBERS     = YES
+
+# If the GENERATE_HTMLHELP tag is set to YES, additional index files 
+# will be generated that can be used as input for tools like the 
+# Microsoft HTML help workshop to generate a compressed HTML help file (.chm) 
+# of the generated HTML documentation.
+
+GENERATE_HTMLHELP      = NO
+
+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML 
+# documentation will contain sections that can be hidden and shown after the 
+# page has loaded. For this to work a browser that supports 
+# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox 
+# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari).
+
+HTML_DYNAMIC_SECTIONS  = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the CHM_FILE tag can 
+# be used to specify the file name of the resulting .chm file. You 
+# can add a path in front of the file if the result should not be 
+# written to the html output directory.
+
+CHM_FILE               = 
+
+# If the GENERATE_HTMLHELP tag is set to YES, the HHC_LOCATION tag can 
+# be used to specify the location (absolute path including file name) of 
+# the HTML help compiler (hhc.exe). If non-empty doxygen will try to run 
+# the HTML help compiler on the generated index.hhp.
+
+HHC_LOCATION           = 
+
+# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag 
+# controls if a separate .chi index file is generated (YES) or that 
+# it should be included in the master .chm file (NO).
+
+GENERATE_CHI           = NO
+
+# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag 
+# controls whether a binary table of contents is generated (YES) or a 
+# normal table of contents (NO) in the .chm file.
+
+BINARY_TOC             = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members 
+# to the contents of the HTML help documentation and to the tree view.
+
+TOC_EXPAND             = NO
+
+# The DISABLE_INDEX tag can be used to turn on/off the condensed index at 
+# top of each HTML page. The value NO (the default) enables the index and 
+# the value YES disables it.
+
+DISABLE_INDEX          = NO
+
+# This tag can be used to set the number of enum values (range [1..20]) 
+# that doxygen will group on one line in the generated HTML documentation.
+
+ENUM_VALUES_PER_LINE   = 4
+
+# If the GENERATE_TREEVIEW tag is set to YES, a side panel will be
+# generated containing a tree-like index structure (just like the one that 
+# is generated for HTML Help). For this to work a browser that supports 
+# JavaScript, DHTML, CSS and frames is required (for instance Mozilla 1.0+, 
+# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are 
+# probably better off using the HTML help feature.
+
+GENERATE_TREEVIEW      = NO
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be 
+# used to set the initial width (in pixels) of the frame in which the tree 
+# is shown.
+
+TREEVIEW_WIDTH         = 250
+
+#---------------------------------------------------------------------------
+# configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will 
+# generate Latex output.
+
+GENERATE_LATEX         = YES
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `latex' will be used as the default path.
+
+LATEX_OUTPUT           = latex
+
+# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be 
+# invoked. If left blank `latex' will be used as the default command name.
+
+LATEX_CMD_NAME         = latex
+
+# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to 
+# generate index for LaTeX. If left blank `makeindex' will be used as the 
+# default command name.
+
+MAKEINDEX_CMD_NAME     = makeindex
+
+# If the COMPACT_LATEX tag is set to YES Doxygen generates more compact 
+# LaTeX documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_LATEX          = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used 
+# by the printer. Possible values are: a4, a4wide, letter, legal and 
+# executive. If left blank a4wide will be used.
+
+PAPER_TYPE             = a4wide
+
+# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX 
+# packages that should be included in the LaTeX output.
+
+EXTRA_PACKAGES         = 
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for 
+# the generated latex document. The header should contain everything until 
+# the first chapter. If it is left blank doxygen will generate a 
+# standard header. Notice: only use this tag if you know what you are doing!
+
+LATEX_HEADER           = 
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated 
+# is prepared for conversion to pdf (using ps2pdf). The pdf file will 
+# contain links (just like the HTML output) instead of page references 
+# This makes the output suitable for online browsing using a pdf viewer.
+
+PDF_HYPERLINKS         = NO
+
+# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of 
+# plain latex in the generated Makefile. Set this option to YES to get a 
+# higher quality PDF documentation.
+
+USE_PDFLATEX           = NO
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. 
+# command to the generated LaTeX files. This will instruct LaTeX to keep 
+# running if errors occur, instead of asking the user for help. 
+# This option is also used when generating formulas in HTML.
+
+LATEX_BATCHMODE        = NO
+
+# If LATEX_HIDE_INDICES is set to YES then doxygen will not 
+# include the index chapters (such as File Index, Compound Index, etc.) 
+# in the output.
+
+LATEX_HIDE_INDICES     = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output 
+# The RTF output is optimized for Word 97 and may not look very pretty with 
+# other RTF readers or editors.
+
+GENERATE_RTF           = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `rtf' will be used as the default path.
+
+RTF_OUTPUT             = rtf
+
+# If the COMPACT_RTF tag is set to YES Doxygen generates more compact 
+# RTF documents. This may be useful for small projects and may help to 
+# save some trees in general.
+
+COMPACT_RTF            = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated 
+# will contain hyperlink fields. The RTF file will 
+# contain links (just like the HTML output) instead of page references. 
+# This makes the output suitable for online browsing using WORD or other 
+# programs which support those fields. 
+# Note: wordpad (write) and others do not support links.
+
+RTF_HYPERLINKS         = NO
+
+# Load stylesheet definitions from file. Syntax is similar to doxygen's 
+# config file, i.e. a series of assignments. You only have to provide 
+# replacements, missing definitions are set to their default value.
+
+RTF_STYLESHEET_FILE    = 
+
+# Set optional variables used in the generation of an rtf document. 
+# Syntax is similar to doxygen's config file.
+
+RTF_EXTENSIONS_FILE    = 
+
+#---------------------------------------------------------------------------
+# configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES (the default) Doxygen will 
+# generate man pages
+
+GENERATE_MAN           = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `man' will be used as the default path.
+
+MAN_OUTPUT             = man
+
+# The MAN_EXTENSION tag determines the extension that is added to 
+# the generated man pages (default is the subroutine's section .3)
+
+MAN_EXTENSION          = .3
+
+# If the MAN_LINKS tag is set to YES and Doxygen generates man output, 
+# then it will generate one additional man file for each entity 
+# documented in the real man page(s). These additional files 
+# only source the real man page, but without them the man command 
+# would be unable to find the correct page. The default is NO.
+
+MAN_LINKS              = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES Doxygen will 
+# generate an XML file that captures the structure of 
+# the code including all documentation.
+
+GENERATE_XML           = NO
+
+# The XML_OUTPUT tag is used to specify where the XML pages will be put. 
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be 
+# put in front of it. If left blank `xml' will be used as the default path.
+
+XML_OUTPUT             = xml
+
+# The XML_SCHEMA tag can be used to specify an XML schema, 
+# which can be used by a validating XML parser to check the 
+# syntax of the XML files.
+
+XML_SCHEMA             = 
+
+# The XML_DTD tag can be used to specify an XML DTD, 
+# which can be used by a validating XML parser to check the 
+# syntax of the XML files.
+
+XML_DTD                = 
+
+# If the XML_PROGRAMLISTING tag is set to YES Doxygen will 
+# dump the program listings (including syntax highlighting 
+# and cross-referencing information) to the XML output. Note that 
+# enabling this will significantly increase the size of the XML output.
+
+XML_PROGRAMLISTING     = YES
+
+#---------------------------------------------------------------------------
+# configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will 
+# generate an AutoGen Definitions (see autogen.sf.net) file 
+# that captures the structure of the code including all 
+# documentation. Note that this feature is still experimental 
+# and incomplete at the moment.
+
+GENERATE_AUTOGEN_DEF   = NO
+
+#---------------------------------------------------------------------------
+# configuration options related to the Perl module output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_PERLMOD tag is set to YES Doxygen will 
+# generate a Perl module file that captures the structure of 
+# the code including all documentation. Note that this 
+# feature is still experimental and incomplete at the 
+# moment.
+
+GENERATE_PERLMOD       = NO
+
+# If the PERLMOD_LATEX tag is set to YES Doxygen will generate 
+# the necessary Makefile rules, Perl scripts and LaTeX code to be able 
+# to generate PDF and DVI output from the Perl module output.
+
+PERLMOD_LATEX          = NO
+
+# If the PERLMOD_PRETTY tag is set to YES the Perl module output will be 
+# nicely formatted so it can be parsed by a human reader.  This is useful 
+# if you want to understand what is going on.  On the other hand, if this 
+# tag is set to NO the size of the Perl module output will be much smaller 
+# and Perl will parse it just the same.
+
+PERLMOD_PRETTY         = YES
+
+# The names of the make variables in the generated doxyrules.make file 
+# are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. 
+# This is useful so different doxyrules.make files included by the same 
+# Makefile don't overwrite each other's variables.
+
+PERLMOD_MAKEVAR_PREFIX = 
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor   
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will 
+# evaluate all C-preprocessor directives found in the sources and include 
+# files.
+
+ENABLE_PREPROCESSING   = YES
+
+# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro 
+# names in the source code. If set to NO (the default) only conditional 
+# compilation will be performed. Macro expansion can be done in a controlled 
+# way by setting EXPAND_ONLY_PREDEF to YES.
+
+MACRO_EXPANSION        = NO
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES 
+# then the macro expansion is limited to the macros specified with the 
+# PREDEFINED and EXPAND_AS_DEFINED tags.
+
+EXPAND_ONLY_PREDEF     = NO
+
+# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files 
+# in the INCLUDE_PATH (see below) will be search if a #include is found.
+
+SEARCH_INCLUDES        = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that 
+# contain include files that are not input files but should be processed by 
+# the preprocessor.
+
+INCLUDE_PATH           = 
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard 
+# patterns (like *.h and *.hpp) to filter out the header-files in the 
+# directories. If left blank, the patterns specified with FILE_PATTERNS will 
+# be used.
+
+INCLUDE_FILE_PATTERNS  = 
+
+# The PREDEFINED tag can be used to specify one or more macro names that 
+# are defined before the preprocessor is started (similar to the -D option of 
+# gcc). The argument of the tag is a list of macros of the form: name 
+# or name=definition (no spaces). If the definition and the = are 
+# omitted =1 is assumed. To prevent a macro definition from being 
+# undefined via #undef or recursively expanded use the := operator 
+# instead of the = operator.
+
+PREDEFINED             = 
+
+# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then 
+# this tag can be used to specify a list of macro names that should be expanded. 
+# The macro definition that is found in the sources will be used. 
+# Use the PREDEFINED tag if you want to use a different macro definition.
+
+EXPAND_AS_DEFINED      = 
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then 
+# doxygen's preprocessor will remove all function-like macros that are alone 
+# on a line, have an all uppercase name, and do not end with a semicolon. Such 
+# function macros are typically used for boiler-plate code, and will confuse 
+# the parser if not removed.
+
+SKIP_FUNCTION_MACROS   = YES
+
+#---------------------------------------------------------------------------
+# Configuration::additions related to external references   
+#---------------------------------------------------------------------------
+
+# The TAGFILES option can be used to specify one or more tagfiles. 
+# Optionally an initial location of the external documentation 
+# can be added for each tagfile. The format of a tag file without 
+# this location is as follows: 
+#   TAGFILES = file1 file2 ... 
+# Adding location for the tag files is done as follows: 
+#   TAGFILES = file1=loc1 "file2 = loc2" ... 
+# where "loc1" and "loc2" can be relative or absolute paths or 
+# URLs. If a location is present for each tag, the installdox tool 
+# does not have to be run to correct the links.
+# Note that each tag file must have a unique name
+# (where the name does NOT include the path)
+# If a tag file is not located in the directory in which doxygen 
+# is run, you must also specify the path to the tagfile here.
+
+TAGFILES               = 
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create 
+# a tag file that is based on the input files it reads.
+
+GENERATE_TAGFILE       = 
+
+# If the ALLEXTERNALS tag is set to YES all external classes will be listed 
+# in the class index. If set to NO only the inherited external classes 
+# will be listed.
+
+ALLEXTERNALS           = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed 
+# in the modules index. If set to NO, only the current project's groups will 
+# be listed.
+
+EXTERNAL_GROUPS        = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script 
+# interpreter (i.e. the result of `which perl').
+
+PERL_PATH              = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool   
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will 
+# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base 
+# or super classes. Setting the tag to NO turns the diagrams off. Note that 
+# this option is superseded by the HAVE_DOT option below. This is only a 
+# fallback. It is recommended to install and use dot, since it yields more 
+# powerful graphs.
+
+CLASS_DIAGRAMS         = YES
+
+# You can define message sequence charts within doxygen comments using the \msc 
+# command. Doxygen will then run the mscgen tool (see http://www.mcternan.me.uk/mscgen/) to 
+# produce the chart and insert it in the documentation. The MSCGEN_PATH tag allows you to 
+# specify the directory where the mscgen tool resides. If left empty the tool is assumed to 
+# be found in the default search path.
+
+MSCGEN_PATH            = 
+
+# If set to YES, the inheritance and collaboration graphs will hide 
+# inheritance and usage relations if the target is undocumented 
+# or is not a class.
+
+HIDE_UNDOC_RELATIONS   = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is 
+# available from the path. This tool is part of Graphviz, a graph visualization 
+# toolkit from AT&T and Lucent Bell Labs. The other options in this section 
+# have no effect if this option is set to NO (the default)
+
+HAVE_DOT               = NO
+
+# If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect inheritance relations. Setting this tag to YES will force the 
+# the CLASS_DIAGRAMS tag to NO.
+
+CLASS_GRAPH            = YES
+
+# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for each documented class showing the direct and 
+# indirect implementation dependencies (inheritance, containment, and 
+# class references variables) of the class with other documented classes.
+
+COLLABORATION_GRAPH    = YES
+
+# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen 
+# will generate a graph for groups, showing the direct groups dependencies
+
+GROUP_GRAPHS           = YES
+
+# If the UML_LOOK tag is set to YES doxygen will generate inheritance and 
+# collaboration diagrams in a style similar to the OMG's Unified Modeling 
+# Language.
+
+UML_LOOK               = NO
+
+# If set to YES, the inheritance and collaboration graphs will show the 
+# relations between templates and their instances.
+
+TEMPLATE_RELATIONS     = NO
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT 
+# tags are set to YES then doxygen will generate a graph for each documented 
+# file showing the direct and indirect include dependencies of the file with 
+# other documented files.
+
+INCLUDE_GRAPH          = YES
+
+# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and 
+# HAVE_DOT tags are set to YES then doxygen will generate a graph for each 
+# documented header file showing the documented files that directly or 
+# indirectly include this file.
+
+INCLUDED_BY_GRAPH      = YES
+
+# If the CALL_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 
+# generate a call dependency graph for every global function or class method. 
+# Note that enabling this option will significantly increase the time of a run. 
+# So in most cases it will be better to enable call graphs for selected 
+# functions only using the \callgraph command.
+
+CALL_GRAPH             = NO
+
+# If the CALLER_GRAPH, SOURCE_BROWSER and HAVE_DOT tags are set to YES then doxygen will 
+# generate a caller dependency graph for every global function or class method. 
+# Note that enabling this option will significantly increase the time of a run. 
+# So in most cases it will be better to enable caller graphs for selected 
+# functions only using the \callergraph command.
+
+CALLER_GRAPH           = NO
+
+# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen 
+# will graphical hierarchy of all classes instead of a textual one.
+
+GRAPHICAL_HIERARCHY    = YES
+
+# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES 
+# then doxygen will show the dependencies a directory has on other directories 
+# in a graphical way. The dependency relations are determined by the #include
+# relations between the files in the directories.
+
+DIRECTORY_GRAPH        = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images 
+# generated by dot. Possible values are png, jpg, or gif
+# If left blank png will be used.
+
+DOT_IMAGE_FORMAT       = png
+
+# The tag DOT_PATH can be used to specify the path where the dot tool can be 
+# found. If left blank, it is assumed the dot tool can be found in the path.
+
+DOT_PATH               = 
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that 
+# contain dot files that are included in the documentation (see the 
+# \dotfile command).
+
+DOTFILE_DIRS           = 
+
+# The MAX_DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of 
+# nodes that will be shown in the graph. If the number of nodes in a graph 
+# becomes larger than this value, doxygen will truncate the graph, which is 
+# visualized by representing a node as a red box. Note that doxygen if the number 
+# of direct children of the root node in a graph is already larger than 
+# MAX_DOT_GRAPH_NOTES then the graph will not be shown at all. Also note 
+# that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+
+DOT_GRAPH_MAX_NODES    = 50
+
+# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the 
+# graphs generated by dot. A depth value of 3 means that only nodes reachable 
+# from the root by following a path via at most 3 edges will be shown. Nodes 
+# that lay further from the root node will be omitted. Note that setting this 
+# option to 1 or 2 may greatly reduce the computation time needed for large 
+# code bases. Also note that the size of a graph can be further restricted by 
+# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+
+MAX_DOT_GRAPH_DEPTH    = 0
+
+# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent 
+# background. This is disabled by default, which results in a white background. 
+# Warning: Depending on the platform used, enabling this option may lead to 
+# badly anti-aliased labels on the edges of a graph (i.e. they become hard to 
+# read).
+
+DOT_TRANSPARENT        = NO
+
+# Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output 
+# files in one run (i.e. multiple -o and -T options on the command line). This 
+# makes dot run faster, but since only newer versions of dot (>1.8.10) 
+# support this, this feature is disabled by default.
+
+DOT_MULTI_TARGETS      = NO
+
+# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will 
+# generate a legend page explaining the meaning of the various boxes and 
+# arrows in the dot generated graphs.
+
+GENERATE_LEGEND        = YES
+
+# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will 
+# remove the intermediate dot files that are used to generate 
+# the various graphs.
+
+DOT_CLEANUP            = YES
+
+#---------------------------------------------------------------------------
+# Configuration::additions related to the search engine   
+#---------------------------------------------------------------------------
+
+# The SEARCHENGINE tag specifies whether or not a search engine should be 
+# used. If set to NO the values of all tags below this one will be ignored.
+
+SEARCHENGINE           = NO
diff --git a/src/videoInfo.h b/src/videoInfo.h
new file mode 100644
index 0000000..c9bf232
--- /dev/null
+++ b/src/videoInfo.h
@@ -0,0 +1,15 @@
+#ifndef VIDEOINFO_H_
+#define VIDEOINFO_H_
+
+#include "definition.h"
+
+class VideoInfo {
+public:
+  uint32 frame_width;
+  uint32 frame_height;
+  uint32 offset_x;
+  uint32 offset_y;
+
+};
+
+#endif /*VIDEOINFO_H_*/
diff --git a/src/wishList.h b/src/wishList.h
index ccfd729..eb33538 100644
--- a/src/wishList.h
+++ b/src/wishList.h
@@ -38,14 +38,15 @@ struct WishList {
   uint8 quality;
 
   WishList() :
-      width(0), height(0), changeSize(false), framerateNum(1),
-      framerateDenom(1), changeFramerate(false), videoDatarate(0),
-      changeVideoDatarate(false), videoQuality(0),
-      changeVideoQuality(false), audioDatarate(0),
-      changeAudioDatarate(false), audioSamplerate(0),
-      changeAudioSamplerate(false), audioChannels(2),
-      changeAudioChannels(false), stretch(false), withBlend(false),
-      ignoreVorbis(false), preview(1), pictureCounter(0), quality(2) {
+    width(0), height(0), changeSize(false), framerateNum(1),
+    framerateDenom(1), changeFramerate(false), videoDatarate(0),
+    changeVideoDatarate(false), videoQuality(0),
+    changeVideoQuality(false), audioDatarate(0),
+    changeAudioDatarate(false), audioSamplerate(0),
+    changeAudioSamplerate(false), audioChannels(2),
+    changeAudioChannels(false), stretch(false), withBlend(false),
+    ignoreVorbis(false), preview(1), pictureCounter(0), quality(2)
+  {
   }
 
 };
diff --git a/testsuite/testoggThumb.sh b/testsuite/testoggThumb.sh
new file mode 100755
index 0000000..878e986
--- /dev/null
+++ b/testsuite/testoggThumb.sh
@@ -0,0 +1,4 @@
+#!/bin/sh
+../build/src/oggThumb -t 0.4,0.7,1 -s200x0 -n ducks_%.png ../testvideos/ducks_take_off_444_720p25.ogg
+../build/src/oggThumb -t 0.4,0.7,1 -s0x200 -n aspect_%.png ../testvideos/pixel_aspect_ratio.ogg
+../build/src/oggThumb -t 0.4,0.7,1,200 -n stockholm_%.png ../testvideos/stockholm-vfr.ogg
diff --git a/testvideos/getVideos.sh b/testvideos/getVideos.sh
new file mode 100755
index 0000000..0990ea6
--- /dev/null
+++ b/testvideos/getVideos.sh
@@ -0,0 +1,14 @@
+#!/bin/sh
+wget http://v2v.cc/~j/theora_testsuite/320x240.ogg
+wget http://v2v.cc/~j/theora_testsuite/320x240.ogv
+wget http://v2v.cc/~j/theora_testsuite/pixel_aspect_ratio.ogg
+wget http://v2v.cc/~j/theora_testsuite/videotestsrc-720x576-16-15.ogg
+wget http://v2v.cc/~j/theora_testsuite/322x242_not-divisible-by-sixteen-framesize.ogg
+# wget http://v2v.cc/~j/theora_testsuite/chained_streams.ogg
+wget http://v2v.cc/~j/theora_testsuite/mobile_itu601_i_422.ogg
+wget http://v2v.cc/~j/theora_testsuite/ducks_take_off_444_720p25.ogg
+wget http://v2v.cc/~j/theora_testsuite/stockholm-vfr.ogg
+wget http://v2v.cc/~j/theora_testsuite/offset_test.ogv
+wget http://v2v.cc/~j/theora_testsuite/sign_irene_cif-3qi-b.ogg
+wget http://v2v.cc/~j/theora_testsuite/chroma_siting_test.ogv
+ 
\ No newline at end of file
diff --git a/win32/GD-COPYING.TXT b/win32/GD-COPYING.TXT
new file mode 100644
index 0000000..5e17d03
--- /dev/null
+++ b/win32/GD-COPYING.TXT
@@ -0,0 +1,53 @@
+ 
+     Portions copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
+     2002 by Cold Spring Harbor Laboratory. Funded under Grant
+     P41-RR02188 by the National Institutes of Health. 
+
+     Portions copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 by
+     Boutell.Com, Inc. 
+
+     Portions relating to GD2 format copyright 1999, 2000, 2001, 2002
+     Philip Warner.
+     
+     Portions relating to PNG copyright 1999, 2000, 2001, 2002 Greg
+     Roelofs. 
+
+     Portions relating to gdttf.c copyright 1999, 2000, 2001, 2002 John  
+     Ellson (ellson at lucent.com).
+   
+     Portions relating to gdft.c copyright 2001, 2002 John Ellson  
+     (ellson at lucent.com).  
+
+     Portions copyright 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
+		 Pierre-Alain Joye (pierre at libgd.org).  
+
+     Portions relating to JPEG and to color quantization copyright 2000,
+     2001, 2002, Doug Becker and copyright (C) 1994, 1995, 1996, 1997,
+     1998, 1999, 2000, 2001, 2002, Thomas G. Lane. This software is
+     based in part on the work of the Independent JPEG Group. See the
+     file README-JPEG.TXT for more information.
+
+     Portions relating to WBMP copyright 2000, 2001, 2002 Maurice
+     Szmurlo and Johan Van den Brande.
+
+     Permission has been granted to copy, distribute and modify gd in
+     any context without fee, including a commercial application,
+     provided that this notice is present in user-accessible supporting
+     documentation.
+
+     This does not affect your ownership of the derived work itself, and 
+     the intent is to assure proper credit for the authors of gd, not to
+     interfere with your productive use of gd. If you have questions,
+     ask. "Derived works" includes all programs that utilize the   
+     library. Credit must be given in user-accessible documentation.
+
+     This software is provided "AS IS." The copyright holders disclaim  
+     all warranties, either express or implied, including but not
+     limited to implied warranties of merchantability and fitness for a
+     particular purpose, with respect to this code and accompanying  
+     documentation.
+
+     Although their code does not appear in gd, the authors wish to thank
+     David Koblas, David Rowley, and Hutchison Avenue Software Corporation
+     for their prior contributions.
+
diff --git a/win32/getopt1.c b/win32/getopt1.c
new file mode 100644
index 0000000..dee6325
--- /dev/null
+++ b/win32/getopt1.c
@@ -0,0 +1,188 @@
+/* getopt_long and getopt_long_only entry points for GNU getopt.
+   Copyright (C) 1987,88,89,90,91,92,93,94,96,97,98
+     Free Software Foundation, Inc.
+   This file is part of the GNU C Library.
+
+   The GNU C Library is free software; you can redistribute it and/or
+   modify it under the terms of the GNU Library General Public License as
+   published by the Free Software Foundation; either version 2 of the
+   License, or (at your option) any later version.
+
+   The GNU C Library is distributed in the hope that it will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Library General Public License for more details.
+
+   You should have received a copy of the GNU Library General Public
+   License along with the GNU C Library; see the file COPYING.LIB.  If not,
+   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+   Boston, MA 02111-1307, USA.  */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include "getopt_win.h"
+
+#if !defined __STDC__ || !__STDC__
+/* This is a separate conditional since some stdc systems
+   reject `defined (const)'.  */
+#ifndef const
+#define const
+#endif
+#endif
+
+#include <stdio.h>
+
+/* Comment out all this code if we are using the GNU C Library, and are not
+   actually compiling the library itself.  This code is part of the GNU C
+   Library, but also included in many other GNU distributions.  Compiling
+   and linking in this code is a waste when using the GNU C library
+   (especially if it is a shared library).  Rather than having every GNU
+   program understand `configure --with-gnu-libc' and omit the object files,
+   it is simpler to just do this in the source for each such file.  */
+
+#define GETOPT_INTERFACE_VERSION 2
+#if !defined _LIBC && defined __GLIBC__ && __GLIBC__ >= 2
+#include <gnu-versions.h>
+#if _GNU_GETOPT_INTERFACE_VERSION == GETOPT_INTERFACE_VERSION
+#define ELIDE_CODE
+#endif
+#endif
+
+#ifndef ELIDE_CODE
+
+
+/* This needs to come after some library #include
+   to get __GNU_LIBRARY__ defined.  */
+#ifdef __GNU_LIBRARY__
+#include <stdlib.h>
+#endif
+
+#ifndef	NULL
+#define NULL 0
+#endif
+
+int
+getopt_long (argc, argv, options, long_options, opt_index)
+     int argc;
+     char *const *argv;
+     const char *options;
+     const struct option *long_options;
+     int *opt_index;
+{
+  return _getopt_internal (argc, argv, options, long_options, opt_index, 0);
+}
+
+/* Like getopt_long, but '-' as well as '--' can indicate a long option.
+   If an option that starts with '-' (not '--') doesn't match a long option,
+   but does match a short option, it is parsed as a short option
+   instead.  */
+
+int
+getopt_long_only (argc, argv, options, long_options, opt_index)
+     int argc;
+     char *const *argv;
+     const char *options;
+     const struct option *long_options;
+     int *opt_index;
+{
+  return _getopt_internal (argc, argv, options, long_options, opt_index, 1);
+}
+
+
+#endif	/* Not ELIDE_CODE.  */
+

+#ifdef TEST
+
+#include <stdio.h>
+
+int
+main (argc, argv)
+     int argc;
+     char **argv;
+{
+  int c;
+  int digit_optind = 0;
+
+  while (1)
+    {
+      int this_option_optind = optind ? optind : 1;
+      int option_index = 0;
+      static struct option long_options[] =
+      {
+	{"add", 1, 0, 0},
+	{"append", 0, 0, 0},
+	{"delete", 1, 0, 0},
+	{"verbose", 0, 0, 0},
+	{"create", 0, 0, 0},
+	{"file", 1, 0, 0},
+	{0, 0, 0, 0}
+      };
+
+      c = getopt_long (argc, argv, "abc:d:0123456789",
+		       long_options, &option_index);
+      if (c == -1)
+	break;
+
+      switch (c)
+	{
+	case 0:
+	  printf ("option %s", long_options[option_index].name);
+	  if (optarg)
+	    printf (" with arg %s", optarg);
+	  printf ("\n");
+	  break;
+
+	case '0':
+	case '1':
+	case '2':
+	case '3':
+	case '4':
+	case '5':
+	case '6':
+	case '7':
+	case '8':
+	case '9':
+	  if (digit_optind != 0 && digit_optind != this_option_optind)
+	    printf ("digits occur in two different argv-elements.\n");
+	  digit_optind = this_option_optind;
+	  printf ("option %c\n", c);
+	  break;
+
+	case 'a':
+	  printf ("option a\n");
+	  break;
+
+	case 'b':
+	  printf ("option b\n");
+	  break;
+
+	case 'c':
+	  printf ("option c with value `%s'\n", optarg);
+	  break;
+
+	case 'd':
+	  printf ("option d with value `%s'\n", optarg);
+	  break;
+
+	case '?':
+	  break;
+
+	default:
+	  printf ("?? getopt returned character code 0%o ??\n", c);
+	}
+    }
+
+  if (optind < argc)
+    {
+      printf ("non-option ARGV-elements: ");
+      while (optind < argc)
+	printf ("%s ", argv[optind++]);
+      printf ("\n");
+    }
+
+  exit (0);
+}
+
+#endif /* TEST */
diff --git a/win32/getopt_win.h b/win32/getopt_win.h
index b61778a..ea78b30 100644
--- a/win32/getopt_win.h
+++ b/win32/getopt_win.h
@@ -27,73 +27,73 @@
 extern "C" {
 #endif
 
-  /* For communication from `getopt' to the caller.
-     When `getopt' finds an option that takes an argument,
-     the argument value is returned here.
-     Also, when `ordering' is RETURN_IN_ORDER,
-     each non-option ARGV-element is returned here.  */
+/* For communication from `getopt' to the caller.
+   When `getopt' finds an option that takes an argument,
+   the argument value is returned here.
+   Also, when `ordering' is RETURN_IN_ORDER,
+   each non-option ARGV-element is returned here.  */
 
-  extern char *optarg;
+extern char *optarg;
 
-  /* Index in ARGV of the next element to be scanned.
-     This is used for communication to and from the caller
-     and for communication between successive calls to `getopt'.
+/* Index in ARGV of the next element to be scanned.
+   This is used for communication to and from the caller
+   and for communication between successive calls to `getopt'.
 
-     On entry to `getopt', zero means this is the first call; initialize.
+   On entry to `getopt', zero means this is the first call; initialize.
 
-     When `getopt' returns -1, this is the index of the first of the
-     non-option elements that the caller should itself scan.
+   When `getopt' returns -1, this is the index of the first of the
+   non-option elements that the caller should itself scan.
 
-     Otherwise, `optind' communicates from one call to the next
-     how much of ARGV has been scanned so far.  */
+   Otherwise, `optind' communicates from one call to the next
+   how much of ARGV has been scanned so far.  */
 
-  extern int optind;
+extern int optind;
 
-  /* Callers store zero here to inhibit the error message `getopt' prints
-     for unrecognized options.  */
+/* Callers store zero here to inhibit the error message `getopt' prints
+   for unrecognized options.  */
 
-  extern int opterr;
+extern int opterr;
 
-  /* Set to an option character which was unrecognized.  */
+/* Set to an option character which was unrecognized.  */
 
-  extern int optopt;
+extern int optopt;
 
 #ifndef __need_getopt
-  /* Describe the long-named options requested by the application.
-     The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
-     of `struct option' terminated by an element containing a name which is
-     zero.
-
-     The field `has_arg' is:
-     no_argument		(or 0) if the option does not take an argument,
-     required_argument	(or 1) if the option requires an argument,
-     optional_argument 	(or 2) if the option takes an optional argument.
-
-     If the field `flag' is not NULL, it points to a variable that is set
-     to the value given in the field `val' when the option is found, but
-     left unchanged if the option is not found.
-
-     To have a long-named option do something other than set an `int' to
-     a compiled-in constant, such as set a value from `optarg', set the
-     option's `flag' field to zero and its `val' field to a nonzero
-     value (the equivalent single-letter option character, if there is
-     one).  For long options that have a zero `flag' field, `getopt'
-     returns the contents of the `val' field.  */
-
-  struct option {
+/* Describe the long-named options requested by the application.
+   The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector
+   of `struct option' terminated by an element containing a name which is
+   zero.
+
+   The field `has_arg' is:
+   no_argument		(or 0) if the option does not take an argument,
+   required_argument	(or 1) if the option requires an argument,
+   optional_argument 	(or 2) if the option takes an optional argument.
+
+   If the field `flag' is not NULL, it points to a variable that is set
+   to the value given in the field `val' when the option is found, but
+   left unchanged if the option is not found.
+
+   To have a long-named option do something other than set an `int' to
+   a compiled-in constant, such as set a value from `optarg', set the
+   option's `flag' field to zero and its `val' field to a nonzero
+   value (the equivalent single-letter option character, if there is
+   one).  For long options that have a zero `flag' field, `getopt'
+   returns the contents of the `val' field.  */
+
+struct option {
 # if defined __STDC__ && __STDC__
-    const char *name;
+  const char *name;
 # else
-    char *name;
+  char *name;
 # endif
-    /* has_arg can't be an enum because some compilers complain about
-       type mismatches in all the code that assumes it is an int.  */
-    int has_arg;
-    int *flag;
-    int val;
-  };
+  /* has_arg can't be an enum because some compilers complain about
+     type mismatches in all the code that assumes it is an int.  */
+  int has_arg;
+  int *flag;
+  int val;
+};
 
-  /* Names for the values of the `has_arg' field of `struct option'.  */
+/* Names for the values of the `has_arg' field of `struct option'.  */
 
 # define no_argument		0
 # define required_argument	1
@@ -101,60 +101,60 @@ extern "C" {
 #endif	/* need getopt */
 
 
-  /* Get definitions and prototypes for functions to process the
-     arguments in ARGV (ARGC of them, minus the program name) for
-     options given in OPTS.
+/* Get definitions and prototypes for functions to process the
+   arguments in ARGV (ARGC of them, minus the program name) for
+   options given in OPTS.
 
-     Return the option character from OPTS just read.  Return -1 when
-     there are no more options.  For unrecognized options, or options
-     missing arguments, `optopt' is set to the option letter, and '?' is
-     returned.
+   Return the option character from OPTS just read.  Return -1 when
+   there are no more options.  For unrecognized options, or options
+   missing arguments, `optopt' is set to the option letter, and '?' is
+   returned.
 
-     The OPTS string is a list of characters which are recognized option
-     letters, optionally followed by colons, specifying that that letter
-     takes an argument, to be placed in `optarg'.
+   The OPTS string is a list of characters which are recognized option
+   letters, optionally followed by colons, specifying that that letter
+   takes an argument, to be placed in `optarg'.
 
-     If a letter in OPTS is followed by two colons, its argument is
-     optional.  This behavior is specific to the GNU `getopt'.
+   If a letter in OPTS is followed by two colons, its argument is
+   optional.  This behavior is specific to the GNU `getopt'.
 
-     The argument `--' causes premature termination of argument
-     scanning, explicitly telling `getopt' that there are no more
-     options.
+   The argument `--' causes premature termination of argument
+   scanning, explicitly telling `getopt' that there are no more
+   options.
 
-     If OPTS begins with `--', then non-option arguments are treated as
-     arguments to the option '\0'.  This behavior is specific to the GNU
-     `getopt'.  */
+   If OPTS begins with `--', then non-option arguments are treated as
+   arguments to the option '\0'.  This behavior is specific to the GNU
+   `getopt'.  */
 
 #if defined __STDC__ && __STDC__
 # ifdef __GNU_LIBRARY__
-  /* Many other libraries have conflicting prototypes for getopt, with
-     differences in the consts, in stdlib.h.  To avoid compilation
-     errors, only prototype getopt for the GNU C library.  */
-  extern int getopt (int __argc, char *const *__argv, const char *__shortopts);
+/* Many other libraries have conflicting prototypes for getopt, with
+   differences in the consts, in stdlib.h.  To avoid compilation
+   errors, only prototype getopt for the GNU C library.  */
+extern int getopt (int __argc, char *const *__argv, const char *__shortopts);
 # else /* not __GNU_LIBRARY__ */
-  extern int getopt ();
+extern int getopt ();
 # endif /* __GNU_LIBRARY__ */
 
 # ifndef __need_getopt
-  extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
-                          const struct option *__longopts, int *__longind);
-  extern int getopt_long_only (int __argc, char *const *__argv,
-                               const char *__shortopts,
-                               const struct option *__longopts, int *__longind);
-
-  /* Internal only.  Users should not call this directly.  */
-  extern int _getopt_internal (int __argc, char *const *__argv,
-                               const char *__shortopts,
-                               const struct option *__longopts, int *__longind,
-                               int __long_only);
+extern int getopt_long (int __argc, char *const *__argv, const char *__shortopts,
+                        const struct option *__longopts, int *__longind);
+extern int getopt_long_only (int __argc, char *const *__argv,
+                             const char *__shortopts,
+                             const struct option *__longopts, int *__longind);
+
+/* Internal only.  Users should not call this directly.  */
+extern int _getopt_internal (int __argc, char *const *__argv,
+                             const char *__shortopts,
+                             const struct option *__longopts, int *__longind,
+                             int __long_only);
 # endif
 #else /* not __STDC__ */
-  extern int getopt ();
+extern int getopt ();
 # ifndef __need_getopt
-  extern int getopt_long ();
-  extern int getopt_long_only ();
+extern int getopt_long ();
+extern int getopt_long_only ();
 
-  extern int _getopt_internal ();
+extern int _getopt_internal ();
 # endif
 #endif /* __STDC__ */
 

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-xiph/oggvideotools.git



More information about the pkg-xiph-commits mailing list