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.

798 lines
25KB

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