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.

764 lines
26KB

  1. /*
  2. * NSV demuxer
  3. * Copyright (c) 2004 The FFmpeg Project
  4. *
  5. * first version by Francois Revol <revol@free.fr>
  6. *
  7. * This file is part of FFmpeg.
  8. *
  9. * FFmpeg is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation; either
  12. * version 2.1 of the License, or (at your option) any later version.
  13. *
  14. * FFmpeg is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with FFmpeg; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. */
  23. #include "libavutil/attributes.h"
  24. #include "libavutil/mathematics.h"
  25. #include "avformat.h"
  26. #include "internal.h"
  27. #include "libavutil/dict.h"
  28. #include "libavutil/intreadwrite.h"
  29. /* max bytes to crawl for trying to resync
  30. * stupid streaming servers don't start at chunk boundaries...
  31. */
  32. #define NSV_MAX_RESYNC (500*1024)
  33. #define NSV_MAX_RESYNC_TRIES 300
  34. /*
  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; /* av_assert0(vwidth%16==0) */
  93. uint16_t vheight; /* av_assert0(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 NSVContext {
  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. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', ' ') },
  165. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
  166. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
  167. { AV_CODEC_ID_VP5, MKTAG('V', 'P', '5', ' ') },
  168. { AV_CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') },
  169. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', ' ') },
  170. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') },
  171. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') },
  172. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') },
  173. { AV_CODEC_ID_VP8, MKTAG('V', 'P', '8', '0') },
  174. /*
  175. { AV_CODEC_ID_VP4, MKTAG('V', 'P', '4', ' ') },
  176. { AV_CODEC_ID_VP4, MKTAG('V', 'P', '4', '0') },
  177. */
  178. { AV_CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, /* cf sample xvid decoder from nsv_codec_sdk.zip */
  179. { AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', '3') },
  180. { AV_CODEC_ID_NONE, 0 },
  181. };
  182. static const AVCodecTag nsv_codec_audio_tags[] = {
  183. { AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
  184. { AV_CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') },
  185. { AV_CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') },
  186. { AV_CODEC_ID_AAC, MKTAG('V', 'L', 'B', ' ') },
  187. { AV_CODEC_ID_SPEEX, MKTAG('S', 'P', 'X', ' ') },
  188. { AV_CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') },
  189. { AV_CODEC_ID_NONE, 0 },
  190. };
  191. //static int nsv_load_index(AVFormatContext *s);
  192. static int nsv_read_chunk(AVFormatContext *s, int fill_header);
  193. #define print_tag(str, tag, size) \
  194. av_log(NULL, AV_LOG_TRACE, "%s: tag=%c%c%c%c\n", \
  195. str, tag & 0xff, \
  196. (tag >> 8) & 0xff, \
  197. (tag >> 16) & 0xff, \
  198. (tag >> 24) & 0xff);
  199. /* try to find something we recognize, and set the state accordingly */
  200. static int nsv_resync(AVFormatContext *s)
  201. {
  202. NSVContext *nsv = s->priv_data;
  203. AVIOContext *pb = s->pb;
  204. uint32_t v = 0;
  205. int i;
  206. av_log(s, AV_LOG_TRACE, "%s(), offset = %"PRId64", state = %d\n", __FUNCTION__, avio_tell(pb), nsv->state);
  207. //nsv->state = NSV_UNSYNC;
  208. for (i = 0; i < NSV_MAX_RESYNC; i++) {
  209. if (avio_feof(pb)) {
  210. av_log(s, AV_LOG_TRACE, "NSV EOF\n");
  211. nsv->state = NSV_UNSYNC;
  212. return -1;
  213. }
  214. v <<= 8;
  215. v |= avio_r8(pb);
  216. if (i < 8) {
  217. av_log(s, AV_LOG_TRACE, "NSV resync: [%d] = %02x\n", i, v & 0x0FF);
  218. }
  219. if ((v & 0x0000ffff) == 0xefbe) { /* BEEF */
  220. av_log(s, AV_LOG_TRACE, "NSV resynced on BEEF after %d bytes\n", i+1);
  221. nsv->state = NSV_FOUND_BEEF;
  222. return 0;
  223. }
  224. /* we read as big-endian, thus the MK*BE* */
  225. if (v == TB_NSVF) { /* NSVf */
  226. av_log(s, AV_LOG_TRACE, "NSV resynced on NSVf after %d bytes\n", i+1);
  227. nsv->state = NSV_FOUND_NSVF;
  228. return 0;
  229. }
  230. if (v == MKBETAG('N', 'S', 'V', 's')) { /* NSVs */
  231. av_log(s, AV_LOG_TRACE, "NSV resynced on NSVs after %d bytes\n", i+1);
  232. nsv->state = NSV_FOUND_NSVS;
  233. return 0;
  234. }
  235. }
  236. av_log(s, AV_LOG_TRACE, "NSV sync lost\n");
  237. return -1;
  238. }
  239. static int nsv_parse_NSVf_header(AVFormatContext *s)
  240. {
  241. NSVContext *nsv = s->priv_data;
  242. AVIOContext *pb = s->pb;
  243. unsigned int av_unused file_size;
  244. unsigned int size;
  245. int64_t duration;
  246. int strings_size;
  247. int table_entries;
  248. int table_entries_used;
  249. av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__);
  250. nsv->state = NSV_UNSYNC; /* in case we fail */
  251. size = avio_rl32(pb);
  252. if (size < 28)
  253. return -1;
  254. nsv->NSVf_end = size;
  255. //s->file_size = (uint32_t)avio_rl32(pb);
  256. file_size = (uint32_t)avio_rl32(pb);
  257. av_log(s, AV_LOG_TRACE, "NSV NSVf chunk_size %u\n", size);
  258. av_log(s, AV_LOG_TRACE, "NSV NSVf file_size %u\n", file_size);
  259. nsv->duration = duration = avio_rl32(pb); /* in ms */
  260. av_log(s, AV_LOG_TRACE, "NSV NSVf duration %"PRId64" ms\n", duration);
  261. // XXX: store it in AVStreams
  262. strings_size = avio_rl32(pb);
  263. table_entries = avio_rl32(pb);
  264. table_entries_used = avio_rl32(pb);
  265. av_log(s, AV_LOG_TRACE, "NSV NSVf info-strings size: %d, table entries: %d, bis %d\n",
  266. strings_size, table_entries, table_entries_used);
  267. if (avio_feof(pb))
  268. return -1;
  269. av_log(s, AV_LOG_TRACE, "NSV got header; filepos %"PRId64"\n", avio_tell(pb));
  270. if (strings_size > 0) {
  271. char *strings; /* last byte will be '\0' to play safe with str*() */
  272. char *p, *endp;
  273. char *token, *value;
  274. char quote;
  275. p = strings = av_mallocz((size_t)strings_size + 1);
  276. if (!p)
  277. return AVERROR(ENOMEM);
  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_log(s, AV_LOG_TRACE, "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 (avio_feof(pb))
  302. return -1;
  303. av_log(s, AV_LOG_TRACE, "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_array((unsigned)table_entries_used, sizeof(uint32_t));
  310. if (!nsv->nsvs_file_offset)
  311. return AVERROR(ENOMEM);
  312. for(i=0;i<table_entries_used;i++)
  313. nsv->nsvs_file_offset[i] = avio_rl32(pb) + size;
  314. if(table_entries > table_entries_used &&
  315. avio_rl32(pb) == MKTAG('T','O','C','2')) {
  316. nsv->nsvs_timestamps = av_malloc_array((unsigned)table_entries_used, sizeof(uint32_t));
  317. if (!nsv->nsvs_timestamps)
  318. return AVERROR(ENOMEM);
  319. for(i=0;i<table_entries_used;i++) {
  320. nsv->nsvs_timestamps[i] = avio_rl32(pb);
  321. }
  322. }
  323. }
  324. av_log(s, AV_LOG_TRACE, "NSV got index; filepos %"PRId64"\n", avio_tell(pb));
  325. avio_seek(pb, nsv->base_offset + size, SEEK_SET); /* required for dumbdriving-271.nsv (2 extra bytes) */
  326. if (avio_feof(pb))
  327. return -1;
  328. nsv->state = NSV_HAS_READ_NSVF;
  329. return 0;
  330. }
  331. static int nsv_parse_NSVs_header(AVFormatContext *s)
  332. {
  333. NSVContext *nsv = s->priv_data;
  334. AVIOContext *pb = s->pb;
  335. uint32_t vtag, atag;
  336. uint16_t vwidth, vheight;
  337. AVRational framerate;
  338. int i;
  339. AVStream *st;
  340. NSVStream *nst;
  341. av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__);
  342. vtag = avio_rl32(pb);
  343. atag = avio_rl32(pb);
  344. vwidth = avio_rl16(pb);
  345. vheight = avio_rl16(pb);
  346. i = avio_r8(pb);
  347. av_log(s, AV_LOG_TRACE, "NSV NSVs framerate code %2x\n", i);
  348. if(i&0x80) { /* odd way of giving native framerates from docs */
  349. int t=(i & 0x7F)>>2;
  350. if(t<16) framerate = (AVRational){1, t+1};
  351. else framerate = (AVRational){t-15, 1};
  352. if(i&1){
  353. framerate.num *= 1000;
  354. framerate.den *= 1001;
  355. }
  356. if((i&3)==3) framerate.num *= 24;
  357. else if((i&3)==2) framerate.num *= 25;
  358. else framerate.num *= 30;
  359. }
  360. else
  361. framerate= (AVRational){i, 1};
  362. nsv->avsync = avio_rl16(pb);
  363. nsv->framerate = framerate;
  364. print_tag("NSV NSVs vtag", vtag, 0);
  365. print_tag("NSV NSVs atag", atag, 0);
  366. av_log(s, AV_LOG_TRACE, "NSV NSVs vsize %dx%d\n", vwidth, vheight);
  367. /* XXX change to ap != NULL ? */
  368. if (s->nb_streams == 0) { /* streams not yet published, let's do that */
  369. nsv->vtag = vtag;
  370. nsv->atag = atag;
  371. nsv->vwidth = vwidth;
  372. nsv->vheight = vwidth;
  373. if (vtag != T_NONE) {
  374. int i;
  375. st = avformat_new_stream(s, NULL);
  376. if (!st)
  377. goto fail;
  378. st->id = NSV_ST_VIDEO;
  379. nst = av_mallocz(sizeof(NSVStream));
  380. if (!nst)
  381. goto fail;
  382. st->priv_data = nst;
  383. st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
  384. st->codec->codec_tag = vtag;
  385. st->codec->codec_id = ff_codec_get_id(nsv_codec_video_tags, vtag);
  386. st->codec->width = vwidth;
  387. st->codec->height = vheight;
  388. st->codec->bits_per_coded_sample = 24; /* depth XXX */
  389. avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
  390. st->start_time = 0;
  391. st->duration = av_rescale(nsv->duration, framerate.num, 1000*framerate.den);
  392. for(i=0;i<nsv->index_entries;i++) {
  393. if(nsv->nsvs_timestamps) {
  394. av_add_index_entry(st, nsv->nsvs_file_offset[i], nsv->nsvs_timestamps[i],
  395. 0, 0, AVINDEX_KEYFRAME);
  396. } else {
  397. int64_t ts = av_rescale(i*nsv->duration/nsv->index_entries, framerate.num, 1000*framerate.den);
  398. av_add_index_entry(st, nsv->nsvs_file_offset[i], ts, 0, 0, AVINDEX_KEYFRAME);
  399. }
  400. }
  401. }
  402. if (atag != T_NONE) {
  403. st = avformat_new_stream(s, NULL);
  404. if (!st)
  405. goto fail;
  406. st->id = NSV_ST_AUDIO;
  407. nst = av_mallocz(sizeof(NSVStream));
  408. if (!nst)
  409. goto fail;
  410. st->priv_data = nst;
  411. st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
  412. st->codec->codec_tag = atag;
  413. st->codec->codec_id = ff_codec_get_id(nsv_codec_audio_tags, atag);
  414. st->need_parsing = AVSTREAM_PARSE_FULL; /* for PCM we will read a chunk later and put correct info */
  415. /* set timebase to common denominator of ms and framerate */
  416. avpriv_set_pts_info(st, 64, 1, framerate.num*1000);
  417. st->start_time = 0;
  418. st->duration = (int64_t)nsv->duration * framerate.num;
  419. }
  420. } else {
  421. if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
  422. av_log(s, AV_LOG_TRACE, "NSV NSVs header values differ from the first one!!!\n");
  423. //return -1;
  424. }
  425. }
  426. nsv->state = NSV_HAS_READ_NSVS;
  427. return 0;
  428. fail:
  429. /* XXX */
  430. nsv->state = NSV_UNSYNC;
  431. return -1;
  432. }
  433. static int nsv_read_header(AVFormatContext *s)
  434. {
  435. NSVContext *nsv = s->priv_data;
  436. int i, err;
  437. av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__);
  438. av_log(s, AV_LOG_TRACE, "filename '%s'\n", s->filename);
  439. nsv->state = NSV_UNSYNC;
  440. nsv->ahead[0].data = nsv->ahead[1].data = NULL;
  441. for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
  442. if (nsv_resync(s) < 0)
  443. return -1;
  444. if (nsv->state == NSV_FOUND_NSVF) {
  445. err = nsv_parse_NSVf_header(s);
  446. if (err < 0)
  447. return err;
  448. }
  449. /* we need the first NSVs also... */
  450. if (nsv->state == NSV_FOUND_NSVS) {
  451. err = nsv_parse_NSVs_header(s);
  452. if (err < 0)
  453. return err;
  454. break; /* we just want the first one */
  455. }
  456. }
  457. if (s->nb_streams < 1) /* no luck so far */
  458. return -1;
  459. /* now read the first chunk, so we can attempt to decode more info */
  460. err = nsv_read_chunk(s, 1);
  461. av_log(s, AV_LOG_TRACE, "parsed header\n");
  462. return err;
  463. }
  464. static int nsv_read_chunk(AVFormatContext *s, int fill_header)
  465. {
  466. NSVContext *nsv = s->priv_data;
  467. AVIOContext *pb = s->pb;
  468. AVStream *st[2] = {NULL, NULL};
  469. NSVStream *nst;
  470. AVPacket *pkt;
  471. int i, err = 0;
  472. uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
  473. uint32_t vsize;
  474. uint16_t asize;
  475. uint16_t auxsize;
  476. int ret;
  477. av_log(s, AV_LOG_TRACE, "%s(%d)\n", __FUNCTION__, fill_header);
  478. if (nsv->ahead[0].data || nsv->ahead[1].data)
  479. return 0; //-1; /* hey! eat what you've in your plate first! */
  480. null_chunk_retry:
  481. if (avio_feof(pb))
  482. return -1;
  483. for (i = 0; i < NSV_MAX_RESYNC_TRIES && nsv->state < NSV_FOUND_NSVS && !err; i++)
  484. err = nsv_resync(s);
  485. if (err < 0)
  486. return err;
  487. if (nsv->state == NSV_FOUND_NSVS)
  488. err = nsv_parse_NSVs_header(s);
  489. if (err < 0)
  490. return err;
  491. if (nsv->state != NSV_HAS_READ_NSVS && nsv->state != NSV_FOUND_BEEF)
  492. return -1;
  493. auxcount = avio_r8(pb);
  494. vsize = avio_rl16(pb);
  495. asize = avio_rl16(pb);
  496. vsize = (vsize << 4) | (auxcount >> 4);
  497. auxcount &= 0x0f;
  498. av_log(s, AV_LOG_TRACE, "NSV CHUNK %d aux, %u bytes video, %d bytes audio\n", auxcount, vsize, asize);
  499. /* skip aux stuff */
  500. for (i = 0; i < auxcount; i++) {
  501. uint32_t av_unused auxtag;
  502. auxsize = avio_rl16(pb);
  503. auxtag = avio_rl32(pb);
  504. av_log(s, AV_LOG_TRACE, "NSV aux data: '%c%c%c%c', %d bytes\n",
  505. (auxtag & 0x0ff),
  506. ((auxtag >> 8) & 0x0ff),
  507. ((auxtag >> 16) & 0x0ff),
  508. ((auxtag >> 24) & 0x0ff),
  509. auxsize);
  510. avio_skip(pb, auxsize);
  511. vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
  512. }
  513. if (avio_feof(pb))
  514. return -1;
  515. if (!vsize && !asize) {
  516. nsv->state = NSV_UNSYNC;
  517. goto null_chunk_retry;
  518. }
  519. /* map back streams to v,a */
  520. if (s->nb_streams > 0)
  521. st[s->streams[0]->id] = s->streams[0];
  522. if (s->nb_streams > 1)
  523. st[s->streams[1]->id] = s->streams[1];
  524. if (vsize && st[NSV_ST_VIDEO]) {
  525. nst = st[NSV_ST_VIDEO]->priv_data;
  526. pkt = &nsv->ahead[NSV_ST_VIDEO];
  527. if ((ret = av_get_packet(pb, pkt, vsize)) < 0)
  528. return ret;
  529. pkt->stream_index = st[NSV_ST_VIDEO]->index;//NSV_ST_VIDEO;
  530. pkt->dts = nst->frame_offset;
  531. pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  532. for (i = 0; i < FFMIN(8, vsize); i++)
  533. av_log(s, AV_LOG_TRACE, "NSV video: [%d] = %02x\n", i, pkt->data[i]);
  534. }
  535. if(st[NSV_ST_VIDEO])
  536. ((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset++;
  537. if (asize && st[NSV_ST_AUDIO]) {
  538. nst = st[NSV_ST_AUDIO]->priv_data;
  539. pkt = &nsv->ahead[NSV_ST_AUDIO];
  540. /* read raw audio specific header on the first audio chunk... */
  541. /* on ALL audio chunks ?? seems so! */
  542. if (asize && st[NSV_ST_AUDIO]->codec->codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
  543. uint8_t bps;
  544. uint8_t channels;
  545. uint16_t samplerate;
  546. bps = avio_r8(pb);
  547. channels = avio_r8(pb);
  548. samplerate = avio_rl16(pb);
  549. if (!channels || !samplerate)
  550. return AVERROR_INVALIDDATA;
  551. asize-=4;
  552. av_log(s, AV_LOG_TRACE, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
  553. if (fill_header) {
  554. st[NSV_ST_AUDIO]->need_parsing = AVSTREAM_PARSE_NONE; /* we know everything */
  555. if (bps != 16) {
  556. av_log(s, AV_LOG_TRACE, "NSV AUDIO bit/sample != 16 (%d)!!!\n", bps);
  557. }
  558. bps /= channels; // ???
  559. if (bps == 8)
  560. st[NSV_ST_AUDIO]->codec->codec_id = AV_CODEC_ID_PCM_U8;
  561. samplerate /= 4;/* UGH ??? XXX */
  562. channels = 1;
  563. st[NSV_ST_AUDIO]->codec->channels = channels;
  564. st[NSV_ST_AUDIO]->codec->sample_rate = samplerate;
  565. av_log(s, AV_LOG_TRACE, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
  566. }
  567. }
  568. if ((ret = av_get_packet(pb, pkt, asize)) < 0)
  569. return ret;
  570. pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
  571. pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  572. if( nsv->state == NSV_HAS_READ_NSVS && st[NSV_ST_VIDEO] ) {
  573. /* on a nsvs frame we have new information on a/v sync */
  574. pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
  575. pkt->dts *= (int64_t)1000 * nsv->framerate.den;
  576. pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
  577. av_log(s, AV_LOG_TRACE, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
  578. }
  579. nst->frame_offset++;
  580. }
  581. nsv->state = NSV_UNSYNC;
  582. return 0;
  583. }
  584. static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
  585. {
  586. NSVContext *nsv = s->priv_data;
  587. int i, err = 0;
  588. av_log(s, AV_LOG_TRACE, "%s()\n", __FUNCTION__);
  589. /* in case we don't already have something to eat ... */
  590. if (!nsv->ahead[0].data && !nsv->ahead[1].data)
  591. err = nsv_read_chunk(s, 0);
  592. if (err < 0)
  593. return err;
  594. /* now pick one of the plates */
  595. for (i = 0; i < 2; i++) {
  596. if (nsv->ahead[i].data) {
  597. av_log(s, AV_LOG_TRACE, "%s: using cached packet[%d]\n", __FUNCTION__, i);
  598. /* avoid the cost of new_packet + memcpy(->data) */
  599. memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket));
  600. nsv->ahead[i].data = NULL; /* we ate that one */
  601. return pkt->size;
  602. }
  603. }
  604. /* this restaurant is not approvisionned :^] */
  605. return -1;
  606. }
  607. static int nsv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  608. {
  609. NSVContext *nsv = s->priv_data;
  610. AVStream *st = s->streams[stream_index];
  611. NSVStream *nst = st->priv_data;
  612. int index;
  613. index = av_index_search_timestamp(st, timestamp, flags);
  614. if(index < 0)
  615. return -1;
  616. if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
  617. return -1;
  618. nst->frame_offset = st->index_entries[index].timestamp;
  619. nsv->state = NSV_UNSYNC;
  620. return 0;
  621. }
  622. static int nsv_read_close(AVFormatContext *s)
  623. {
  624. NSVContext *nsv = s->priv_data;
  625. av_freep(&nsv->nsvs_file_offset);
  626. av_freep(&nsv->nsvs_timestamps);
  627. if (nsv->ahead[0].data)
  628. av_free_packet(&nsv->ahead[0]);
  629. if (nsv->ahead[1].data)
  630. av_free_packet(&nsv->ahead[1]);
  631. return 0;
  632. }
  633. static int nsv_probe(AVProbeData *p)
  634. {
  635. int i, score = 0;
  636. av_log(NULL, AV_LOG_TRACE, "nsv_probe(), buf_size %d\n", p->buf_size);
  637. /* check file header */
  638. /* streamed files might not have any header */
  639. if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
  640. p->buf[2] == 'V' && (p->buf[3] == 'f' || p->buf[3] == 's'))
  641. return AVPROBE_SCORE_MAX;
  642. /* XXX: do streamed files always start at chunk boundary ?? */
  643. /* or do we need to search NSVs in the byte stream ? */
  644. /* seems the servers don't bother starting clean chunks... */
  645. /* sometimes even the first header is at 9KB or something :^) */
  646. for (i = 1; i < p->buf_size - 3; i++) {
  647. if (AV_RL32(p->buf + i) == AV_RL32("NSVs")) {
  648. /* Get the chunk size and check if at the end we are getting 0xBEEF */
  649. int vsize = AV_RL24(p->buf+i+19) >> 4;
  650. int asize = AV_RL16(p->buf+i+22);
  651. int offset = i + 23 + asize + vsize + 1;
  652. if (offset <= p->buf_size - 2 && AV_RL16(p->buf + offset) == 0xBEEF)
  653. return 4*AVPROBE_SCORE_MAX/5;
  654. score = AVPROBE_SCORE_MAX/5;
  655. }
  656. }
  657. /* so we'll have more luck on extension... */
  658. if (av_match_ext(p->filename, "nsv"))
  659. return AVPROBE_SCORE_EXTENSION;
  660. /* FIXME: add mime-type check */
  661. return score;
  662. }
  663. AVInputFormat ff_nsv_demuxer = {
  664. .name = "nsv",
  665. .long_name = NULL_IF_CONFIG_SMALL("Nullsoft Streaming Video"),
  666. .priv_data_size = sizeof(NSVContext),
  667. .read_probe = nsv_probe,
  668. .read_header = nsv_read_header,
  669. .read_packet = nsv_read_packet,
  670. .read_close = nsv_read_close,
  671. .read_seek = nsv_read_seek,
  672. };