mirror of
https://github.com/curioustorvald/tsvm.git
synced 2026-03-16 07:56:06 +09:00
TAV encoder: vendor string update
This commit is contained in:
@@ -10,8 +10,6 @@
|
|||||||
#include <getopt.h>
|
#include <getopt.h>
|
||||||
#include "encoder_tad.h"
|
#include "encoder_tad.h"
|
||||||
|
|
||||||
#define DECODER_VENDOR_STRING "Decoder-TAD 20251026"
|
|
||||||
|
|
||||||
// TAD format constants (must match encoder)
|
// TAD format constants (must match encoder)
|
||||||
#undef TAD32_COEFF_SCALARS
|
#undef TAD32_COEFF_SCALARS
|
||||||
|
|
||||||
@@ -999,7 +997,6 @@ static void print_usage(const char *prog_name) {
|
|||||||
printf(" --raw-pcm Output raw PCMu8 instead of WAV file\n");
|
printf(" --raw-pcm Output raw PCMu8 instead of WAV file\n");
|
||||||
printf(" -v Verbose output\n");
|
printf(" -v Verbose output\n");
|
||||||
printf(" -h, --help Show this help\n");
|
printf(" -h, --help Show this help\n");
|
||||||
printf("\nVersion: %s\n", DECODER_VENDOR_STRING);
|
|
||||||
printf("Default output: WAV file (8-bit unsigned PCM, stereo @ 32000 Hz)\n");
|
printf("Default output: WAV file (8-bit unsigned PCM, stereo @ 32000 Hz)\n");
|
||||||
printf("With --raw-pcm: PCMu8 raw file (8-bit unsigned stereo @ 32000 Hz)\n");
|
printf("With --raw-pcm: PCMu8 raw file (8-bit unsigned stereo @ 32000 Hz)\n");
|
||||||
}
|
}
|
||||||
@@ -1088,7 +1085,6 @@ int main(int argc, char *argv[]) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (verbose) {
|
if (verbose) {
|
||||||
printf("%s\n", DECODER_VENDOR_STRING);
|
|
||||||
printf("Input: %s\n", input_file);
|
printf("Input: %s\n", input_file);
|
||||||
printf("Output: %s\n", output_file);
|
printf("Output: %s\n", output_file);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,7 +18,7 @@
|
|||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
#include <float.h>
|
#include <float.h>
|
||||||
|
|
||||||
#define ENCODER_VENDOR_STRING "Encoder-TAV 20251106 (3d-dwt,tad,ssf-tc)"
|
#define ENCODER_VENDOR_STRING "Encoder-TAV 20251111 (3d-dwt,tad,ssf-tc)"
|
||||||
|
|
||||||
// TSVM Advanced Video (TAV) format constants
|
// TSVM Advanced Video (TAV) format constants
|
||||||
#define TAV_MAGIC "\x1F\x54\x53\x56\x4D\x54\x41\x56" // "\x1FTSVM TAV"
|
#define TAV_MAGIC "\x1F\x54\x53\x56\x4D\x54\x41\x56" // "\x1FTSVM TAV"
|
||||||
|
|||||||
Reference in New Issue
Block a user