2002-06-07 05:27:37 +00:00
|
|
|
/* test_libFLAC++ - Unit tester for libFLAC++
|
2006-04-25 06:59:33 +00:00
|
|
|
* Copyright (C) 2002,2003,2004,2005,2006 Josh Coalson
|
2002-06-07 05:27:37 +00:00
|
|
|
*
|
|
|
|
|
* 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
|
# include <config.h>
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-05-24 04:41:36 +00:00
|
|
|
#include <errno.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#if defined _MSC_VER || defined __MINGW32__
|
2006-10-03 01:16:59 +00:00
|
|
|
#if _MSC_VER <= 1200 /* @@@ [2G limit] */
|
2006-05-24 04:41:36 +00:00
|
|
|
#define fseeko fseek
|
|
|
|
|
#define ftello ftell
|
|
|
|
|
#endif
|
2006-10-03 01:16:59 +00:00
|
|
|
#endif
|
2002-06-07 05:27:37 +00:00
|
|
|
#include "decoders.h"
|
|
|
|
|
#include "FLAC/assert.h"
|
|
|
|
|
#include "FLAC/metadata.h" // for ::FLAC__metadata_object_is_equal()
|
|
|
|
|
#include "FLAC++/decoder.h"
|
2002-11-07 05:07:30 +00:00
|
|
|
#include "share/grabbag.h"
|
2006-09-13 01:42:27 +00:00
|
|
|
extern "C" {
|
|
|
|
|
#include "test_libs_common/file_utils_flac.h"
|
|
|
|
|
#include "test_libs_common/metadata_utils.h"
|
|
|
|
|
}
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2004-07-23 05:11:06 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
|
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
|
|
|
|
|
#pragma warning ( disable : 4800 )
|
|
|
|
|
#endif
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
typedef enum {
|
|
|
|
|
LAYER_STREAM = 0, /* FLAC__stream_decoder_init_stream() without seeking */
|
|
|
|
|
LAYER_SEEKABLE_STREAM, /* FLAC__stream_decoder_init_stream() with seeking */
|
|
|
|
|
LAYER_FILE, /* FLAC__stream_decoder_init_FILE() */
|
|
|
|
|
LAYER_FILENAME /* FLAC__stream_decoder_init_file() */
|
|
|
|
|
} Layer;
|
|
|
|
|
|
|
|
|
|
static const char * const LayerString[] = {
|
|
|
|
|
"Stream",
|
|
|
|
|
"Seekable Stream",
|
|
|
|
|
"FILE*",
|
|
|
|
|
"Filename"
|
|
|
|
|
};
|
|
|
|
|
|
2006-09-23 19:21:19 +00:00
|
|
|
static ::FLAC__StreamMetadata streaminfo_, padding_, seektable_, application1_, application2_, vorbiscomment_, cuesheet_, picture_, unknown_;
|
|
|
|
|
static ::FLAC__StreamMetadata *expected_metadata_sequence_[9];
|
2002-06-07 05:27:37 +00:00
|
|
|
static unsigned num_expected_;
|
|
|
|
|
static const char *flacfilename_ = "metadata.flac";
|
2006-05-24 04:41:36 +00:00
|
|
|
static off_t flacfilesize_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
|
|
|
|
static bool die_(const char *msg)
|
|
|
|
|
{
|
|
|
|
|
printf("ERROR: %s\n", msg);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
static FLAC__bool die_s_(const char *msg, const FLAC::Decoder::Stream *decoder)
|
|
|
|
|
{
|
|
|
|
|
FLAC::Decoder::Stream::State state = decoder->get_state();
|
|
|
|
|
|
|
|
|
|
if(msg)
|
|
|
|
|
printf("FAILED, %s", msg);
|
|
|
|
|
else
|
|
|
|
|
printf("FAILED");
|
|
|
|
|
|
|
|
|
|
printf(", state = %u (%s)\n", (unsigned)((::FLAC__StreamDecoderState)state), state.as_cstring());
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-07 05:27:37 +00:00
|
|
|
static void init_metadata_blocks_()
|
|
|
|
|
{
|
2006-09-23 19:21:19 +00:00
|
|
|
mutils__init_metadata_blocks(&streaminfo_, &padding_, &seektable_, &application1_, &application2_, &vorbiscomment_, &cuesheet_, &picture_, &unknown_);
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void free_metadata_blocks_()
|
|
|
|
|
{
|
2006-09-23 19:21:19 +00:00
|
|
|
mutils__free_metadata_blocks(&streaminfo_, &padding_, &seektable_, &application1_, &application2_, &vorbiscomment_, &cuesheet_, &picture_, &unknown_);
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool generate_file_()
|
|
|
|
|
{
|
|
|
|
|
printf("\n\ngenerating FLAC file for decoder tests...\n");
|
|
|
|
|
|
2003-01-10 05:40:09 +00:00
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
|
|
|
|
if(!file_utils__generate_flacfile(flacfilename_, &flacfilesize_, 512 * 1024, &streaminfo_, expected_metadata_sequence_, num_expected_))
|
2002-08-27 05:46:11 +00:00
|
|
|
return die_("creating the encoded file");
|
2002-06-07 05:27:37 +00:00
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class DecoderCommon {
|
|
|
|
|
public:
|
2006-09-13 01:42:27 +00:00
|
|
|
Layer layer_;
|
2002-06-07 05:27:37 +00:00
|
|
|
unsigned current_metadata_number_;
|
|
|
|
|
bool ignore_errors_;
|
|
|
|
|
bool error_occurred_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
DecoderCommon(Layer layer): layer_(layer), current_metadata_number_(0), ignore_errors_(false), error_occurred_(false) { }
|
2002-06-07 05:27:37 +00:00
|
|
|
::FLAC__StreamDecoderWriteStatus common_write_callback_(const ::FLAC__Frame *frame);
|
2002-06-08 04:53:42 +00:00
|
|
|
void common_metadata_callback_(const ::FLAC__StreamMetadata *metadata);
|
2002-06-07 05:27:37 +00:00
|
|
|
void common_error_callback_(::FLAC__StreamDecoderErrorStatus status);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderWriteStatus DecoderCommon::common_write_callback_(const ::FLAC__Frame *frame)
|
|
|
|
|
{
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_WRITE_STATUS_ABORT;
|
|
|
|
|
|
2002-08-27 05:46:11 +00:00
|
|
|
if(
|
|
|
|
|
(frame->header.number_type == ::FLAC__FRAME_NUMBER_TYPE_FRAME_NUMBER && frame->header.number.frame_number == 0) ||
|
|
|
|
|
(frame->header.number_type == ::FLAC__FRAME_NUMBER_TYPE_SAMPLE_NUMBER && frame->header.number.sample_number == 0)
|
|
|
|
|
) {
|
|
|
|
|
printf("content... ");
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
}
|
2002-06-07 05:27:37 +00:00
|
|
|
|
|
|
|
|
return ::FLAC__STREAM_DECODER_WRITE_STATUS_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 04:53:42 +00:00
|
|
|
void DecoderCommon::common_metadata_callback_(const ::FLAC__StreamMetadata *metadata)
|
2002-06-07 05:27:37 +00:00
|
|
|
{
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
printf("%d... ", current_metadata_number_);
|
|
|
|
|
fflush(stdout);
|
|
|
|
|
|
|
|
|
|
if(current_metadata_number_ >= num_expected_) {
|
|
|
|
|
(void)die_("got more metadata blocks than expected");
|
|
|
|
|
error_occurred_ = true;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
if(!::FLAC__metadata_object_is_equal(expected_metadata_sequence_[current_metadata_number_], metadata)) {
|
|
|
|
|
(void)die_("metadata block mismatch");
|
|
|
|
|
error_occurred_ = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
current_metadata_number_++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void DecoderCommon::common_error_callback_(::FLAC__StreamDecoderErrorStatus status)
|
|
|
|
|
{
|
|
|
|
|
if(!ignore_errors_) {
|
|
|
|
|
printf("ERROR: got error callback: err = %u (%s)\n", (unsigned)status, ::FLAC__StreamDecoderErrorStatusString[status]);
|
|
|
|
|
error_occurred_ = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class StreamDecoder : public FLAC::Decoder::Stream, public DecoderCommon {
|
|
|
|
|
public:
|
2006-09-13 01:42:27 +00:00
|
|
|
FILE *file_;
|
|
|
|
|
|
|
|
|
|
StreamDecoder(Layer layer): FLAC::Decoder::Stream(), DecoderCommon(layer), file_(0) { }
|
2002-06-07 05:27:37 +00:00
|
|
|
~StreamDecoder() { }
|
|
|
|
|
|
|
|
|
|
// from FLAC::Decoder::Stream
|
|
|
|
|
::FLAC__StreamDecoderReadStatus read_callback(FLAC__byte buffer[], unsigned *bytes);
|
2006-09-13 01:42:27 +00:00
|
|
|
::FLAC__StreamDecoderSeekStatus seek_callback(FLAC__uint64 absolute_byte_offset);
|
|
|
|
|
::FLAC__StreamDecoderTellStatus tell_callback(FLAC__uint64 *absolute_byte_offset);
|
|
|
|
|
::FLAC__StreamDecoderLengthStatus length_callback(FLAC__uint64 *stream_length);
|
|
|
|
|
bool eof_callback();
|
2002-06-07 05:27:37 +00:00
|
|
|
::FLAC__StreamDecoderWriteStatus write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[]);
|
2002-06-08 04:53:42 +00:00
|
|
|
void metadata_callback(const ::FLAC__StreamMetadata *metadata);
|
2002-06-07 05:27:37 +00:00
|
|
|
void error_callback(::FLAC__StreamDecoderErrorStatus status);
|
|
|
|
|
|
|
|
|
|
bool test_respond();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderReadStatus StreamDecoder::read_callback(FLAC__byte buffer[], unsigned *bytes)
|
|
|
|
|
{
|
2006-09-13 01:42:27 +00:00
|
|
|
const unsigned requested_bytes = *bytes;
|
|
|
|
|
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_ABORT;
|
|
|
|
|
|
|
|
|
|
if(feof(file_)) {
|
|
|
|
|
*bytes = 0;
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
|
|
|
|
|
}
|
|
|
|
|
else if(requested_bytes > 0) {
|
|
|
|
|
*bytes = ::fread(buffer, 1, requested_bytes, file_);
|
|
|
|
|
if(*bytes == 0) {
|
|
|
|
|
if(feof(file_))
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_END_OF_STREAM;
|
|
|
|
|
else
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
return ::FLAC__STREAM_DECODER_READ_STATUS_ABORT; /* abort to avoid a deadlock */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderSeekStatus StreamDecoder::seek_callback(FLAC__uint64 absolute_byte_offset)
|
|
|
|
|
{
|
|
|
|
|
if(layer_ == LAYER_STREAM)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_SEEK_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
|
|
|
|
|
|
|
|
|
|
if(fseeko(file_, (off_t)absolute_byte_offset, SEEK_SET) < 0) {
|
|
|
|
|
error_occurred_ = true;
|
|
|
|
|
return ::FLAC__STREAM_DECODER_SEEK_STATUS_ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ::FLAC__STREAM_DECODER_SEEK_STATUS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderTellStatus StreamDecoder::tell_callback(FLAC__uint64 *absolute_byte_offset)
|
|
|
|
|
{
|
|
|
|
|
if(layer_ == LAYER_STREAM)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_TELL_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
|
|
|
|
|
|
|
|
|
|
off_t offset = ftello(file_);
|
|
|
|
|
*absolute_byte_offset = (FLAC__uint64)offset;
|
|
|
|
|
|
|
|
|
|
if(offset < 0) {
|
|
|
|
|
error_occurred_ = true;
|
|
|
|
|
return ::FLAC__STREAM_DECODER_TELL_STATUS_ERROR;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ::FLAC__STREAM_DECODER_TELL_STATUS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderLengthStatus StreamDecoder::length_callback(FLAC__uint64 *stream_length)
|
|
|
|
|
{
|
|
|
|
|
if(layer_ == LAYER_STREAM)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_LENGTH_STATUS_UNSUPPORTED;
|
|
|
|
|
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return ::FLAC__STREAM_DECODER_LENGTH_STATUS_ERROR;
|
|
|
|
|
|
|
|
|
|
*stream_length = (FLAC__uint64)flacfilesize_;
|
|
|
|
|
return ::FLAC__STREAM_DECODER_LENGTH_STATUS_OK;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StreamDecoder::eof_callback()
|
|
|
|
|
{
|
|
|
|
|
if(layer_ == LAYER_STREAM)
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
if(error_occurred_)
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
return (bool)feof(file_);
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderWriteStatus StreamDecoder::write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[])
|
|
|
|
|
{
|
|
|
|
|
(void)buffer;
|
|
|
|
|
|
|
|
|
|
return common_write_callback_(frame);
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-08 04:53:42 +00:00
|
|
|
void StreamDecoder::metadata_callback(const ::FLAC__StreamMetadata *metadata)
|
2002-06-07 05:27:37 +00:00
|
|
|
{
|
2002-06-11 06:15:28 +00:00
|
|
|
common_metadata_callback_(metadata);
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void StreamDecoder::error_callback(::FLAC__StreamDecoderErrorStatus status)
|
|
|
|
|
{
|
2002-06-11 06:15:28 +00:00
|
|
|
common_error_callback_(status);
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StreamDecoder::test_respond()
|
|
|
|
|
{
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!set_md5_checking(true)) {
|
|
|
|
|
printf("FAILED at set_md5_checking(), returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("testing init()... ");
|
2006-09-13 01:42:27 +00:00
|
|
|
if(init() != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, this);
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
current_metadata_number_ = 0;
|
|
|
|
|
|
2006-05-24 04:41:36 +00:00
|
|
|
if(fseeko(file_, 0, SEEK_SET) < 0) {
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("FAILED rewinding input, errno = %d\n", errno);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2002-08-02 06:12:36 +00:00
|
|
|
printf("testing process_until_end_of_stream()... ");
|
|
|
|
|
if(!process_until_end_of_stream()) {
|
2002-06-07 05:27:37 +00:00
|
|
|
State state = get_state();
|
|
|
|
|
printf("FAILED, returned false, state = %u (%s)\n", (unsigned)((::FLAC__StreamDecoderState)state), state.as_cstring());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing finish()... ");
|
|
|
|
|
finish();
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
class FileDecoder : public FLAC::Decoder::File, public DecoderCommon {
|
|
|
|
|
public:
|
|
|
|
|
FileDecoder(Layer layer): FLAC::Decoder::File(), DecoderCommon(layer) { }
|
|
|
|
|
~FileDecoder() { }
|
|
|
|
|
|
|
|
|
|
// from FLAC::Decoder::Stream
|
|
|
|
|
::FLAC__StreamDecoderWriteStatus write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[]);
|
|
|
|
|
void metadata_callback(const ::FLAC__StreamMetadata *metadata);
|
|
|
|
|
void error_callback(::FLAC__StreamDecoderErrorStatus status);
|
|
|
|
|
|
|
|
|
|
bool test_respond();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
::FLAC__StreamDecoderWriteStatus FileDecoder::write_callback(const ::FLAC__Frame *frame, const FLAC__int32 * const buffer[])
|
|
|
|
|
{
|
|
|
|
|
(void)buffer;
|
|
|
|
|
return common_write_callback_(frame);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FileDecoder::metadata_callback(const ::FLAC__StreamMetadata *metadata)
|
|
|
|
|
{
|
|
|
|
|
common_metadata_callback_(metadata);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FileDecoder::error_callback(::FLAC__StreamDecoderErrorStatus status)
|
|
|
|
|
{
|
|
|
|
|
common_error_callback_(status);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool FileDecoder::test_respond()
|
|
|
|
|
{
|
|
|
|
|
if(!set_md5_checking(true)) {
|
|
|
|
|
printf("FAILED at set_md5_checking(), returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(layer_) {
|
|
|
|
|
case LAYER_FILE:
|
|
|
|
|
{
|
|
|
|
|
printf("opening FLAC file... ");
|
|
|
|
|
FILE *file = ::fopen(flacfilename_, "rb");
|
|
|
|
|
if(0 == file) {
|
|
|
|
|
printf("ERROR (%s)\n", strerror(errno));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing init()... ");
|
|
|
|
|
if(init(file) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, this);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case LAYER_FILENAME:
|
|
|
|
|
printf("testing init()... ");
|
|
|
|
|
if(init(flacfilename_) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, this);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
die_("internal error 001");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
current_metadata_number_ = 0;
|
|
|
|
|
|
|
|
|
|
printf("testing process_until_end_of_stream()... ");
|
|
|
|
|
if(!process_until_end_of_stream()) {
|
|
|
|
|
State state = get_state();
|
|
|
|
|
printf("FAILED, returned false, state = %u (%s)\n", (unsigned)((::FLAC__StreamDecoderState)state), state.as_cstring());
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing finish()... ");
|
|
|
|
|
finish();
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static FLAC::Decoder::Stream *new_by_layer(Layer layer)
|
|
|
|
|
{
|
|
|
|
|
if(layer < LAYER_FILE)
|
|
|
|
|
return new StreamDecoder(layer);
|
|
|
|
|
else
|
|
|
|
|
return new FileDecoder(layer);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool test_stream_decoder(Layer layer)
|
2002-06-07 05:27:37 +00:00
|
|
|
{
|
2006-09-13 01:42:27 +00:00
|
|
|
FLAC::Decoder::Stream *decoder;
|
|
|
|
|
bool expect;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
printf("\n+++ libFLAC++ unit test: FLAC::Decoder::%s (layer: %s)\n\n", layer<LAYER_FILE? "Stream":"File", LayerString[layer]);
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2002-06-14 06:36:16 +00:00
|
|
|
//
|
|
|
|
|
// test new -> delete
|
|
|
|
|
//
|
|
|
|
|
printf("allocating decoder instance... ");
|
2006-09-13 01:42:27 +00:00
|
|
|
decoder = new_by_layer(layer);
|
2002-06-14 06:36:16 +00:00
|
|
|
if(0 == decoder) {
|
|
|
|
|
printf("FAILED, new returned NULL\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing is_valid()... ");
|
|
|
|
|
if(!decoder->is_valid()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("freeing decoder instance... ");
|
|
|
|
|
delete decoder;
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// test new -> init -> delete
|
|
|
|
|
//
|
|
|
|
|
printf("allocating decoder instance... ");
|
2006-09-13 01:42:27 +00:00
|
|
|
decoder = new_by_layer(layer);
|
2002-06-14 06:36:16 +00:00
|
|
|
if(0 == decoder) {
|
|
|
|
|
printf("FAILED, new returned NULL\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing is_valid()... ");
|
|
|
|
|
if(!decoder->is_valid()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing init()... ");
|
2006-09-13 01:42:27 +00:00
|
|
|
switch(layer) {
|
|
|
|
|
case LAYER_STREAM:
|
|
|
|
|
case LAYER_SEEKABLE_STREAM:
|
|
|
|
|
dynamic_cast<StreamDecoder*>(decoder)->file_ = stdin;
|
|
|
|
|
if(decoder->init() != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
break;
|
|
|
|
|
case LAYER_FILE:
|
|
|
|
|
if(dynamic_cast<FLAC::Decoder::File*>(decoder)->init(stdin) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
break;
|
|
|
|
|
case LAYER_FILENAME:
|
|
|
|
|
if(dynamic_cast<FLAC::Decoder::File*>(decoder)->init(flacfilename_) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
die_("internal error 006");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2002-06-14 06:36:16 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("freeing decoder instance... ");
|
|
|
|
|
delete decoder;
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
|
// test normal usage
|
|
|
|
|
//
|
2002-06-07 05:27:37 +00:00
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
|
|
|
|
|
printf("allocating decoder instance... ");
|
2006-09-13 01:42:27 +00:00
|
|
|
decoder = new_by_layer(layer);
|
2002-06-07 05:27:37 +00:00
|
|
|
if(0 == decoder) {
|
|
|
|
|
printf("FAILED, new returned NULL\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing is_valid()... ");
|
|
|
|
|
if(!decoder->is_valid()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!decoder->set_md5_checking(true)) {
|
|
|
|
|
printf("FAILED at set_md5_checking(), returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch(layer) {
|
|
|
|
|
case LAYER_STREAM:
|
|
|
|
|
case LAYER_SEEKABLE_STREAM:
|
|
|
|
|
printf("opening FLAC file... ");
|
|
|
|
|
dynamic_cast<StreamDecoder*>(decoder)->file_ = ::fopen(flacfilename_, "rb");
|
|
|
|
|
if(0 == dynamic_cast<StreamDecoder*>(decoder)->file_) {
|
|
|
|
|
printf("ERROR (%s)\n", strerror(errno));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing init()... ");
|
|
|
|
|
if(decoder->init() != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
break;
|
|
|
|
|
case LAYER_FILE:
|
|
|
|
|
{
|
|
|
|
|
printf("opening FLAC file... ");
|
|
|
|
|
FILE *file = ::fopen(flacfilename_, "rb");
|
|
|
|
|
if(0 == file) {
|
|
|
|
|
printf("ERROR (%s)\n", strerror(errno));
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing init()... ");
|
|
|
|
|
if(dynamic_cast<FLAC::Decoder::File*>(decoder)->init(file) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case LAYER_FILENAME:
|
|
|
|
|
printf("testing init()... ");
|
|
|
|
|
if(dynamic_cast<FLAC::Decoder::File*>(decoder)->init(flacfilename_) != ::FLAC__STREAM_DECODER_INIT_STATUS_OK)
|
|
|
|
|
return die_s_(0, decoder);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
die_("internal error 009");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing get_state()... ");
|
|
|
|
|
FLAC::Decoder::Stream::State state = decoder->get_state();
|
|
|
|
|
printf("returned state = %u (%s)... OK\n", (unsigned)((::FLAC__StreamDecoderState)state), state.as_cstring());
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->current_metadata_number_ = 0;
|
|
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->ignore_errors_ = false;
|
|
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->error_occurred_ = false;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
printf("testing get_md5_checking()... ");
|
|
|
|
|
if(!decoder->get_md5_checking()) {
|
|
|
|
|
printf("FAILED, returned false, expected true\n");
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
2002-08-02 06:12:36 +00:00
|
|
|
printf("testing process_until_end_of_metadata()... ");
|
|
|
|
|
if(!decoder->process_until_end_of_metadata())
|
2006-09-13 01:42:27 +00:00
|
|
|
return die_s_("returned false", decoder);
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
2002-08-02 06:12:36 +00:00
|
|
|
printf("testing process_single()... ");
|
|
|
|
|
if(!decoder->process_single())
|
2006-09-13 01:42:27 +00:00
|
|
|
return die_s_("returned false", decoder);
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
2004-07-16 00:53:38 +00:00
|
|
|
printf("testing skip_single_frame()... ");
|
|
|
|
|
if(!decoder->skip_single_frame())
|
2006-09-13 01:42:27 +00:00
|
|
|
return die_s_("returned false", decoder);
|
2004-07-16 00:53:38 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(layer < LAYER_FILE) {
|
|
|
|
|
printf("testing flush()... ");
|
|
|
|
|
if(!decoder->flush())
|
|
|
|
|
return die_s_("returned false", decoder);
|
|
|
|
|
printf("OK\n");
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->ignore_errors_ = true;
|
|
|
|
|
printf("testing process_single()... ");
|
|
|
|
|
if(!decoder->process_single())
|
|
|
|
|
return die_s_("returned false", decoder);
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->ignore_errors_ = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
expect = (layer != LAYER_STREAM);
|
|
|
|
|
printf("testing seek_absolute()... ");
|
|
|
|
|
if(decoder->seek_absolute(0) != expect)
|
|
|
|
|
return die_s_(expect? "returned false" : "returned true", decoder);
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
2002-08-02 06:12:36 +00:00
|
|
|
printf("testing process_until_end_of_stream()... ");
|
|
|
|
|
if(!decoder->process_until_end_of_stream())
|
2006-09-13 01:42:27 +00:00
|
|
|
return die_s_("returned false", decoder);
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
expect = (layer != LAYER_STREAM);
|
|
|
|
|
printf("testing seek_absolute()... ");
|
|
|
|
|
if(decoder->seek_absolute(0) != expect)
|
|
|
|
|
return die_s_(expect? "returned false" : "returned true", decoder);
|
2002-06-07 05:27:37 +00:00
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing get_channels()... ");
|
|
|
|
|
{
|
|
|
|
|
unsigned channels = decoder->get_channels();
|
|
|
|
|
if(channels != streaminfo_.data.stream_info.channels) {
|
|
|
|
|
printf("FAILED, returned %u, expected %u\n", channels, streaminfo_.data.stream_info.channels);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing get_bits_per_sample()... ");
|
|
|
|
|
{
|
|
|
|
|
unsigned bits_per_sample = decoder->get_bits_per_sample();
|
|
|
|
|
if(bits_per_sample != streaminfo_.data.stream_info.bits_per_sample) {
|
|
|
|
|
printf("FAILED, returned %u, expected %u\n", bits_per_sample, streaminfo_.data.stream_info.bits_per_sample);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing get_sample_rate()... ");
|
|
|
|
|
{
|
|
|
|
|
unsigned sample_rate = decoder->get_sample_rate();
|
|
|
|
|
if(sample_rate != streaminfo_.data.stream_info.sample_rate) {
|
|
|
|
|
printf("FAILED, returned %u, expected %u\n", sample_rate, streaminfo_.data.stream_info.sample_rate);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing get_blocksize()... ");
|
|
|
|
|
{
|
|
|
|
|
unsigned blocksize = decoder->get_blocksize();
|
2006-09-13 01:42:27 +00:00
|
|
|
/* value could be anything since we're at the last block, so accept any reasonable answer */
|
|
|
|
|
printf("returned %u... %s\n", blocksize, blocksize>0? "OK" : "FAILED");
|
|
|
|
|
if(blocksize == 0)
|
|
|
|
|
return false;
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("testing get_channel_assignment()... ");
|
|
|
|
|
{
|
|
|
|
|
::FLAC__ChannelAssignment ca = decoder->get_channel_assignment();
|
|
|
|
|
printf("returned %u (%s)... OK\n", (unsigned)ca, ::FLAC__ChannelAssignmentString[ca]);
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(layer < LAYER_FILE) {
|
|
|
|
|
printf("testing reset()... ");
|
|
|
|
|
if(!decoder->reset())
|
|
|
|
|
return die_s_("returned false", decoder);
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
if(layer == LAYER_STREAM) {
|
|
|
|
|
/* after a reset() we have to rewind the input ourselves */
|
|
|
|
|
printf("rewinding input... ");
|
|
|
|
|
if(fseeko(dynamic_cast<StreamDecoder*>(decoder)->file_, 0, SEEK_SET) < 0) {
|
|
|
|
|
printf("FAILED, errno = %d\n", errno);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
}
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
dynamic_cast<DecoderCommon*>(decoder)->current_metadata_number_ = 0;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
printf("testing process_until_end_of_stream()... ");
|
|
|
|
|
if(!decoder->process_until_end_of_stream())
|
|
|
|
|
return die_s_("returned false", decoder);
|
|
|
|
|
printf("OK\n");
|
2002-06-07 05:27:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
printf("testing finish()... ");
|
|
|
|
|
decoder->finish();
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all, ignore VORBIS_COMMENT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore(VORBIS_COMMENT)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore(FLAC__METADATA_TYPE_VORBIS_COMMENT)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all, ignore APPLICATION
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore(APPLICATION)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore(FLAC__METADATA_TYPE_APPLICATION)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all, ignore APPLICATION id of app#1
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all, ignore APPLICATION id of app#1 & app#2
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_application(of app block #2)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_application(application2_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all, respond VORBIS_COMMENT
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond(VORBIS_COMMENT)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond(FLAC__METADATA_TYPE_VORBIS_COMMENT)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all, respond APPLICATION
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond(APPLICATION)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond(FLAC__METADATA_TYPE_APPLICATION)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all, respond APPLICATION id of app#1
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all, respond APPLICATION id of app#1 & app#2
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_application(of app block #2)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_application(application2_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* respond all, ignore APPLICATION, respond APPLICATION id of app#1
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore(APPLICATION)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore(FLAC__METADATA_TYPE_APPLICATION)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &streaminfo_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &padding_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &seektable_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application1_;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &vorbiscomment_;
|
2003-01-10 05:40:09 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &cuesheet_;
|
2006-09-23 19:21:19 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &picture_;
|
2003-01-10 08:15:35 +00:00
|
|
|
expected_metadata_sequence_[num_expected_++] = &unknown_;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* ignore all, respond APPLICATION, ignore APPLICATION id of app#1
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_all()... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_all()) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_respond(APPLICATION)... ");
|
|
|
|
|
if(!decoder->set_metadata_respond(FLAC__METADATA_TYPE_APPLICATION)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("testing set_metadata_ignore_application(of app block #1)... ");
|
|
|
|
|
if(!decoder->set_metadata_ignore_application(application1_.data.application.id)) {
|
|
|
|
|
printf("FAILED, returned false\n");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
num_expected_ = 0;
|
|
|
|
|
expected_metadata_sequence_[num_expected_++] = &application2_;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!(layer < LAYER_FILE? dynamic_cast<StreamDecoder*>(decoder)->test_respond() : dynamic_cast<FileDecoder*>(decoder)->test_respond()))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(layer < LAYER_FILE) /* for LAYER_FILE, FLAC__stream_decoder_finish() closes the file */
|
|
|
|
|
::fclose(dynamic_cast<StreamDecoder*>(decoder)->file_);
|
2002-06-07 05:27:37 +00:00
|
|
|
|
|
|
|
|
printf("freeing decoder instance... ");
|
|
|
|
|
delete decoder;
|
|
|
|
|
printf("OK\n");
|
|
|
|
|
|
|
|
|
|
printf("\nPASSED!\n");
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
bool test_decoders()
|
2002-06-07 05:27:37 +00:00
|
|
|
{
|
2006-09-13 01:42:27 +00:00
|
|
|
init_metadata_blocks_();
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!generate_file_())
|
|
|
|
|
return false;
|
2002-06-07 05:27:37 +00:00
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!test_stream_decoder(LAYER_STREAM))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!test_stream_decoder(LAYER_SEEKABLE_STREAM))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!test_stream_decoder(LAYER_FILE))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
2006-09-13 01:42:27 +00:00
|
|
|
if(!test_stream_decoder(LAYER_FILENAME))
|
2002-06-07 05:27:37 +00:00
|
|
|
return false;
|
|
|
|
|
|
2002-11-07 05:07:30 +00:00
|
|
|
(void) grabbag__file_remove_file(flacfilename_);
|
2003-01-10 05:40:09 +00:00
|
|
|
|
2002-06-07 05:27:37 +00:00
|
|
|
free_metadata_blocks_();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|