1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
|
/*
* himd.h
*
* This file is part of libhimd, a library for accessing Sony HiMD devices.
*
* Copyright (C) 2009-2011 Michael Karcher
* Copyright (C) 2011 MÃ¥rten Cassel
* Copyright (C) 2011 Thomas Arp
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#ifndef INCLUDED_LIBHIMD_HIMD_H
#define INCLUDED_LIBHIMD_HIMD_H
#include <time.h>
#include <stdio.h>
#include "codecinfo.h"
#ifdef __cplusplus
extern "C" {
#endif
#define HIMD_ENCODING_LATIN1 5
#define HIMD_ENCODING_UTF16BE 0x84
#define HIMD_ENCODING_SHIFT_JIS 0x90
#define STRING_TYPE_UNUSED 0
#define STRING_TYPE_CONTINUATION 1
#define STRING_TYPE_TITLE 8
#define STRING_TYPE_ARTIST 9
#define STRING_TYPE_ALBUM 10
#define STRING_TYPE_GROUP 12 /*reportedly disk/group name */
#define HIMD_FIRST_TRACK 1
#define HIMD_LAST_TRACK 2047
#define HIMD_FIRST_FRAGMENT 1
#define HIMD_LAST_FRAGMENT 4095
#define HIMD_FIRST_STRING 1
#define HIMD_LAST_STRING 4095
#define HIMD_TIFFILE_SIZE 327680
#define HIMD_AUDIO_SIZE 0x3FC0
#define HIMD_BLOCKINFO_SIZE 0x4000
enum himdstatus { HIMD_OK,
HIMD_STATUS_AUDIO_EOF,
HIMD_ERROR_DISABLED_FEATURE,
HIMD_ERROR_CANT_OPEN_MCLIST,
HIMD_ERROR_CANT_READ_MCLIST,
HIMD_ERROR_CANT_READ_TIF,
HIMD_ERROR_WRONG_TIF_SIZE,
HIMD_ERROR_WRONG_TIF_MAGIC,
HIMD_ERROR_CANT_ACCESS_HMDHIFI,
HIMD_ERROR_NO_TRACK_INDEX,
HIMD_ERROR_CANT_OPEN_TRACK_INDEX,
HIMD_ERROR_CANT_OPEN_AUDIO,
HIMD_ERROR_CANT_SEEK_AUDIO,
HIMD_ERROR_CANT_READ_AUDIO,
HIMD_ERROR_NO_SUCH_TRACK,
HIMD_ERROR_FRAGMENT_CHAIN_BROKEN,
HIMD_ERROR_STRING_CHAIN_BROKEN,
HIMD_ERROR_STRING_ENCODING_ERROR,
HIMD_ERROR_OUT_OF_STRINGS,
HIMD_ERROR_NOT_STRING_HEAD,
HIMD_ERROR_UNKNOWN_ENCODING,
HIMD_ERROR_BAD_FRAME_NUMBERS,
HIMD_ERROR_BAD_AUDIO_CODEC,
HIMD_ERROR_BAD_DATA_FORMAT,
HIMD_ERROR_UNSUPPORTED_ENCRYPTION,
HIMD_ERROR_ENCRYPTION_FAILURE,
HIMD_ERROR_OUT_OF_MEMORY,
HIMD_ERROR_NO_ID3_TAGS_FOUND };
enum himd_rw_mode { HIMD_READ_ONLY, HIMD_READ_WRITE };
/* a track on the HiMD */
struct trackinfo {
int title, artist, album;
int trackinalbum;
struct sony_codecinfo codec_info;
int firstfrag; /* index into parts table */
int tracknum; /* always equal to own index in used tracks? */
int seconds;
unsigned char key[8];
unsigned char mac[8];
unsigned char contentid[20];
int ekbnum;
struct tm recordingtime, licensestarttime, licenseendtime;
unsigned char lt, dest, xcc, ct, cc, cn;
};
/* a fragment in the audio file */
struct fraginfo {
unsigned char key[8];
unsigned int firstblock;
unsigned int lastblock;
unsigned int firstframe;
unsigned int lastframe;
unsigned int fragtype;
unsigned int nextfrag;
};
/* a block in the audio file */
struct blockinfo {
unsigned int type; // "LPCM" or "A3D " or "ATX" or "SPMA"
short int nframes;
short int mcode;
short int lendata;
short int reserved1;
unsigned int serial_number;
unsigned char key[8];
unsigned char iv[8];
unsigned char audio_data[0x3FC0]; // obfuscated audio data
unsigned char backup_key[8];
unsigned char reserved2[8];
unsigned int backup_type;
short int backup_reserved;
short int backup_mcode;
int lo32_contentid;
int backup_serial_number;
};
struct himdstring {
char data[14];
unsigned int stringtype : 4;
unsigned int nextstring : 12;
};
struct himd {
/* everything below this line is private, i.e. no API stability. */
char * rootpath;
unsigned char * tifdata;
int discid_valid;
unsigned char discid[16];
int datanum;
int need_lowercase;
};
struct himderrinfo {
enum himdstatus status;
char statusmsg[128];
};
int himd_open(struct himd * himd, const char * himdroot, struct himderrinfo * status);
void himd_close(struct himd * himd);
char* himd_get_string_raw(struct himd * himd, unsigned int idx, int*type, int* length, struct himderrinfo * status);
char* himd_get_string_utf8(struct himd * himd, unsigned int idx, int*type, struct himderrinfo * status);
int himd_add_string(struct himd * himd, char *string, int type, struct himderrinfo * status);
void himd_free(void * p);
const unsigned char * himd_get_discid(struct himd * himd, struct himderrinfo * status);
FILE * himd_open_file(struct himd * himd, const char * fileid, enum himd_rw_mode mode);
int himd_write_tifdata(struct himd * himd, struct himderrinfo * status);
unsigned int himd_track_count(struct himd * himd);
unsigned int himd_get_trackslot(struct himd * himd, int unsigned idx, struct himderrinfo * status);
int himd_get_track_info(struct himd * himd, unsigned int idx, struct trackinfo * track, struct himderrinfo * status);
int himd_get_fragment_info(struct himd * himd, unsigned int idx, struct fraginfo * f, struct himderrinfo * status);
int himd_track_uploadable(struct himd * himd, const struct trackinfo * track);
int himd_track_blocks(struct himd * himd, const struct trackinfo * track, struct himderrinfo * status);
int himd_get_free_trackindex(struct himd * himd);
int himd_add_track_info(struct himd * himd, struct trackinfo * track, struct himderrinfo * status);
int himd_add_fragment_info(struct himd * himd, struct fraginfo * f, struct himderrinfo * status);
#define himd_get_codec_name(track) sony_codecinfo_codecname(&(track)->codec_info)
#define himd_trackinfo_framesize(track) sony_codecinfo_bytesperframe(&(track)->codec_info)
unsigned int himd_trackinfo_framesperblock(const struct trackinfo * track);
typedef unsigned char mp3key[4];
int himd_obtain_mp3key(struct himd * himd, int track, mp3key * key, struct himderrinfo * status);
/* data stream, mdstream.c */
struct himd_blockstream {
struct himd * himd;
FILE * atdata;
struct fraginfo *frags;
unsigned int curblockno;
unsigned int curfragno;
unsigned int fragcount;
unsigned int blockcount;
unsigned int frames_per_block;
};
int himd_blockstream_open(struct himd * himd, unsigned int firstfrag, unsigned int frames_per_block, struct himd_blockstream * stream, struct himderrinfo * status);
void himd_blockstream_close(struct himd_blockstream * stream);
int himd_blockstream_read(struct himd_blockstream * stream, unsigned char * block,
unsigned int * firstframe, unsigned int * lastframe,
unsigned char * fragkey, struct himderrinfo * status);
struct himd_writestream {
struct himd * himd;
FILE * atdata;
unsigned int curblockno;
};
int himd_writestream_open(struct himd * himd, struct himd_writestream * stream, unsigned int * out_first_blockno, unsigned int * out_last_blockno, struct himderrinfo * status);
int himd_writestream_write(struct himd_writestream * stream, struct blockinfo *block, struct himderrinfo * status);
void himd_writestream_close(struct himd_writestream * stream);
struct himd_mp3stream {
struct himd_blockstream stream;
unsigned char blockbuf[16384];
const unsigned char ** frameptrs;
mp3key key;
unsigned int curframe;
unsigned int frames;
};
int himd_mp3stream_open(struct himd * himd, unsigned int trackno, struct himd_mp3stream * stream, struct himderrinfo * status);
int himd_mp3stream_read_frame(struct himd_mp3stream * stream, const unsigned char ** frameout, unsigned int * lenout, struct himderrinfo * status);
int himd_mp3stream_read_block(struct himd_mp3stream * stream, const unsigned char ** frameout, unsigned int * lenout, unsigned int * framecount, struct himderrinfo * status);
void himd_mp3stream_close(struct himd_mp3stream * stream);
#define HIMD_MAX_PCMFRAME_SAMPLES (0x3FC0/4)
struct himd_nonmp3stream {
struct himd_blockstream stream;
void * cryptinfo;
unsigned char blockbuf[16384];
int framesize;
const unsigned char * frameptr;
unsigned int framesleft;
};
int himd_nonmp3stream_open(struct himd * himd, unsigned int trackno, struct himd_nonmp3stream * stream, struct himderrinfo * status);
int himd_nonmp3stream_read_frame(struct himd_nonmp3stream * stream, const unsigned char ** frameout, unsigned int * lenout, struct himderrinfo * status);
int himd_nonmp3stream_read_block(struct himd_nonmp3stream * stream, const unsigned char ** frameout, unsigned int * lenout, unsigned int * framecount, struct himderrinfo * status);
void himd_nonmp3stream_close(struct himd_nonmp3stream * stream);
/* frag.c */
struct himd_hole {
unsigned short firstblock;
unsigned short lastblock;
};
struct himd_holelist {
int holecnt;
struct himd_hole holes[HIMD_LAST_FRAGMENT - HIMD_FIRST_FRAGMENT + 1];
};
int himd_find_holes(struct himd * himd, struct himd_holelist * holes, struct himderrinfo * status);
/* mp3tools.c */
int himd_get_songinfo(const char *filepath, char ** artist, char ** title, char **album, struct himderrinfo * status);
/* mp3download.c */
int himd_writemp3(struct himd * himd, const char *filepath);
#ifdef __cplusplus
}
#endif
#endif
|