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.

797 lines
26KB

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