[oggvideotools] 02/05: Merge tag 'upstream/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 93b8305c2beab1ae2017a9c79134fddd6d9ae200
Merge: d73ab4a 4363715
Author: Petter Reinholdtsen <pere at hungry.com>
Date:   Fri Feb 26 16:01:41 2016 +0000

    Merge tag 'upstream/0.9'
    
    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(-)

-- 
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