nsvdec.c 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764
  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 "avformat.h"
  22. #include "riff.h"
  23. //#define DEBUG
  24. //#define DEBUG_DUMP_INDEX // XXX dumbdriving-271.nsv breaks with it commented!!
  25. //#define DEBUG_SEEK
  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. #ifdef DEBUG
  79. #define PRINT(_v) printf _v
  80. #else
  81. #define PRINT(_v)
  82. #endif
  83. #if 0
  84. struct NSVf_header {
  85. uint32_t chunk_tag; /* 'NSVf' */
  86. uint32_t chunk_size;
  87. uint32_t file_size; /* max 4GB ??? no one learns anything it seems :^) */
  88. uint32_t file_length; //unknown1; /* what about MSB of file_size ? */
  89. uint32_t info_strings_size; /* size of the info strings */ //unknown2;
  90. uint32_t table_entries;
  91. uint32_t table_entries_used; /* the left ones should be -1 */
  92. };
  93. struct NSVs_header {
  94. uint32_t chunk_tag; /* 'NSVs' */
  95. uint32_t v4cc; /* or 'NONE' */
  96. uint32_t a4cc; /* or 'NONE' */
  97. uint16_t vwidth; /* assert(vwidth%16==0) */
  98. uint16_t vheight; /* assert(vheight%16==0) */
  99. uint8_t framerate; /* value = (framerate&0x80)?frtable[frameratex0x7f]:framerate */
  100. uint16_t unknown;
  101. };
  102. struct nsv_avchunk_header {
  103. uint8_t vchunk_size_lsb;
  104. uint16_t vchunk_size_msb; /* value = (vchunk_size_msb << 4) | (vchunk_size_lsb >> 4) */
  105. uint16_t achunk_size;
  106. };
  107. struct nsv_pcm_header {
  108. uint8_t bits_per_sample;
  109. uint8_t channel_count;
  110. uint16_t sample_rate;
  111. };
  112. #endif
  113. /* variation from avi.h */
  114. /*typedef struct CodecTag {
  115. int id;
  116. unsigned int tag;
  117. } CodecTag;*/
  118. /* tags */
  119. #define T_NSVF MKTAG('N', 'S', 'V', 'f') /* file header */
  120. #define T_NSVS MKTAG('N', 'S', 'V', 's') /* chunk header */
  121. #define T_TOC2 MKTAG('T', 'O', 'C', '2') /* extra index marker */
  122. #define T_NONE MKTAG('N', 'O', 'N', 'E') /* null a/v 4CC */
  123. #define T_SUBT MKTAG('S', 'U', 'B', 'T') /* subtitle aux data */
  124. #define T_ASYN MKTAG('A', 'S', 'Y', 'N') /* async a/v aux marker */
  125. #define T_KEYF MKTAG('K', 'E', 'Y', 'F') /* video keyframe aux marker (addition) */
  126. #define TB_NSVF MKBETAG('N', 'S', 'V', 'f')
  127. #define TB_NSVS MKBETAG('N', 'S', 'V', 's')
  128. /* hardcoded stream indexes */
  129. #define NSV_ST_VIDEO 0
  130. #define NSV_ST_AUDIO 1
  131. #define NSV_ST_SUBT 2
  132. enum NSVStatus {
  133. NSV_UNSYNC,
  134. NSV_FOUND_NSVF,
  135. NSV_HAS_READ_NSVF,
  136. NSV_FOUND_NSVS,
  137. NSV_HAS_READ_NSVS,
  138. NSV_FOUND_BEEF,
  139. NSV_GOT_VIDEO,
  140. NSV_GOT_AUDIO,
  141. };
  142. typedef struct NSVStream {
  143. int frame_offset; /* current frame (video) or byte (audio) counter
  144. (used to compute the pts) */
  145. int scale;
  146. int rate;
  147. int sample_size; /* audio only data */
  148. int start;
  149. int new_frame_offset; /* temporary storage (used during seek) */
  150. int cum_len; /* temporary storage (used during seek) */
  151. } NSVStream;
  152. typedef struct {
  153. int base_offset;
  154. int NSVf_end;
  155. uint32_t *nsvf_index_data;
  156. int index_entries;
  157. enum NSVStatus state;
  158. AVPacket ahead[2]; /* [v, a] if .data is !NULL there is something */
  159. /* cached */
  160. int64_t duration;
  161. uint32_t vtag, atag;
  162. uint16_t vwidth, vheight;
  163. int16_t avsync;
  164. AVRational framerate;
  165. //DVDemuxContext* dv_demux;
  166. } NSVContext;
  167. static const AVCodecTag nsv_codec_video_tags[] = {
  168. { CODEC_ID_VP3, MKTAG('V', 'P', '3', ' ') },
  169. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
  170. { CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
  171. { CODEC_ID_VP5, MKTAG('V', 'P', '5', ' ') },
  172. { CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') },
  173. { CODEC_ID_VP6, MKTAG('V', 'P', '6', ' ') },
  174. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') },
  175. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') },
  176. { CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') },
  177. /*
  178. { CODEC_ID_VP4, MKTAG('V', 'P', '4', ' ') },
  179. { CODEC_ID_VP4, MKTAG('V', 'P', '4', '0') },
  180. */
  181. { CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, /* cf sample xvid decoder from nsv_codec_sdk.zip */
  182. { CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', '3') },
  183. { 0, 0 },
  184. };
  185. static const AVCodecTag nsv_codec_audio_tags[] = {
  186. { CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
  187. { CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') },
  188. { CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') }, /* _CUTTED__MUXED_2 Heads - Out Of The City.nsv */
  189. { CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') },
  190. { 0, 0 },
  191. };
  192. //static int nsv_load_index(AVFormatContext *s);
  193. static int nsv_read_chunk(AVFormatContext *s, int fill_header);
  194. #ifdef DEBUG
  195. static void print_tag(const char *str, unsigned int tag, int size)
  196. {
  197. printf("%s: tag=%c%c%c%c\n",
  198. str, tag & 0xff,
  199. (tag >> 8) & 0xff,
  200. (tag >> 16) & 0xff,
  201. (tag >> 24) & 0xff);
  202. }
  203. #endif
  204. /* try to find something we recognize, and set the state accordingly */
  205. static int nsv_resync(AVFormatContext *s)
  206. {
  207. NSVContext *nsv = s->priv_data;
  208. ByteIOContext *pb = s->pb;
  209. uint32_t v = 0;
  210. int i;
  211. PRINT(("%s(), offset = %"PRId64", state = %d\n", __FUNCTION__, url_ftell(pb), nsv->state));
  212. //nsv->state = NSV_UNSYNC;
  213. for (i = 0; i < NSV_MAX_RESYNC; i++) {
  214. if (url_feof(pb)) {
  215. PRINT(("NSV EOF\n"));
  216. nsv->state = NSV_UNSYNC;
  217. return -1;
  218. }
  219. v <<= 8;
  220. v |= get_byte(pb);
  221. /*
  222. if (i < 8) {
  223. PRINT(("NSV resync: [%d] = %02x\n", i, v & 0x0FF));
  224. }
  225. */
  226. if ((v & 0x0000ffff) == 0xefbe) { /* BEEF */
  227. PRINT(("NSV resynced on BEEF after %d bytes\n", i+1));
  228. nsv->state = NSV_FOUND_BEEF;
  229. return 0;
  230. }
  231. /* we read as big endian, thus the MK*BE* */
  232. if (v == TB_NSVF) { /* NSVf */
  233. PRINT(("NSV resynced on NSVf after %d bytes\n", i+1));
  234. nsv->state = NSV_FOUND_NSVF;
  235. return 0;
  236. }
  237. if (v == MKBETAG('N', 'S', 'V', 's')) { /* NSVs */
  238. PRINT(("NSV resynced on NSVs after %d bytes\n", i+1));
  239. nsv->state = NSV_FOUND_NSVS;
  240. return 0;
  241. }
  242. }
  243. PRINT(("NSV sync lost\n"));
  244. return -1;
  245. }
  246. static int nsv_parse_NSVf_header(AVFormatContext *s, AVFormatParameters *ap)
  247. {
  248. NSVContext *nsv = s->priv_data;
  249. ByteIOContext *pb = s->pb;
  250. unsigned int file_size, size;
  251. int64_t duration;
  252. int strings_size;
  253. int table_entries;
  254. int table_entries_used;
  255. PRINT(("%s()\n", __FUNCTION__));
  256. nsv->state = NSV_UNSYNC; /* in case we fail */
  257. size = get_le32(pb);
  258. if (size < 28)
  259. return -1;
  260. nsv->NSVf_end = size;
  261. //s->file_size = (uint32_t)get_le32(pb);
  262. file_size = (uint32_t)get_le32(pb);
  263. PRINT(("NSV NSVf chunk_size %u\n", size));
  264. PRINT(("NSV NSVf file_size %u\n", file_size));
  265. nsv->duration = duration = get_le32(pb); /* in ms */
  266. PRINT(("NSV NSVf duration %"PRId64" ms\n", duration));
  267. // XXX: store it in AVStreams
  268. strings_size = get_le32(pb);
  269. table_entries = get_le32(pb);
  270. table_entries_used = get_le32(pb);
  271. PRINT(("NSV NSVf info-strings size: %d, table entries: %d, bis %d\n",
  272. strings_size, table_entries, table_entries_used));
  273. if (url_feof(pb))
  274. return -1;
  275. PRINT(("NSV got header; filepos %"PRId64"\n", url_ftell(pb)));
  276. if (strings_size > 0) {
  277. char *strings; /* last byte will be '\0' to play safe with str*() */
  278. char *p, *endp;
  279. char *token, *value;
  280. char quote;
  281. p = strings = av_mallocz((size_t)strings_size + 1);
  282. if (!p)
  283. return AVERROR(ENOMEM);
  284. endp = strings + strings_size;
  285. get_buffer(pb, strings, strings_size);
  286. while (p < endp) {
  287. while (*p == ' ')
  288. p++; /* strip out spaces */
  289. if (p >= endp-2)
  290. break;
  291. token = p;
  292. p = strchr(p, '=');
  293. if (!p || p >= endp-2)
  294. break;
  295. *p++ = '\0';
  296. quote = *p++;
  297. value = p;
  298. p = strchr(p, quote);
  299. if (!p || p >= endp)
  300. break;
  301. *p++ = '\0';
  302. PRINT(("NSV NSVf INFO: %s='%s'\n", token, value));
  303. av_metadata_set(&s->metadata, token, value);
  304. }
  305. av_free(strings);
  306. }
  307. if (url_feof(pb))
  308. return -1;
  309. PRINT(("NSV got infos; filepos %"PRId64"\n", url_ftell(pb)));
  310. if (table_entries_used > 0) {
  311. nsv->index_entries = table_entries_used;
  312. if((unsigned)table_entries >= UINT_MAX / sizeof(uint32_t))
  313. return -1;
  314. nsv->nsvf_index_data = av_malloc(table_entries * sizeof(uint32_t));
  315. if (!nsv->nsvf_index_data)
  316. return AVERROR(ENOMEM);
  317. #warning "FIXME: Byteswap buffer as needed"
  318. get_buffer(pb, (unsigned char *)nsv->nsvf_index_data, table_entries * sizeof(uint32_t));
  319. }
  320. PRINT(("NSV got index; filepos %"PRId64"\n", url_ftell(pb)));
  321. #ifdef DEBUG_DUMP_INDEX
  322. #define V(v) ((v<0x20 || v > 127)?'.':v)
  323. /* dump index */
  324. PRINT(("NSV %d INDEX ENTRIES:\n", table_entries));
  325. PRINT(("NSV [dataoffset][fileoffset]\n", table_entries));
  326. for (i = 0; i < table_entries; i++) {
  327. unsigned char b[8];
  328. url_fseek(pb, size + nsv->nsvf_index_data[i], SEEK_SET);
  329. get_buffer(pb, b, 8);
  330. PRINT(("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->nsvf_index_data[i], size + nsv->nsvf_index_data[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. //url_fseek(pb, size, SEEK_SET); /* go back to end of header */
  337. #undef V
  338. #endif
  339. url_fseek(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. ByteIOContext *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. PRINT(("%s()\n", __FUNCTION__));
  356. vtag = get_le32(pb);
  357. atag = get_le32(pb);
  358. vwidth = get_le16(pb);
  359. vheight = get_le16(pb);
  360. i = get_byte(pb);
  361. PRINT(("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 = get_le16(pb);
  377. nsv->framerate = framerate;
  378. #ifdef DEBUG
  379. print_tag("NSV NSVs vtag", vtag, 0);
  380. print_tag("NSV NSVs atag", atag, 0);
  381. PRINT(("NSV NSVs vsize %dx%d\n", vwidth, vheight));
  382. #endif
  383. /* XXX change to ap != NULL ? */
  384. if (s->nb_streams == 0) { /* streams not yet published, let's do that */
  385. nsv->vtag = vtag;
  386. nsv->atag = atag;
  387. nsv->vwidth = vwidth;
  388. nsv->vheight = vwidth;
  389. if (vtag != T_NONE) {
  390. st = av_new_stream(s, NSV_ST_VIDEO);
  391. if (!st)
  392. goto fail;
  393. nst = av_mallocz(sizeof(NSVStream));
  394. if (!nst)
  395. goto fail;
  396. st->priv_data = nst;
  397. st->codec->codec_type = CODEC_TYPE_VIDEO;
  398. st->codec->codec_tag = vtag;
  399. st->codec->codec_id = codec_get_id(nsv_codec_video_tags, vtag);
  400. st->codec->width = vwidth;
  401. st->codec->height = vheight;
  402. st->codec->bits_per_coded_sample = 24; /* depth XXX */
  403. av_set_pts_info(st, 64, framerate.den, framerate.num);
  404. st->start_time = 0;
  405. st->duration = av_rescale(nsv->duration, framerate.num, 1000*framerate.den);
  406. }
  407. if (atag != T_NONE) {
  408. #ifndef DISABLE_AUDIO
  409. st = av_new_stream(s, NSV_ST_AUDIO);
  410. if (!st)
  411. goto fail;
  412. nst = av_mallocz(sizeof(NSVStream));
  413. if (!nst)
  414. goto fail;
  415. st->priv_data = nst;
  416. st->codec->codec_type = CODEC_TYPE_AUDIO;
  417. st->codec->codec_tag = atag;
  418. st->codec->codec_id = codec_get_id(nsv_codec_audio_tags, atag);
  419. st->need_parsing = AVSTREAM_PARSE_FULL; /* for PCM we will read a chunk later and put correct info */
  420. /* set timebase to common denominator of ms and framerate */
  421. av_set_pts_info(st, 64, 1, framerate.num*1000);
  422. st->start_time = 0;
  423. st->duration = (int64_t)nsv->duration * framerate.num;
  424. #endif
  425. }
  426. #ifdef CHECK_SUBSEQUENT_NSVS
  427. } else {
  428. if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
  429. PRINT(("NSV NSVs header values differ from the first one!!!\n"));
  430. //return -1;
  431. }
  432. #endif /* CHECK_SUBSEQUENT_NSVS */
  433. }
  434. nsv->state = NSV_HAS_READ_NSVS;
  435. return 0;
  436. fail:
  437. /* XXX */
  438. nsv->state = NSV_UNSYNC;
  439. return -1;
  440. }
  441. static int nsv_read_header(AVFormatContext *s, AVFormatParameters *ap)
  442. {
  443. NSVContext *nsv = s->priv_data;
  444. int i, err;
  445. PRINT(("%s()\n", __FUNCTION__));
  446. PRINT(("filename '%s'\n", s->filename));
  447. nsv->state = NSV_UNSYNC;
  448. nsv->ahead[0].data = nsv->ahead[1].data = NULL;
  449. for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
  450. if (nsv_resync(s) < 0)
  451. return -1;
  452. if (nsv->state == NSV_FOUND_NSVF) {
  453. err = nsv_parse_NSVf_header(s, ap);
  454. if (err < 0)
  455. return err;
  456. }
  457. /* we need the first NSVs also... */
  458. if (nsv->state == NSV_FOUND_NSVS) {
  459. err = nsv_parse_NSVs_header(s, ap);
  460. if (err < 0)
  461. return err;
  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. PRINT(("parsed header\n"));
  470. return 0;
  471. }
  472. static int nsv_read_chunk(AVFormatContext *s, int fill_header)
  473. {
  474. NSVContext *nsv = s->priv_data;
  475. ByteIOContext *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 auxtag;
  485. PRINT(("%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 = get_byte(pb);
  502. vsize = get_le16(pb);
  503. asize = get_le16(pb);
  504. vsize = (vsize << 4) | (auxcount >> 4);
  505. auxcount &= 0x0f;
  506. PRINT(("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 = get_le16(pb);
  510. auxtag = get_le32(pb);
  511. PRINT(("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. url_fskip(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->nb_streams > 0)
  528. st[s->streams[0]->id] = s->streams[0];
  529. if (s->nb_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 ? PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  538. /*
  539. for (i = 0; i < MIN(8, vsize); i++)
  540. PRINT(("NSV video: [%d] = %02x\n", i, pkt->data[i]));
  541. */
  542. }
  543. if(st[NSV_ST_VIDEO])
  544. ((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset++;
  545. if (asize && st[NSV_ST_AUDIO]) {
  546. nst = st[NSV_ST_AUDIO]->priv_data;
  547. pkt = &nsv->ahead[NSV_ST_AUDIO];
  548. /* read raw audio specific header on the first audio chunk... */
  549. /* on ALL audio chunks ?? seems so! */
  550. if (asize && st[NSV_ST_AUDIO]->codec->codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
  551. uint8_t bps;
  552. uint8_t channels;
  553. uint16_t samplerate;
  554. bps = get_byte(pb);
  555. channels = get_byte(pb);
  556. samplerate = get_le16(pb);
  557. asize-=4;
  558. PRINT(("NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate));
  559. if (fill_header) {
  560. st[NSV_ST_AUDIO]->need_parsing = AVSTREAM_PARSE_NONE; /* we know everything */
  561. if (bps != 16) {
  562. PRINT(("NSV AUDIO bit/sample != 16 (%d)!!!\n", bps));
  563. }
  564. bps /= channels; // ???
  565. if (bps == 8)
  566. st[NSV_ST_AUDIO]->codec->codec_id = CODEC_ID_PCM_U8;
  567. samplerate /= 4;/* UGH ??? XXX */
  568. channels = 1;
  569. st[NSV_ST_AUDIO]->codec->channels = channels;
  570. st[NSV_ST_AUDIO]->codec->sample_rate = samplerate;
  571. PRINT(("NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate));
  572. }
  573. }
  574. av_get_packet(pb, pkt, asize);
  575. pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
  576. pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  577. if( nsv->state == NSV_HAS_READ_NSVS && st[NSV_ST_VIDEO] ) {
  578. /* on a nsvs frame we have new information on a/v sync */
  579. pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
  580. pkt->dts *= (int64_t)1000 * nsv->framerate.den;
  581. pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
  582. PRINT(("NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts));
  583. }
  584. nst->frame_offset++;
  585. }
  586. nsv->state = NSV_UNSYNC;
  587. return 0;
  588. }
  589. static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
  590. {
  591. NSVContext *nsv = s->priv_data;
  592. int i, err = 0;
  593. PRINT(("%s()\n", __FUNCTION__));
  594. /* in case we don't already have something to eat ... */
  595. if (nsv->ahead[0].data == NULL && nsv->ahead[1].data == NULL)
  596. err = nsv_read_chunk(s, 0);
  597. if (err < 0)
  598. return err;
  599. /* now pick one of the plates */
  600. for (i = 0; i < 2; i++) {
  601. if (nsv->ahead[i].data) {
  602. PRINT(("%s: using cached packet[%d]\n", __FUNCTION__, i));
  603. /* avoid the cost of new_packet + memcpy(->data) */
  604. memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket));
  605. nsv->ahead[i].data = NULL; /* we ate that one */
  606. return pkt->size;
  607. }
  608. }
  609. /* this restaurant is not approvisionned :^] */
  610. return -1;
  611. }
  612. static int nsv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
  613. {
  614. #if 0
  615. NSVContext *avi = s->priv_data;
  616. AVStream *st;
  617. NSVStream *ast;
  618. int frame_number, i;
  619. int64_t pos;
  620. #endif
  621. return -1;
  622. }
  623. static int nsv_read_close(AVFormatContext *s)
  624. {
  625. /* int i; */
  626. NSVContext *nsv = s->priv_data;
  627. if (nsv->index_entries)
  628. av_free(nsv->nsvf_index_data);
  629. #if 0
  630. for(i=0;i<s->nb_streams;i++) {
  631. AVStream *st = s->streams[i];
  632. NSVStream *ast = st->priv_data;
  633. if(ast){
  634. av_free(ast->index_entries);
  635. av_free(ast);
  636. }
  637. av_free(st->codec->palctrl);
  638. }
  639. #endif
  640. return 0;
  641. }
  642. static int nsv_probe(AVProbeData *p)
  643. {
  644. int i;
  645. // PRINT(("nsv_probe(), buf_size %d\n", p->buf_size));
  646. /* check file header */
  647. /* streamed files might not have any header */
  648. if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
  649. p->buf[2] == 'V' && (p->buf[3] == 'f' || p->buf[3] == 's'))
  650. return AVPROBE_SCORE_MAX;
  651. /* XXX: do streamed files always start at chunk boundary ?? */
  652. /* or do we need to search NSVs in the byte stream ? */
  653. /* seems the servers don't bother starting clean chunks... */
  654. /* sometimes even the first header is at 9KB or something :^) */
  655. for (i = 1; i < p->buf_size - 3; i++) {
  656. if (p->buf[i+0] == 'N' && p->buf[i+1] == 'S' &&
  657. p->buf[i+2] == 'V' && p->buf[i+3] == 's')
  658. return AVPROBE_SCORE_MAX-20;
  659. }
  660. /* so we'll have more luck on extension... */
  661. if (match_ext(p->filename, "nsv"))
  662. return AVPROBE_SCORE_MAX/2;
  663. /* FIXME: add mime-type check */
  664. return 0;
  665. }
  666. AVInputFormat nsv_demuxer = {
  667. "nsv",
  668. NULL_IF_CONFIG_SMALL("Nullsoft Streaming Video"),
  669. sizeof(NSVContext),
  670. nsv_probe,
  671. nsv_read_header,
  672. nsv_read_packet,
  673. nsv_read_close,
  674. nsv_read_seek,
  675. };