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.

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