2023-07-16 23:36:25 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "FLAC/stream_decoder.h"
|
|
|
|
#include <lame/lame.h>
|
2023-07-18 23:05:32 +00:00
|
|
|
#include <jpeglib.h>
|
2023-07-16 23:36:25 +00:00
|
|
|
|
|
|
|
#include <string>
|
2023-07-17 21:29:59 +00:00
|
|
|
#include <string_view>
|
2023-07-16 23:36:25 +00:00
|
|
|
#include <iostream>
|
2023-07-17 21:29:59 +00:00
|
|
|
#include <map>
|
|
|
|
#include <stdio.h>
|
2023-07-16 23:36:25 +00:00
|
|
|
|
|
|
|
class FLACtoMP3 {
|
|
|
|
public:
|
|
|
|
FLACtoMP3(uint8_t size = 4);
|
|
|
|
~FLACtoMP3();
|
|
|
|
|
|
|
|
void setInputFile(const std::string& path);
|
|
|
|
void setOutputFile(const std::string& path);
|
2023-07-19 22:12:18 +00:00
|
|
|
bool run();
|
2023-07-16 23:36:25 +00:00
|
|
|
|
|
|
|
private:
|
2023-07-17 21:29:59 +00:00
|
|
|
void processTags(const FLAC__StreamMetadata_VorbisComment& tags);
|
|
|
|
void processInfo(const FLAC__StreamMetadata_StreamInfo& info);
|
2023-07-18 23:05:32 +00:00
|
|
|
void processPicture(const FLAC__StreamMetadata_Picture& picture);
|
2023-07-17 21:29:59 +00:00
|
|
|
bool decodeFrame(const int32_t * const buffer[], uint32_t size);
|
|
|
|
bool flush();
|
|
|
|
bool initializeOutput();
|
|
|
|
bool tryKnownTag(std::string_view source);
|
2023-07-18 23:05:32 +00:00
|
|
|
bool scaleJPEG(const FLAC__StreamMetadata_Picture& picture);
|
2023-07-16 23:36:25 +00:00
|
|
|
|
|
|
|
static void error(const FLAC__StreamDecoder *decoder, FLAC__StreamDecoderErrorStatus status, void *client_data);
|
|
|
|
static void metadata(const FLAC__StreamDecoder *decoder, const FLAC__StreamMetadata *metadata, void *client_data);
|
|
|
|
static FLAC__StreamDecoderWriteStatus write(
|
|
|
|
const FLAC__StreamDecoder *decoder,
|
|
|
|
const FLAC__Frame *frame,
|
|
|
|
const FLAC__int32 * const buffer[],
|
|
|
|
void *client_data
|
|
|
|
);
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string inPath;
|
|
|
|
std::string outPath;
|
|
|
|
|
|
|
|
FLAC__StreamDecoder *decoder;
|
|
|
|
lame_t encoder;
|
|
|
|
FLAC__StreamDecoderInitStatus statusFLAC;
|
|
|
|
|
2023-07-17 21:29:59 +00:00
|
|
|
FILE* output;
|
2023-07-18 23:05:32 +00:00
|
|
|
uint8_t bufferMultiplier;
|
|
|
|
uint32_t flacMaxBlockSize;
|
2023-07-16 23:36:25 +00:00
|
|
|
uint32_t pcmCounter;
|
|
|
|
uint32_t pcmSize;
|
|
|
|
int16_t* pcm;
|
2023-07-17 21:29:59 +00:00
|
|
|
uint8_t* outputBuffer;
|
2023-07-18 23:05:32 +00:00
|
|
|
uint32_t outputBufferSize;
|
2023-07-17 21:29:59 +00:00
|
|
|
bool outputInitilized;
|
2023-07-18 23:05:32 +00:00
|
|
|
bool downscaleAlbumArt;
|
2023-07-16 23:36:25 +00:00
|
|
|
};
|