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"
|
|
|
|
|
2008-09-23 22:02:21 +02:00
|
|
|
#ifdef WITH_FFMPEGSOURCE
|
|
|
|
|
|
|
|
///////////
|
|
|
|
// Headers
|
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"
|
|
|
|
#include "include/aegisub/aegisub.h"
|
|
|
|
#include "options.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
|
|
|
|
///
|
2009-07-23 17:16:53 +02:00
|
|
|
FFmpegSourceAudioProvider::FFmpegSourceAudioProvider(wxString filename) {
|
2009-05-25 18:42:33 +02:00
|
|
|
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)
|
|
|
|
throw _T("FFmpegSource video provider: COM initialization failure");
|
2009-05-25 17:52:42 +02:00
|
|
|
#endif
|
2009-07-14 00:30:48 +02:00
|
|
|
FFMS_Init(0);
|
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-16 16:48:47 +02:00
|
|
|
ErrorMsg = _T("FFmpegSource audio provider: ");
|
2008-09-23 22:02:21 +02:00
|
|
|
|
|
|
|
AudioSource = NULL;
|
|
|
|
|
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) {
|
2008-09-23 22:02:21 +02:00
|
|
|
// clean up
|
|
|
|
Close();
|
|
|
|
|
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) {
|
|
|
|
// error messages that can possibly contain a filename use this method instead of
|
|
|
|
// wxString::Format because they may contain utf8 characters
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(_T("Failed to create indexer: ")).Append(wxString(ErrInfo.Buffer, wxConvUTF8));
|
2009-07-16 16:48:47 +02:00
|
|
|
throw ErrorMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::map<int,wxString> TrackList = GetTracksOfType(Indexer, FFMS_TYPE_AUDIO);
|
|
|
|
if (TrackList.size() <= 0)
|
|
|
|
throw _T("FFmpegSource audio provider: no audio tracks found");
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
throw _T("FFmpegSource audio provider: audio loading cancelled by user");
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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;
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Couldn't find any audio tracks: %s"), ErrInfo.Buffer));
|
2009-07-16 16:48:47 +02:00
|
|
|
throw ErrorMsg;
|
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;
|
|
|
|
if (Options.AsBool(_T("FFmpegSource always index all tracks")) || TrackNumber == FFMS_TRACKMASK_ALL)
|
|
|
|
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());
|
2009-07-14 00:30:48 +02:00
|
|
|
} catch (wxString temp) {
|
2009-07-16 16:48:47 +02:00
|
|
|
ErrorMsg.Append(temp);
|
|
|
|
throw ErrorMsg;
|
2009-07-14 00:30:48 +02:00
|
|
|
} catch (...) {
|
|
|
|
throw;
|
|
|
|
}
|
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
|
|
|
|
2009-09-26 23:58:00 +02:00
|
|
|
AudioSource = FFMS_CreateAudioSource(FileNameShort.utf8_str(), TrackNumber, Index, &ErrInfo);
|
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) {
|
2009-09-26 23:58:00 +02:00
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to open audio track: %s"), ErrInfo.Buffer));
|
2009-07-16 16:48:47 +02:00
|
|
|
throw ErrorMsg;
|
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;
|
|
|
|
num_samples = AudioInfo.NumSamples;
|
2008-09-24 01:30:27 +02:00
|
|
|
if (channels <= 0 || sample_rate <= 0 || num_samples <= 0)
|
|
|
|
throw _T("FFmpegSource audio provider: sanity check failed, consult your local psychiatrist");
|
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:
|
|
|
|
throw _T("FFmpegSource audio provider: unknown or unsupported sample format");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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();
|
2009-05-25 17:52:42 +02:00
|
|
|
#ifdef WIN32
|
2009-05-25 18:42:33 +02:00
|
|
|
if (COMInited)
|
|
|
|
CoUninitialize();
|
2009-05-25 17:52:42 +02:00
|
|
|
#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 Clean up
|
|
|
|
///
|
2008-09-23 22:02:21 +02:00
|
|
|
void FFmpegSourceAudioProvider::Close() {
|
2009-04-29 19:40:02 +02:00
|
|
|
FFMS_DestroyAudioSource(AudioSource);
|
2008-09-23 22:02:21 +02:00
|
|
|
AudioSource = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
///
|
2008-09-23 22:02:21 +02:00
|
|
|
void FFmpegSourceAudioProvider::GetAudio(void *Buf, int64_t Start, int64_t Count) {
|
2009-09-26 23:58:00 +02:00
|
|
|
if (FFMS_GetAudio(AudioSource, Buf, Start, Count, &ErrInfo)) {
|
|
|
|
ErrorMsg.Append(wxString::Format(_T("Failed to get audio samples: %s"), ErrInfo.Buffer));
|
2009-07-16 16:48:47 +02:00
|
|
|
throw ErrorMsg;
|
2008-09-23 22:02:21 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-12-28 04:07:40 +01:00
|
|
|
#endif /* WITH_FFMPEGSOURCE */
|
2009-07-29 07:43:02 +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
|
|
|
|