You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

778 lines
25KB

  1. /*
  2. * NSV decoder.
  3. * Copyright (c) 2004 The FFmpeg Project.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General Public
  16. * License along with this library; if not, write to the Free Software
  17. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  18. */
  19. #include "avformat.h"
  20. #include "avi.h"
  21. #define DEBUG
  22. //#define DEBUG_DUMP_INDEX // XXX dumbdriving-271.nsv breaks with it commented!!
  23. //#define DEBUG_SEEK
  24. #define CHECK_SUBSEQUENT_NSVS
  25. //#define DISABLE_AUDIO
  26. /* max bytes to crawl for trying to resync
  27. * stupid streaming servers don't start at chunk boundaries...
  28. */
  29. #define NSV_MAX_RESYNC (500*1024)
  30. #define NSV_MAX_RESYNC_TRIES 300
  31. /*
  32. * First version by Francois Revol - revol@free.fr
  33. * References:
  34. * (1) http://www.multimedia.cx/nsv-format.txt
  35. * seems someone came to the same conclusions as me, and updated it:
  36. * (2) http://www.stud.ktu.lt/~vitslav/nsv/nsv-format.txt
  37. * http://www.stud.ktu.lt/~vitslav/nsv/
  38. * Sample files:
  39. * (S1) http://www.nullsoft.com/nsv/samples/
  40. * http://www.nullsoft.com/nsv/samples/faster.nsv
  41. * http://streamripper.sourceforge.net/openbb/read.php?TID=492&page=4
  42. */
  43. /*
  44. * notes on the header (Francois Revol):
  45. *
  46. * It is followed by strings, then a table, but nothing tells
  47. * where the table begins according to (1). After checking faster.nsv,
  48. * I believe NVSf[16-19] gives the size of the strings data
  49. * (that is the offset of the data table after the header).
  50. * After checking all samples from (S1) all confirms this.
  51. *
  52. * Then, about NSVf[12-15], faster.nsf has 179700. When veiwing it in VLC,
  53. * I noticed there was about 1 NVSs chunk/s, so I ran
  54. * strings faster.nsv | grep NSVs | wc -l
  55. * which gave me 180. That leads me to think that NSVf[12-15] might be the
  56. * file length in milliseconds.
  57. * Let's try that:
  58. * for f in *.nsv; do HTIME="$(od -t x4 "$f" | head -1 | sed 's/.* //')"; echo "'$f' $((0x$HTIME))s = $((0x$HTIME/1000/60)):$((0x$HTIME/1000%60))"; done
  59. * except for nstrailer (which doesn't have an NSVf header), it repports correct time.
  60. *
  61. * nsvtrailer.nsv (S1) does not have any NSVf header, only NSVs chunks,
  62. * so the header seems to not be mandatory. (for streaming).
  63. *
  64. * index slice duration check (excepts nsvtrailer.nsv):
  65. * for f in [^n]*.nsv; do DUR="$(ffmpeg -i "$f" 2>/dev/null | grep 'NSVf duration' | cut -d ' ' -f 4)"; IC="$(ffmpeg -i "$f" 2>/dev/null | grep 'INDEX ENTRIES' | cut -d ' ' -f 2)"; echo "duration $DUR, slite time $(($DUR/$IC))"; done
  66. */
  67. /*
  68. * TODO:
  69. * - handle timestamps !!!
  70. * - use index
  71. * - mime-type in probe()
  72. * - seek
  73. */
  74. #ifdef DEBUG
  75. #define PRINT(_v) printf _v
  76. #else
  77. #define PRINT(_v)
  78. #endif
  79. #if 0
  80. struct NSVf_header {
  81. uint32_t chunk_tag; /* 'NSVf' */
  82. uint32_t chunk_size;
  83. uint32_t file_size; /* max 4GB ??? noone learns anything it seems :^) */
  84. uint32_t file_length; //unknown1; /* what about MSB of file_size ? */
  85. uint32_t info_strings_size; /* size of the info strings */ //unknown2;
  86. uint32_t table_entries;
  87. uint32_t table_entries_used; /* the left ones should be -1 */
  88. };
  89. struct NSVs_header {
  90. uint32_t chunk_tag; /* 'NSVs' */
  91. uint32_t v4cc; /* or 'NONE' */
  92. uint32_t a4cc; /* or 'NONE' */
  93. uint16_t vwidth; /* assert(vwidth%16==0) */
  94. uint16_t vheight; /* assert(vheight%16==0) */
  95. uint8_t framerate; /* value = (framerate&0x80)?frtable[frameratex0x7f]:framerate */
  96. uint16_t unknown;
  97. };
  98. struct nsv_avchunk_header {
  99. uint8_t vchunk_size_lsb;
  100. uint16_t vchunk_size_msb; /* value = (vchunk_size_msb << 4) | (vchunk_size_lsb >> 4) */
  101. uint16_t achunk_size;
  102. };
  103. struct nsv_pcm_header {
  104. uint8_t bits_per_sample;
  105. uint8_t channel_count;
  106. uint16_t sample_rate;
  107. };
  108. #endif
  109. /* variation from avi.h */
  110. /*typedef struct CodecTag {
  111. int id;
  112. unsigned int tag;
  113. } CodecTag;*/
  114. /* tags */
  115. #define T_NSVF MKTAG('N', 'S', 'V', 'f') /* file header */
  116. #define T_NSVS MKTAG('N', 'S', 'V', 's') /* chunk header */
  117. #define T_TOC2 MKTAG('T', 'O', 'C', '2') /* extra index marker */
  118. #define T_NONE MKTAG('N', 'O', 'N', 'E') /* null a/v 4CC */
  119. #define T_SUBT MKTAG('S', 'U', 'B', 'T') /* subtitle aux data */
  120. #define T_ASYN MKTAG('A', 'S', 'Y', 'N') /* async a/v aux marker */
  121. #define T_KEYF MKTAG('K', 'E', 'Y', 'F') /* video keyframe aux marker (addition) */
  122. #define TB_NSVF MKBETAG('N', 'S', 'V', 'f')
  123. #define TB_NSVS MKBETAG('N', 'S', 'V', 's')
  124. /* hardcoded stream indices */
  125. #define NSV_ST_VIDEO 0
  126. #define NSV_ST_AUDIO 1
  127. #define NSV_ST_SUBT 2
  128. enum NSVStatus {
  129. NSV_UNSYNC,
  130. NSV_FOUND_NSVF,
  131. NSV_HAS_READ_NSVF,
  132. NSV_FOUND_NSVS,
  133. NSV_HAS_READ_NSVS,
  134. NSV_FOUND_BEEF,
  135. NSV_GOT_VIDEO,
  136. NSV_GOT_AUDIO,
  137. };
  138. typedef struct NSVStream {
  139. int frame_offset; /* current frame (video) or byte (audio) counter
  140. (used to compute the pts) */
  141. int scale;
  142. int rate;
  143. int sample_size; /* audio only data */
  144. int start;
  145. int new_frame_offset; /* temporary storage (used during seek) */
  146. int cum_len; /* temporary storage (used during seek) */
  147. } NSVStream;
  148. typedef struct {
  149. int base_offset;
  150. int NSVf_end;
  151. uint32_t *nsvf_index_data;
  152. int index_entries;
  153. enum NSVStatus state;
  154. AVPacket ahead[2]; /* [v, a] if .data is !NULL there is something */
  155. /* cached */
  156. int64_t duration;
  157. uint32_t vtag, atag;
  158. uint16_t vwidth, vheight;
  159. //DVDemuxContext* dv_demux;
  160. } NSVContext;
  161. static const CodecTag nsv_codec_video_tags[] = {
  162. { CODEC_ID_VP3, MKTAG('V', 'P', '3', ' ') },
  163. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
  164. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
  165. /*
  166. { CODEC_ID_VP4, MKTAG('V', 'P', '4', ' ') },
  167. { CODEC_ID_VP4, MKTAG('V', 'P', '4', '0') },
  168. { CODEC_ID_VP5, MKTAG('V', 'P', '5', ' ') },
  169. { CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') },
  170. { CODEC_ID_VP6, MKTAG('V', 'P', '6', ' ') },
  171. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') },
  172. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') },
  173. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') },
  174. */
  175. { CODEC_ID_XVID, MKTAG('X', 'V', 'I', 'D') }, /* cf sample xvid decoder from nsv_codec_sdk.zip */
  176. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', '3') },
  177. { 0, 0 },
  178. };
  179. static const CodecTag nsv_codec_audio_tags[] = {
  180. { CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
  181. { CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') },
  182. { CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') }, /* _CUTTED__MUXED_2 Heads - Out Of The City.nsv */
  183. { CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') },
  184. { 0, 0 },
  185. };
  186. static const uint64_t nsv_framerate_table[] = {
  187. ((uint64_t)AV_TIME_BASE * 30),
  188. ((uint64_t)AV_TIME_BASE * 30000 / 1001), /* 29.97 */
  189. ((uint64_t)AV_TIME_BASE * 25),
  190. ((uint64_t)AV_TIME_BASE * 24000 / 1001), /* 23.98 */
  191. ((uint64_t)AV_TIME_BASE * 30), /* ?? */
  192. ((uint64_t)AV_TIME_BASE * 15000 / 1001), /* 14.98 */
  193. };
  194. //static int nsv_load_index(AVFormatContext *s);
  195. static int nsv_read_chunk(AVFormatContext *s, int fill_header);
  196. #ifdef DEBUG
  197. static void print_tag(const char *str, unsigned int tag, int size)
  198. {
  199. printf("%s: tag=%c%c%c%c\n",
  200. str, tag & 0xff,
  201. (tag >> 8) & 0xff,
  202. (tag >> 16) & 0xff,
  203. (tag >> 24) & 0xff);
  204. }
  205. #endif
  206. /* try to find something we recognize, and set the state accordingly */
  207. static int nsv_resync(AVFormatContext *s)
  208. {
  209. NSVContext *nsv = s->priv_data;
  210. ByteIOContext *pb = &s->pb;
  211. uint32_t v = 0;
  212. int i;
  213. PRINT(("%s(), offset = %Ld, state = %d\n", __FUNCTION__, url_ftell(pb), nsv->state));
  214. //nsv->state = NSV_UNSYNC;
  215. for (i = 0; i < NSV_MAX_RESYNC; i++) {
  216. if (url_feof(pb)) {
  217. PRINT(("NSV EOF\n"));
  218. nsv->state = NSV_UNSYNC;
  219. return -1;
  220. }
  221. v <<= 8;
  222. v |= get_byte(pb);
  223. /*
  224. if (i < 8) {
  225. PRINT(("NSV resync: [%d] = %02x\n", i, v & 0x0FF));
  226. }
  227. */
  228. if ((v & 0x0000ffff) == 0xefbe) { /* BEEF */
  229. PRINT(("NSV resynced on BEEF after %d bytes\n", i+1));
  230. nsv->state = NSV_FOUND_BEEF;
  231. return 0;
  232. }
  233. /* we read as big endian, thus the MK*BE* */
  234. if (v == TB_NSVF) { /* NSVf */
  235. PRINT(("NSV resynced on NSVf after %d bytes\n", i+1));
  236. nsv->state = NSV_FOUND_NSVF;
  237. return 0;
  238. }
  239. if (v == MKBETAG('N', 'S', 'V', 's')) { /* NSVs */
  240. PRINT(("NSV resynced on NSVs after %d bytes\n", i+1));
  241. nsv->state = NSV_FOUND_NSVS;
  242. return 0;
  243. }
  244. }
  245. PRINT(("NSV sync lost\n"));
  246. return -1;
  247. }
  248. static int nsv_parse_NSVf_header(AVFormatContext *s, AVFormatParameters *ap)
  249. {
  250. NSVContext *nsv = s->priv_data;
  251. ByteIOContext *pb = &s->pb;
  252. uint32_t tag, tag1, handler;
  253. int codec_type, stream_index, frame_period, bit_rate, scale, rate;
  254. unsigned int file_size, size, nb_frames;
  255. int64_t duration;
  256. int strings_size;
  257. int table_entries;
  258. int table_entries_used;
  259. int i, n;
  260. AVStream *st;
  261. NSVStream *ast;
  262. PRINT(("%s()\n", __FUNCTION__));
  263. nsv->state = NSV_UNSYNC; /* in case we fail */
  264. size = get_le32(pb);
  265. if (size < 28)
  266. return -1;
  267. nsv->NSVf_end = size;
  268. //s->file_size = (uint32_t)get_le32(pb);
  269. file_size = (uint32_t)get_le32(pb);
  270. PRINT(("NSV NSVf chunk_size %ld\n", size));
  271. PRINT(("NSV NSVf file_size %Ld\n", file_size));
  272. duration = get_le32(pb); /* in ms */
  273. nsv->duration = duration * AV_TIME_BASE / 1000; /* convert */
  274. PRINT(("NSV NSVf duration %Ld ms\n", duration));
  275. // XXX: store it in AVStreams
  276. strings_size = get_le32(pb);
  277. table_entries = get_le32(pb);
  278. table_entries_used = get_le32(pb);
  279. PRINT(("NSV NSVf info-strings size: %d, table entries: %d, bis %d\n",
  280. strings_size, table_entries, table_entries_used));
  281. if (url_feof(pb))
  282. return -1;
  283. PRINT(("NSV got header; filepos %Ld\n", url_ftell(pb)));
  284. if (strings_size > 0) {
  285. char *strings; /* last byte will be '\0' to play safe with str*() */
  286. char *p, *endp;
  287. char *token, *value;
  288. char quote;
  289. p = strings = av_mallocz(strings_size + 1);
  290. endp = strings + strings_size;
  291. get_buffer(pb, strings, strings_size);
  292. while (p < endp) {
  293. while (*p == ' ')
  294. p++; /* strip out spaces */
  295. if (p >= endp-2)
  296. break;
  297. token = p;
  298. p = strchr(p, '=');
  299. if (!p || p >= endp-2)
  300. break;
  301. *p++ = '\0';
  302. quote = *p++;
  303. value = p;
  304. p = strchr(p, quote);
  305. if (!p || p >= endp)
  306. break;
  307. *p++ = '\0';
  308. PRINT(("NSV NSVf INFO: %s='%s'\n", token, value));
  309. if (!strcmp(token, "ASPECT")) {
  310. /* don't care */
  311. } else if (!strcmp(token, "CREATOR") || !strcmp(token, "Author")) {
  312. strncpy(s->author, value, 512-1);
  313. } else if (!strcmp(token, "Copyright")) {
  314. strncpy(s->copyright, value, 512-1);
  315. } else if (!strcmp(token, "TITLE") || !strcmp(token, "Title")) {
  316. strncpy(s->title, value, 512-1);
  317. }
  318. }
  319. av_free(strings);
  320. }
  321. if (url_feof(pb))
  322. return -1;
  323. PRINT(("NSV got infos; filepos %Ld\n", url_ftell(pb)));
  324. if (table_entries_used > 0) {
  325. nsv->index_entries = table_entries_used;
  326. if((unsigned)table_entries >= UINT_MAX / sizeof(uint32_t))
  327. return -1;
  328. nsv->nsvf_index_data = av_malloc(table_entries * sizeof(uint32_t));
  329. get_buffer(pb, nsv->nsvf_index_data, table_entries * sizeof(uint32_t));
  330. }
  331. PRINT(("NSV got index; filepos %Ld\n", url_ftell(pb)));
  332. #ifdef DEBUG_DUMP_INDEX
  333. #define V(v) ((v<0x20 || v > 127)?'.':v)
  334. /* dump index */
  335. PRINT(("NSV %d INDEX ENTRIES:\n", table_entries));
  336. PRINT(("NSV [dataoffset][fileoffset]\n", table_entries));
  337. for (i = 0; i < table_entries; i++) {
  338. unsigned char b[8];
  339. url_fseek(pb, size + nsv->nsvf_index_data[i], SEEK_SET);
  340. get_buffer(pb, b, 8);
  341. PRINT(("NSV [0x%08lx][0x%08lx]: %02x %02x %02x %02x %02x %02x %02x %02x"
  342. "%c%c%c%c%c%c%c%c\n",
  343. nsv->nsvf_index_data[i], size + nsv->nsvf_index_data[i],
  344. b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
  345. V(b[0]), V(b[1]), V(b[2]), V(b[3]), V(b[4]), V(b[5]), V(b[6]), V(b[7]) ));
  346. }
  347. //url_fseek(pb, size, SEEK_SET); /* go back to end of header */
  348. #undef V
  349. #endif
  350. url_fseek(pb, nsv->base_offset + size, SEEK_SET); /* required for dumbdriving-271.nsv (2 extra bytes) */
  351. if (url_feof(pb))
  352. return -1;
  353. nsv->state = NSV_HAS_READ_NSVF;
  354. return 0;
  355. }
  356. static int nsv_parse_NSVs_header(AVFormatContext *s, AVFormatParameters *ap)
  357. {
  358. NSVContext *nsv = s->priv_data;
  359. ByteIOContext *pb = &s->pb;
  360. uint32_t vtag, atag;
  361. uint16_t vwidth, vheight;
  362. uint32_t framerate;
  363. uint16_t unknown;
  364. AVStream *st;
  365. NSVStream *nst;
  366. PRINT(("%s()\n", __FUNCTION__));
  367. vtag = get_le32(pb);
  368. atag = get_le32(pb);
  369. vwidth = get_le16(pb);
  370. vheight = get_le16(pb);
  371. framerate = (uint8_t)get_byte(pb);
  372. /* XXX how big must the table be ? */
  373. /* seems there is more to that... */
  374. PRINT(("NSV NSVs framerate code %2x\n", framerate));
  375. framerate = (framerate & 0x80)?(nsv_framerate_table[framerate & 0x7F]):(framerate*AV_TIME_BASE);
  376. unknown = get_le16(pb);
  377. #ifdef DEBUG
  378. print_tag("NSV NSVs vtag", vtag, 0);
  379. print_tag("NSV NSVs atag", atag, 0);
  380. PRINT(("NSV NSVs vsize %dx%d\n", vwidth, vheight));
  381. PRINT(("NSV NSVs framerate %2x\n", framerate));
  382. #endif
  383. /* XXX change to ap != NULL ? */
  384. if (s->nb_streams == 0) { /* streams not yet published, let's do that */
  385. nsv->vtag = vtag;
  386. nsv->atag = atag;
  387. nsv->vwidth = vwidth;
  388. nsv->vheight = vwidth;
  389. if (vtag != T_NONE) {
  390. st = av_new_stream(s, NSV_ST_VIDEO);
  391. if (!st)
  392. goto fail;
  393. nst = av_mallocz(sizeof(NSVStream));
  394. if (!nst)
  395. goto fail;
  396. st->priv_data = nst;
  397. st->codec.codec_type = CODEC_TYPE_VIDEO;
  398. st->codec.codec_tag = vtag;
  399. st->codec.codec_id = codec_get_id(nsv_codec_video_tags, vtag);
  400. st->codec.width = vwidth;
  401. st->codec.height = vheight;
  402. st->codec.bits_per_sample = 24; /* depth XXX */
  403. st->codec.frame_rate = framerate;
  404. st->codec.frame_rate_base = AV_TIME_BASE;
  405. av_set_pts_info(st, 64, AV_TIME_BASE, framerate);
  406. st->start_time = 0;
  407. st->duration = nsv->duration;
  408. }
  409. if (atag != T_NONE) {
  410. #ifndef DISABLE_AUDIO
  411. st = av_new_stream(s, NSV_ST_AUDIO);
  412. if (!st)
  413. goto fail;
  414. nst = av_mallocz(sizeof(NSVStream));
  415. if (!nst)
  416. goto fail;
  417. st->priv_data = nst;
  418. st->codec.codec_type = CODEC_TYPE_AUDIO;
  419. st->codec.codec_tag = atag;
  420. st->codec.codec_id = codec_get_id(nsv_codec_audio_tags, atag);
  421. st->start_time = 0;
  422. st->duration = nsv->duration;
  423. st->need_parsing = 1; /* for PCM we will read a chunk later and put correct info */
  424. /* XXX:FIXME */
  425. //st->codec.channels = 2; //XXX:channels;
  426. //st->codec.sample_rate = 1000;
  427. //av_set_pts_info(st, 64, 1, st->codec.sample_rate);
  428. #endif
  429. }
  430. #ifdef CHECK_SUBSEQUENT_NSVS
  431. } else {
  432. if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
  433. PRINT(("NSV NSVs header values differ from the first one!!!\n"));
  434. //return -1;
  435. }
  436. #endif /* CHECK_SUBSEQUENT_NSVS */
  437. }
  438. nsv->state = NSV_HAS_READ_NSVS;
  439. return 0;
  440. fail:
  441. /* XXX */
  442. nsv->state = NSV_UNSYNC;
  443. return -1;
  444. }
  445. static int nsv_read_header(AVFormatContext *s, AVFormatParameters *ap)
  446. {
  447. NSVContext *nsv = s->priv_data;
  448. ByteIOContext *pb = &s->pb;
  449. uint32_t tag, tag1, handler;
  450. int codec_type, stream_index, frame_period, bit_rate, scale, rate;
  451. unsigned int size, nb_frames;
  452. int table_entries;
  453. int i, n, err;
  454. AVStream *st;
  455. NSVStream *ast;
  456. PRINT(("%s()\n", __FUNCTION__));
  457. PRINT(("filename '%s'\n", s->filename));
  458. nsv->state = NSV_UNSYNC;
  459. nsv->ahead[0].data = nsv->ahead[1].data = NULL;
  460. for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
  461. if (nsv_resync(s) < 0)
  462. return -1;
  463. if (nsv->state == NSV_FOUND_NSVF)
  464. err = nsv_parse_NSVf_header(s, ap);
  465. /* we need the first NSVs also... */
  466. if (nsv->state == NSV_FOUND_NSVS) {
  467. err = nsv_parse_NSVs_header(s, ap);
  468. break; /* we just want the first one */
  469. }
  470. }
  471. if (s->nb_streams < 1) /* no luck so far */
  472. return -1;
  473. /* now read the first chunk, so we can attempt to decode more info */
  474. err = nsv_read_chunk(s, 1);
  475. PRINT(("parsed header\n"));
  476. return 0;
  477. }
  478. static int nsv_read_chunk(AVFormatContext *s, int fill_header)
  479. {
  480. NSVContext *nsv = s->priv_data;
  481. ByteIOContext *pb = &s->pb;
  482. AVStream *st[2] = {NULL, NULL};
  483. NSVStream *nst;
  484. AVPacket *pkt;
  485. uint32_t v = 0;
  486. int i, err = 0;
  487. uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
  488. uint32_t vsize;
  489. uint16_t asize;
  490. uint16_t auxsize;
  491. uint32_t auxtag;
  492. PRINT(("%s(%d)\n", __FUNCTION__, fill_header));
  493. if (nsv->ahead[0].data || nsv->ahead[1].data)
  494. return 0; //-1; /* hey! eat what you've in your plate first! */
  495. null_chunk_retry:
  496. if (url_feof(pb))
  497. return -1;
  498. for (i = 0; i < NSV_MAX_RESYNC_TRIES && nsv->state < NSV_FOUND_NSVS && !err; i++)
  499. err = nsv_resync(s);
  500. if (err < 0)
  501. return err;
  502. if (nsv->state == NSV_FOUND_NSVS)
  503. err = nsv_parse_NSVs_header(s, NULL);
  504. if (err < 0)
  505. return err;
  506. if (nsv->state != NSV_HAS_READ_NSVS && nsv->state != NSV_FOUND_BEEF)
  507. return -1;
  508. auxcount = get_byte(pb);
  509. vsize = get_le16(pb);
  510. asize = get_le16(pb);
  511. vsize = (vsize << 4) | (auxcount >> 4);
  512. auxcount &= 0x0f;
  513. PRINT(("NSV CHUNK %d aux, %ld bytes video, %d bytes audio\n", auxcount, vsize, asize));
  514. /* skip aux stuff */
  515. for (i = 0; i < auxcount; i++) {
  516. auxsize = get_le16(pb);
  517. auxtag = get_le32(pb);
  518. PRINT(("NSV aux data: '%c%c%c%c', %d bytes\n",
  519. (auxtag & 0x0ff),
  520. ((auxtag >> 8) & 0x0ff),
  521. ((auxtag >> 16) & 0x0ff),
  522. ((auxtag >> 24) & 0x0ff),
  523. auxsize));
  524. url_fskip(pb, auxsize);
  525. vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
  526. }
  527. if (url_feof(pb))
  528. return -1;
  529. if (!vsize && !asize) {
  530. nsv->state = NSV_UNSYNC;
  531. goto null_chunk_retry;
  532. }
  533. /* map back streams to v,a */
  534. if (s->streams[0])
  535. st[s->streams[0]->id] = s->streams[0];
  536. if (s->streams[1])
  537. st[s->streams[1]->id] = s->streams[1];
  538. if (vsize/* && st[NSV_ST_VIDEO]*/) {
  539. nst = st[NSV_ST_VIDEO]->priv_data;
  540. pkt = &nsv->ahead[NSV_ST_VIDEO];
  541. av_new_packet(pkt, vsize);
  542. get_buffer(pb, pkt->data, vsize);
  543. pkt->stream_index = st[NSV_ST_VIDEO]->index;//NSV_ST_VIDEO;
  544. pkt->dts = nst->frame_offset++;
  545. pkt->flags |= PKT_FLAG_KEY; /* stupid format has no way to tell XXX: try the index */
  546. /*
  547. for (i = 0; i < MIN(8, vsize); i++)
  548. PRINT(("NSV video: [%d] = %02x\n", i, pkt->data[i]));
  549. */
  550. }
  551. if (asize/*st[NSV_ST_AUDIO]*/) {
  552. nst = st[NSV_ST_AUDIO]->priv_data;
  553. pkt = &nsv->ahead[NSV_ST_AUDIO];
  554. /* read raw audio specific header on the first audio chunk... */
  555. /* on ALL audio chunks ?? seems so! */
  556. if (asize && st[NSV_ST_AUDIO]->codec.codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
  557. uint8_t bps;
  558. uint8_t channels;
  559. uint16_t samplerate;
  560. bps = get_byte(pb);
  561. channels = get_byte(pb);
  562. samplerate = get_le16(pb);
  563. asize-=4;
  564. PRINT(("NSV RAWAUDIO: bps %d, nchan %d, srate %ld\n", bps, channels, samplerate));
  565. if (fill_header) {
  566. st[NSV_ST_AUDIO]->need_parsing = 0; /* we know everything */
  567. if (bps != 16) {
  568. PRINT(("NSV AUDIO bit/sample != 16 (%d)!!!\n", bps));
  569. }
  570. bps /= channels; // ???
  571. if (bps == 8)
  572. st[NSV_ST_AUDIO]->codec.codec_id = CODEC_ID_PCM_U8;
  573. samplerate /= 4;/* UGH ??? XXX */
  574. channels = 1;
  575. st[NSV_ST_AUDIO]->codec.channels = channels;
  576. st[NSV_ST_AUDIO]->codec.sample_rate = samplerate;
  577. av_set_pts_info(st[NSV_ST_AUDIO], 64, 1,
  578. st[NSV_ST_AUDIO]->codec.sample_rate);
  579. PRINT(("NSV RAWAUDIO: bps %d, nchan %d, srate %ld\n", bps, channels, samplerate));
  580. }
  581. }
  582. av_new_packet(pkt, asize);
  583. if (asize)
  584. get_buffer(pb, pkt->data, asize);
  585. pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
  586. //pkt->dts = nst->frame_offset;
  587. //if (nst->sample_size)
  588. // pkt->dts /= nst->sample_size;
  589. nst->frame_offset += asize; // XXX: that's valid only for PCM !?
  590. }
  591. //pkt->flags |= PKT_FLAG_KEY;
  592. nsv->state = NSV_UNSYNC;
  593. return 0;
  594. }
  595. static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
  596. {
  597. NSVContext *nsv = s->priv_data;
  598. ByteIOContext *pb = &s->pb;
  599. int i, err = 0;
  600. PRINT(("%s()\n", __FUNCTION__));
  601. /* in case we don't already have something to eat ... */
  602. if (nsv->ahead[0].data == NULL && nsv->ahead[1].data == NULL)
  603. err = nsv_read_chunk(s, 0);
  604. if (err < 0)
  605. return err;
  606. /* now pick one of the plates */
  607. for (i = 0; i < 2; i++) {
  608. if (nsv->ahead[i].data) {
  609. PRINT(("%s: using cached packet[%d]\n", __FUNCTION__, i));
  610. /* avoid the cost of new_packet + memcpy(->data) */
  611. memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket));
  612. nsv->ahead[i].data = NULL; /* we ate that one */
  613. return pkt->size;
  614. }
  615. }
  616. /* this restaurant is not approvisionned :^] */
  617. return -1;
  618. }
  619. static int nsv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  620. {
  621. NSVContext *avi = s->priv_data;
  622. AVStream *st;
  623. NSVStream *ast;
  624. int frame_number, i;
  625. int64_t pos;
  626. return -1;
  627. }
  628. static int nsv_read_close(AVFormatContext *s)
  629. {
  630. int i;
  631. NSVContext *nsv = s->priv_data;
  632. if (nsv->index_entries)
  633. av_free(nsv->nsvf_index_data);
  634. #if 0
  635. for(i=0;i<s->nb_streams;i++) {
  636. AVStream *st = s->streams[i];
  637. NSVStream *ast = st->priv_data;
  638. if(ast){
  639. av_free(ast->index_entries);
  640. av_free(ast);
  641. }
  642. av_free(st->codec.extradata);
  643. av_free(st->codec.palctrl);
  644. }
  645. #endif
  646. return 0;
  647. }
  648. static int nsv_probe(AVProbeData *p)
  649. {
  650. int i;
  651. // PRINT(("nsv_probe(), buf_size %d\n", p->buf_size));
  652. /* check file header */
  653. if (p->buf_size <= 32)
  654. return 0;
  655. if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
  656. p->buf[2] == 'V' && p->buf[3] == 'f')
  657. return AVPROBE_SCORE_MAX;
  658. /* streamed files might not have any header */
  659. if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
  660. p->buf[2] == 'V' && p->buf[3] == 's')
  661. return AVPROBE_SCORE_MAX;
  662. /* XXX: do streamed files always start at chunk boundary ?? */
  663. /* or do we need to search NSVs in the byte stream ? */
  664. /* seems the servers don't bother starting clean chunks... */
  665. /* sometimes even the first header is at 9KB or something :^) */
  666. for (i = 1; i < p->buf_size - 3; i++) {
  667. if (p->buf[i+0] == 'N' && p->buf[i+1] == 'S' &&
  668. p->buf[i+2] == 'V' && p->buf[i+3] == 's')
  669. return AVPROBE_SCORE_MAX-20;
  670. }
  671. /* so we'll have more luck on extension... */
  672. if (match_ext(p->filename, "nsv"))
  673. return AVPROBE_SCORE_MAX-20;
  674. /* FIXME: add mime-type check */
  675. return 0;
  676. }
  677. static AVInputFormat nsv_iformat = {
  678. "nsv",
  679. "NullSoft Video format",
  680. sizeof(NSVContext),
  681. nsv_probe,
  682. nsv_read_header,
  683. nsv_read_packet,
  684. nsv_read_close,
  685. nsv_read_seek,
  686. };
  687. int nsvdec_init(void)
  688. {
  689. av_register_input_format(&nsv_iformat);
  690. return 0;
  691. }