flac, oggflac: use GLib instead of utils.h/log.h
This commit is contained in:
parent
f15fc4e99a
commit
63c3ebee46
|
@ -20,7 +20,6 @@
|
|||
*/
|
||||
|
||||
#include "_flac_common.h"
|
||||
#include "../log.h"
|
||||
|
||||
#include <FLAC/format.h>
|
||||
#include <FLAC/metadata.h>
|
||||
|
@ -177,16 +176,16 @@ void flac_error_common_cb(const char *plugin,
|
|||
|
||||
switch (status) {
|
||||
case FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC:
|
||||
ERROR("%s lost sync\n", plugin);
|
||||
g_warning("%s lost sync\n", plugin);
|
||||
break;
|
||||
case FLAC__STREAM_DECODER_ERROR_STATUS_BAD_HEADER:
|
||||
ERROR("bad %s header\n", plugin);
|
||||
g_warning("bad %s header\n", plugin);
|
||||
break;
|
||||
case FLAC__STREAM_DECODER_ERROR_STATUS_FRAME_CRC_MISMATCH:
|
||||
ERROR("%s crc mismatch\n", plugin);
|
||||
g_warning("%s crc mismatch\n", plugin);
|
||||
break;
|
||||
default:
|
||||
ERROR("unknown %s error\n", plugin);
|
||||
g_warning("unknown %s error\n", plugin);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -24,6 +24,11 @@
|
|||
|
||||
#include "../decoder_api.h"
|
||||
|
||||
#include <glib.h>
|
||||
|
||||
#undef G_LOG_DOMAIN
|
||||
#define G_LOG_DOMAIN "flac"
|
||||
|
||||
#include <FLAC/export.h>
|
||||
#if !defined(FLAC_API_VERSION_CURRENT) || FLAC_API_VERSION_CURRENT <= 7
|
||||
# include <FLAC/seekable_stream_decoder.h>
|
||||
|
|
|
@ -17,8 +17,6 @@
|
|||
*/
|
||||
|
||||
#include "_flac_common.h"
|
||||
#include "../utils.h"
|
||||
#include "../log.h"
|
||||
|
||||
#include <assert.h>
|
||||
|
||||
|
@ -128,7 +126,8 @@ static void flacPrintErroredState(FLAC__SeekableStreamDecoderState state)
|
|||
case FLAC__SEEKABLE_STREAM_DECODER_UNINITIALIZED:
|
||||
str = "decoder uninitialized";
|
||||
}
|
||||
ERROR("flac %s\n", str);
|
||||
|
||||
g_warning("%s\n", str);
|
||||
}
|
||||
|
||||
static int flac_init(FLAC__SeekableStreamDecoder *dec,
|
||||
|
@ -186,7 +185,8 @@ static void flacPrintErroredState(FLAC__StreamDecoderState state)
|
|||
case FLAC__STREAM_DECODER_UNINITIALIZED:
|
||||
str = "decoder uninitialized";
|
||||
}
|
||||
ERROR("flac %s\n", str);
|
||||
|
||||
g_warning("%s\n", str);
|
||||
}
|
||||
#endif /* FLAC_API_VERSION_CURRENT >= 7 */
|
||||
|
||||
|
@ -251,9 +251,8 @@ flacMetadataDup(const char *file, bool *vorbisCommentFound)
|
|||
default:
|
||||
err = FLAC__Metadata_SimpleIteratorStatusString[s];
|
||||
}
|
||||
DEBUG("flacMetadataDup: Reading '%s' "
|
||||
"metadata gave the following error: %s\n",
|
||||
file, err);
|
||||
g_debug("Reading '%s' metadata gave the following error: %s\n",
|
||||
file, err);
|
||||
FLAC__metadata_simple_iterator_delete(it);
|
||||
return ret;
|
||||
}
|
||||
|
@ -288,8 +287,7 @@ static struct tag *flacTagDup(const char *file)
|
|||
|
||||
ret = flacMetadataDup(file, &foundVorbisComment);
|
||||
if (!ret) {
|
||||
DEBUG("flacTagDup: Failed to grab information from: %s\n",
|
||||
file);
|
||||
g_debug("Failed to grab information from: %s\n", file);
|
||||
return NULL;
|
||||
}
|
||||
if (!foundVorbisComment) {
|
||||
|
@ -319,7 +317,7 @@ flac_decode_internal(struct decoder * decoder, struct input_stream *inStream,
|
|||
#if defined(FLAC_API_VERSION_CURRENT) && FLAC_API_VERSION_CURRENT > 7
|
||||
if(!FLAC__stream_decoder_set_metadata_respond(flacDec, FLAC__METADATA_TYPE_VORBIS_COMMENT))
|
||||
{
|
||||
DEBUG(__FILE__": Failed to set metadata respond\n");
|
||||
g_debug("Failed to set metadata respond\n");
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -376,11 +374,8 @@ fail:
|
|||
if (flacDec)
|
||||
flac_delete(flacDec);
|
||||
|
||||
if (err) {
|
||||
ERROR("flac %s\n", err);
|
||||
return;
|
||||
}
|
||||
return;
|
||||
if (err)
|
||||
g_warning("%s\n", err);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
@ -22,9 +22,6 @@
|
|||
#include "_flac_common.h"
|
||||
#include "_ogg_common.h"
|
||||
|
||||
#include "../utils.h"
|
||||
#include "../log.h"
|
||||
|
||||
#include <OggFLAC/seekable_stream_decoder.h>
|
||||
|
||||
static void oggflac_cleanup(FlacData * data,
|
||||
|
@ -120,25 +117,25 @@ static void oggflacPrintErroredState(OggFLAC__SeekableStreamDecoderState state)
|
|||
{
|
||||
switch (state) {
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_MEMORY_ALLOCATION_ERROR:
|
||||
ERROR("oggflac allocation error\n");
|
||||
g_warning("oggflac allocation error\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_READ_ERROR:
|
||||
ERROR("oggflac read error\n");
|
||||
g_warning("oggflac read error\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_SEEK_ERROR:
|
||||
ERROR("oggflac seek error\n");
|
||||
g_warning("oggflac seek error\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_STREAM_DECODER_ERROR:
|
||||
ERROR("oggflac seekable stream error\n");
|
||||
g_warning("oggflac seekable stream error\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_ALREADY_INITIALIZED:
|
||||
ERROR("oggflac decoder already initialized\n");
|
||||
g_warning("oggflac decoder already initialized\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_INVALID_CALLBACK:
|
||||
ERROR("invalid oggflac callback\n");
|
||||
g_warning("invalid oggflac callback\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_UNINITIALIZED:
|
||||
ERROR("oggflac decoder uninitialized\n");
|
||||
g_warning("oggflac decoder uninitialized\n");
|
||||
break;
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_OK:
|
||||
case OggFLAC__SEEKABLE_STREAM_DECODER_SEEKING:
|
||||
|
@ -233,17 +230,17 @@ static OggFLAC__SeekableStreamDecoder
|
|||
(void *)data);
|
||||
|
||||
if (!s) {
|
||||
ERROR("oggflac problem before init()\n");
|
||||
g_warning("oggflac problem before init()\n");
|
||||
goto fail;
|
||||
}
|
||||
if (OggFLAC__seekable_stream_decoder_init(decoder) !=
|
||||
OggFLAC__SEEKABLE_STREAM_DECODER_OK) {
|
||||
ERROR("oggflac problem doing init()\n");
|
||||
g_warning("oggflac problem doing init()\n");
|
||||
goto fail;
|
||||
}
|
||||
if (!OggFLAC__seekable_stream_decoder_process_until_end_of_metadata
|
||||
(decoder)) {
|
||||
ERROR("oggflac problem reading metadata\n");
|
||||
g_warning("oggflac problem reading metadata\n");
|
||||
goto fail;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue