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.

789 lines
26KB

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