2009-07-16 16:48:47 +02:00
|
|
|
// Copyright (c) 2008-2009, Karl Blomster
|
2008-09-23 22:02:21 +02:00
|
|
|
// All rights reserved.
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions are met:
|
|
|
|
//
|
|
|
|
// * Redistributions of source code must retain the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer.
|
|
|
|
// * Redistributions in binary form must reproduce the above copyright notice,
|
|
|
|
// this list of conditions and the following disclaimer in the documentation
|
|
|
|
// and/or other materials provided with the distribution.
|
|
|
|
// * Neither the name of the Aegisub Group nor the names of its contributors
|
|
|
|
// may be used to endorse or promote products derived from this software
|
|
|
|
// without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
// POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// Aegisub Project http://www.aegisub.org/
|
2008-09-23 22:02:21 +02:00
|
|
|
//
|
2009-07-29 07:43:02 +02:00
|
|
|
// $Id$
|
|
|
|
|
|
|
|
/// @file audio_provider_ffmpegsource.cpp
|
|
|
|
/// @brief ffms2-based audio provider
|
2009-07-30 08:40:25 +02:00
|
|
|
/// @ingroup audio_input ffms
|
2009-07-29 07:43:02 +02:00
|
|
|
///
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-01-04 07:31:48 +01:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-12-22 22:25:49 +01:00
|
|
|
#ifdef WITH_FFMS2
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#ifndef AGI_PRE
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
|
|
|
#include <objbase.h>
|
|
|
|
#endif
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-09-10 15:06:40 +02:00
|
|
|
#include <map>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "audio_provider_ffmpegsource.h"
|
2012-01-08 02:33:39 +01:00
|
|
|
|
|
|
|
#include "audio_controller.h"
|
2010-08-02 08:32:01 +02:00
|
|
|
#include "compat.h"
|
2010-05-21 03:13:36 +02:00
|
|
|
#include "main.h"
|
2008-09-23 22:02:21 +02:00
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Constructor
|
|
|
|
/// @param filename
|
|
|
|
///
|
2010-08-02 08:32:01 +02:00
|
|
|
FFmpegSourceAudioProvider::FFmpegSourceAudioProvider(wxString filename)
|
|
|
|
: AudioSource(NULL)
|
|
|
|
, COMInited(false)
|
|
|
|
{
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
2009-05-25 18:42:33 +02:00
|
|
|
HRESULT res;
|
|
|
|
res = CoInitializeEx(NULL, COINIT_APARTMENTTHREADED);
|
|
|
|
if (SUCCEEDED(res))
|
|
|
|
COMInited = true;
|
|
|
|
else if (res != RPC_E_CHANGED_MODE)
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioProviderOpenError("COM initialization failure", 0);
|
2009-05-25 17:52:42 +02:00
|
|
|
#endif
|
2010-11-09 20:55:23 +01:00
|
|
|
// initialize ffmpegsource
|
|
|
|
// FIXME: CPU detection?
|
|
|
|
#if FFMS_VERSION >= ((2 << 24) | (14 << 16) | (0 << 8) | 0)
|
|
|
|
FFMS_Init(0, 1);
|
|
|
|
#else
|
2009-07-14 00:30:48 +02:00
|
|
|
FFMS_Init(0);
|
2010-11-09 20:55:23 +01:00
|
|
|
#endif
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrInfo.Buffer = FFMSErrMsg;
|
|
|
|
ErrInfo.BufferSize = sizeof(FFMSErrMsg);
|
|
|
|
ErrInfo.ErrorType = FFMS_ERROR_SUCCESS;
|
|
|
|
ErrInfo.SubType = FFMS_ERROR_SUCCESS;
|
2009-07-24 03:41:16 +02:00
|
|
|
SetLogLevel();
|
|
|
|
|
2008-09-23 22:02:21 +02:00
|
|
|
try {
|
|
|
|
LoadAudio(filename);
|
|
|
|
} catch (...) {
|
|
|
|
Close();
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Load audio file
|
|
|
|
/// @param filename
|
|
|
|
///
|
2009-07-23 17:16:53 +02:00
|
|
|
void FFmpegSourceAudioProvider::LoadAudio(wxString filename) {
|
2009-07-23 21:57:57 +02:00
|
|
|
wxString FileNameShort = wxFileName(filename).GetShortPath();
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Indexer *Indexer = FFMS_CreateIndexer(FileNameShort.utf8_str(), &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (Indexer == NULL) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw agi::FileNotFoundError(ErrInfo.Buffer);
|
2009-07-16 16:48:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::map<int,wxString> TrackList = GetTracksOfType(Indexer, FFMS_TYPE_AUDIO);
|
|
|
|
if (TrackList.size() <= 0)
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioDataNotFoundError("no audio tracks found", 0);
|
2009-07-16 16:48:47 +02:00
|
|
|
|
|
|
|
// initialize the track number to an invalid value so we can detect later on
|
|
|
|
// whether the user actually had to choose a track or not
|
|
|
|
int TrackNumber = -1;
|
|
|
|
if (TrackList.size() > 1) {
|
|
|
|
TrackNumber = AskForTrackSelection(TrackList, FFMS_TYPE_AUDIO);
|
|
|
|
// if it's still -1 here, user pressed cancel
|
|
|
|
if (TrackNumber == -1)
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::UserCancelException("audio loading canceled by user");
|
2009-07-16 16:48:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// generate a name for the cache file
|
2009-07-23 21:57:57 +02:00
|
|
|
wxString CacheName = GetCacheFilename(filename);
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// try to read index
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Index *Index = NULL;
|
|
|
|
Index = FFMS_ReadIndex(CacheName.utf8_str(), &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
bool IndexIsValid = false;
|
|
|
|
if (Index != NULL) {
|
2009-09-26 23:58:00 +02:00
|
|
|
if (FFMS_IndexBelongsToFile(Index, FileNameShort.utf8_str(), &ErrInfo)) {
|
2009-07-16 16:48:47 +02:00
|
|
|
FFMS_DestroyIndex(Index);
|
|
|
|
Index = NULL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
IndexIsValid = true;
|
2009-07-14 00:30:48 +02:00
|
|
|
}
|
2009-07-16 16:48:47 +02:00
|
|
|
|
|
|
|
// index valid but track number still not set?
|
|
|
|
if (IndexIsValid) {
|
|
|
|
// track number not set? just grab the first track
|
|
|
|
if (TrackNumber < 0)
|
2009-09-26 23:58:00 +02:00
|
|
|
TrackNumber = FFMS_GetFirstTrackOfType(Index, FFMS_TYPE_AUDIO, &ErrInfo);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (TrackNumber < 0) {
|
2009-05-28 21:34:52 +02:00
|
|
|
FFMS_DestroyIndex(Index);
|
2009-04-29 19:40:02 +02:00
|
|
|
Index = NULL;
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioDataNotFoundError(std::string("Couldn't find any audio tracks: ") + ErrInfo.Buffer, 0);
|
2009-04-29 19:40:02 +02:00
|
|
|
}
|
2008-09-24 01:30:27 +02:00
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// index is valid and track number is now set,
|
|
|
|
// but do we have indexing info for the desired audio track?
|
2009-09-26 23:58:00 +02:00
|
|
|
FFMS_Track *TempTrackData = FFMS_GetTrackFromIndex(Index, TrackNumber);
|
2009-07-16 16:48:47 +02:00
|
|
|
if (FFMS_GetNumFrames(TempTrackData) <= 0) {
|
|
|
|
IndexIsValid = false;
|
|
|
|
FFMS_DestroyIndex(Index);
|
|
|
|
Index = NULL;
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
2008-09-24 01:30:27 +02:00
|
|
|
}
|
2009-11-21 23:08:03 +01:00
|
|
|
// no valid index exists and the file only has one audio track, index it
|
2009-07-16 16:48:47 +02:00
|
|
|
else if (TrackNumber < 0)
|
2009-07-16 23:40:17 +02:00
|
|
|
TrackNumber = FFMS_TRACKMASK_ALL;
|
2009-07-16 16:48:47 +02:00
|
|
|
// else: do nothing (keep track mask as it is)
|
2009-07-14 00:30:48 +02:00
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// moment of truth
|
|
|
|
if (!IndexIsValid) {
|
2009-11-21 23:08:03 +01:00
|
|
|
int TrackMask;
|
2010-05-21 03:13:36 +02:00
|
|
|
if (OPT_GET("Provider/FFmpegSource/Index All Tracks")->GetBool() || TrackNumber == FFMS_TRACKMASK_ALL)
|
2009-11-21 23:08:03 +01:00
|
|
|
TrackMask = FFMS_TRACKMASK_ALL;
|
|
|
|
else
|
|
|
|
TrackMask = (1 << TrackNumber);
|
|
|
|
|
2009-07-14 00:30:48 +02:00
|
|
|
try {
|
2009-11-28 22:13:47 +01:00
|
|
|
Index = DoIndexing(Indexer, CacheName, TrackMask, GetErrorHandlingMode());
|
2010-08-02 08:32:01 +02:00
|
|
|
}
|
|
|
|
catch (wxString const& err) {
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioProviderOpenError(STD_STR(err), 0);
|
2009-07-14 00:30:48 +02:00
|
|
|
}
|
2009-11-21 23:08:03 +01:00
|
|
|
|
|
|
|
// if tracknumber still isn't set we need to set it now
|
|
|
|
if (TrackNumber == FFMS_TRACKMASK_ALL)
|
|
|
|
TrackNumber = FFMS_GetFirstTrackOfType(Index, FFMS_TYPE_AUDIO, &ErrInfo);
|
2009-07-14 00:30:48 +02:00
|
|
|
}
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-05-03 20:05:30 +02:00
|
|
|
// update access time of index file so it won't get cleaned away
|
2009-07-27 01:10:12 +02:00
|
|
|
if (!wxFileName(CacheName).Touch()) {
|
|
|
|
// warn user?
|
|
|
|
}
|
2009-05-03 20:05:30 +02:00
|
|
|
|
2010-12-29 07:27:02 +01:00
|
|
|
#if FFMS_VERSION >= ((2 << 24) | (14 << 16) | (1 << 8) | 0)
|
|
|
|
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, -1, &ErrInfo);
|
|
|
|
#else
|
2009-09-26 23:58:00 +02:00
|
|
|
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, &ErrInfo);
|
2010-12-29 07:27:02 +01:00
|
|
|
#endif
|
2009-05-28 21:34:52 +02:00
|
|
|
FFMS_DestroyIndex(Index);
|
2009-04-29 19:40:02 +02:00
|
|
|
Index = NULL;
|
2008-09-23 22:02:21 +02:00
|
|
|
if (!AudioSource) {
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioProviderOpenError(std::string("Failed to open audio track: %s") + ErrInfo.Buffer, 0);
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
const FFMS_AudioProperties AudioInfo = *FFMS_GetAudioProperties(AudioSource);
|
2008-09-23 22:02:21 +02:00
|
|
|
|
|
|
|
channels = AudioInfo.Channels;
|
|
|
|
sample_rate = AudioInfo.SampleRate;
|
2010-12-29 07:26:56 +01:00
|
|
|
num_samples = AudioInfo.NumSamples;
|
|
|
|
if (channels <= 0 || sample_rate <= 0 || num_samples <= 0)
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioProviderOpenError("sanity check failed, consult your local psychiatrist", 0);
|
2008-09-23 22:02:21 +02:00
|
|
|
|
2009-07-16 16:48:47 +02:00
|
|
|
// FIXME: use the actual sample format too?
|
2008-09-23 22:02:21 +02:00
|
|
|
// why not just bits_per_sample/8? maybe there's some oddball format with half bytes out there somewhere...
|
|
|
|
switch (AudioInfo.BitsPerSample) {
|
|
|
|
case 8: bytes_per_sample = 1; break;
|
|
|
|
case 16: bytes_per_sample = 2; break;
|
|
|
|
case 24: bytes_per_sample = 3; break;
|
|
|
|
case 32: bytes_per_sample = 4; break;
|
|
|
|
default:
|
2012-01-08 02:33:39 +01:00
|
|
|
throw agi::AudioProviderOpenError("unknown or unsupported sample format", 0);
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Destructor
|
|
|
|
///
|
2008-09-23 22:02:21 +02:00
|
|
|
FFmpegSourceAudioProvider::~FFmpegSourceAudioProvider() {
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Clean up
|
|
|
|
///
|
2008-09-23 22:02:21 +02:00
|
|
|
void FFmpegSourceAudioProvider::Close() {
|
2010-08-02 08:32:01 +02:00
|
|
|
if (AudioSource) FFMS_DestroyAudioSource(AudioSource);
|
|
|
|
#ifdef WIN32
|
|
|
|
if (COMInited)
|
|
|
|
CoUninitialize();
|
|
|
|
#endif
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
|
|
|
|
Note: This was done using a script! it's far from perfect but 95% of the work has been done already formatting-wise.
Document all functions, class, struct, union, enum, macro, variable, typedefs. This isn't the actual document in itself but empty documentation using any old documentation if it was there.
This was done using exuberant ctags to get tag info, then a TCL script to parse/remove old comments and convert them into Doxygen-style.
Some notes:
* Anything labeled 'DOCME' needs to be documented, @param and @return have been left blank as it would be annoying to delete the 'DOCME' from every one of those.
* Some multiline comments may have been munged into single line comments
* Leave the /// comments above global variables with a space, if they're harder to read then we'll be less likey to use them.
* Enum comments can go after the enumeration itself '[value] /// comment'
* include/aegisub/*.h haven't been converted yet, this will be done in a later commit
* Some documentation blocks are in the wrong place, in the .h when it should be in the .cpp, or vice versa.
See http://devel.aegisub.org/wiki/Doxygen for some details on Doxygen and a 'style guide'.
Originally committed to SVN as r3312.
2009-07-30 00:59:22 +02:00
|
|
|
/// @brief Get audio
|
|
|
|
/// @param Buf
|
|
|
|
/// @param Start
|
|
|
|
/// @param Count
|
|
|
|
///
|
2010-12-08 04:36:10 +01:00
|
|
|
void FFmpegSourceAudioProvider::GetAudio(void *Buf, int64_t Start, int64_t Count) const {
|
2010-12-29 07:26:56 +01:00
|
|
|
if (FFMS_GetAudio(AudioSource, Buf, Start, Count, &ErrInfo)) {
|
2010-08-02 08:32:01 +02:00
|
|
|
throw AudioDecodeError(std::string("Failed to get audio samples: ") + ErrInfo.Buffer);
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
|
|
|
}
|
2011-12-22 22:25:49 +01:00
|
|
|
#endif /* WITH_FFMS2 */
|