nsvdec.c 26 KB

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