nsvdec.c 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762
  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 "libavutil/mem.h"
  26. #include "avformat.h"
  27. #include "demux.h"
  28. #include "internal.h"
  29. #include "libavutil/dict.h"
  30. #include "libavutil/intreadwrite.h"
  31. /* max bytes to crawl for trying to resync
  32. * stupid streaming servers don't start at chunk boundaries...
  33. */
  34. #define NSV_MAX_RESYNC (500*1024)
  35. #define NSV_MAX_RESYNC_TRIES 300
  36. /*
  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 viewing 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 nsvtrailer (which doesn't have an NSVf header), it reports 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, slice 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; /* av_assert0(vwidth%16==0) */
  95. uint16_t vheight; /* av_assert0(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 NSVContext {
  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. int nsvf;
  164. } NSVContext;
  165. static const AVCodecTag nsv_codec_video_tags[] = {
  166. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', ' ') },
  167. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', '0') },
  168. { AV_CODEC_ID_VP3, MKTAG('V', 'P', '3', '1') },
  169. { AV_CODEC_ID_VP5, MKTAG('V', 'P', '5', ' ') },
  170. { AV_CODEC_ID_VP5, MKTAG('V', 'P', '5', '0') },
  171. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', ' ') },
  172. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '0') },
  173. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '1') },
  174. { AV_CODEC_ID_VP6, MKTAG('V', 'P', '6', '2') },
  175. { AV_CODEC_ID_VP8, MKTAG('V', 'P', '8', '0') },
  176. /*
  177. { AV_CODEC_ID_VP4, MKTAG('V', 'P', '4', ' ') },
  178. { AV_CODEC_ID_VP4, MKTAG('V', 'P', '4', '0') },
  179. */
  180. { AV_CODEC_ID_MPEG4, MKTAG('X', 'V', 'I', 'D') }, /* cf sample xvid decoder from nsv_codec_sdk.zip */
  181. { AV_CODEC_ID_H264, MKTAG('H', '2', '6', '4') },
  182. { AV_CODEC_ID_RAWVIDEO, MKTAG('R', 'G', 'B', '3') },
  183. { AV_CODEC_ID_NONE, 0 },
  184. };
  185. static const AVCodecTag nsv_codec_audio_tags[] = {
  186. { AV_CODEC_ID_MP3, MKTAG('M', 'P', '3', ' ') },
  187. { AV_CODEC_ID_AAC, MKTAG('A', 'A', 'C', ' ') },
  188. { AV_CODEC_ID_AAC, MKTAG('A', 'A', 'C', 'P') },
  189. { AV_CODEC_ID_AAC, MKTAG('A', 'A', 'V', ' ') },
  190. { AV_CODEC_ID_AAC, MKTAG('V', 'L', 'B', ' ') },
  191. { AV_CODEC_ID_SPEEX, MKTAG('S', 'P', 'X', ' ') },
  192. { AV_CODEC_ID_PCM_U16LE, MKTAG('P', 'C', 'M', ' ') },
  193. { AV_CODEC_ID_NONE, 0 },
  194. };
  195. //static int nsv_load_index(AVFormatContext *s);
  196. static int nsv_read_chunk(AVFormatContext *s, int fill_header);
  197. /* try to find something we recognize, and set the state accordingly */
  198. static int nsv_resync(AVFormatContext *s)
  199. {
  200. NSVContext *nsv = s->priv_data;
  201. AVIOContext *pb = s->pb;
  202. uint32_t v = 0;
  203. int i;
  204. for (i = 0; i < NSV_MAX_RESYNC; i++) {
  205. if (avio_feof(pb)) {
  206. av_log(s, AV_LOG_TRACE, "NSV EOF\n");
  207. nsv->state = NSV_UNSYNC;
  208. return -1;
  209. }
  210. v <<= 8;
  211. v |= avio_r8(pb);
  212. if (i < 8) {
  213. av_log(s, AV_LOG_TRACE, "NSV resync: [%d] = %02"PRIx32"\n", i, v & 0x0FF);
  214. }
  215. if ((v & 0x0000ffff) == 0xefbe) { /* BEEF */
  216. av_log(s, AV_LOG_TRACE, "NSV resynced on BEEF after %d bytes\n", i+1);
  217. nsv->state = NSV_FOUND_BEEF;
  218. return 0;
  219. }
  220. /* we read as big-endian, thus the MK*BE* */
  221. if (v == TB_NSVF) { /* NSVf */
  222. av_log(s, AV_LOG_TRACE, "NSV resynced on NSVf after %d bytes\n", i+1);
  223. nsv->state = NSV_FOUND_NSVF;
  224. return 0;
  225. }
  226. if (v == MKBETAG('N', 'S', 'V', 's')) { /* NSVs */
  227. av_log(s, AV_LOG_TRACE, "NSV resynced on NSVs after %d bytes\n", i+1);
  228. nsv->state = NSV_FOUND_NSVS;
  229. return 0;
  230. }
  231. }
  232. av_log(s, AV_LOG_TRACE, "NSV sync lost\n");
  233. return -1;
  234. }
  235. static int nsv_parse_NSVf_header(AVFormatContext *s)
  236. {
  237. NSVContext *nsv = s->priv_data;
  238. AVIOContext *pb = s->pb;
  239. av_unused unsigned int file_size;
  240. unsigned int size;
  241. int64_t duration;
  242. int strings_size;
  243. int table_entries;
  244. int table_entries_used;
  245. nsv->state = NSV_UNSYNC; /* in case we fail */
  246. if (nsv->nsvf) {
  247. av_log(s, AV_LOG_TRACE, "Multiple NSVf\n");
  248. return 0;
  249. }
  250. nsv->nsvf = 1;
  251. size = avio_rl32(pb);
  252. if (size < 28)
  253. return -1;
  254. nsv->NSVf_end = size;
  255. file_size = (uint32_t)avio_rl32(pb);
  256. av_log(s, AV_LOG_TRACE, "NSV NSVf chunk_size %u\n", size);
  257. av_log(s, AV_LOG_TRACE, "NSV NSVf file_size %u\n", file_size);
  258. nsv->duration = duration = avio_rl32(pb); /* in ms */
  259. av_log(s, AV_LOG_TRACE, "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_log(s, AV_LOG_TRACE, "NSV NSVf info-strings size: %d, table entries: %d, bis %d\n",
  265. strings_size, table_entries, table_entries_used);
  266. if (avio_feof(pb))
  267. return -1;
  268. av_log(s, AV_LOG_TRACE, "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((size_t)strings_size + 1);
  275. if (!p)
  276. return AVERROR(ENOMEM);
  277. endp = strings + strings_size;
  278. avio_read(pb, strings, strings_size);
  279. while (p < endp) {
  280. while (*p == ' ')
  281. p++; /* strip out spaces */
  282. if (p >= endp-2)
  283. break;
  284. token = p;
  285. p = strchr(p, '=');
  286. if (!p || p >= endp-2)
  287. break;
  288. *p++ = '\0';
  289. quote = *p++;
  290. value = p;
  291. p = strchr(p, quote);
  292. if (!p || p >= endp)
  293. break;
  294. *p++ = '\0';
  295. av_log(s, AV_LOG_TRACE, "NSV NSVf INFO: %s='%s'\n", token, value);
  296. av_dict_set(&s->metadata, token, value, 0);
  297. }
  298. av_free(strings);
  299. }
  300. if (avio_feof(pb))
  301. return -1;
  302. av_log(s, AV_LOG_TRACE, "NSV got infos; filepos %"PRId64"\n", avio_tell(pb));
  303. if (table_entries_used > 0) {
  304. int i;
  305. nsv->index_entries = table_entries_used;
  306. if((unsigned)table_entries_used >= UINT_MAX / sizeof(uint32_t))
  307. return -1;
  308. nsv->nsvs_file_offset = av_malloc_array((unsigned)table_entries_used, sizeof(uint32_t));
  309. if (!nsv->nsvs_file_offset)
  310. return AVERROR(ENOMEM);
  311. for(i=0;i<table_entries_used;i++) {
  312. if (avio_feof(pb))
  313. return AVERROR_INVALIDDATA;
  314. nsv->nsvs_file_offset[i] = avio_rl32(pb) + size;
  315. }
  316. if(table_entries > table_entries_used &&
  317. avio_rl32(pb) == MKTAG('T','O','C','2')) {
  318. nsv->nsvs_timestamps = av_malloc_array((unsigned)table_entries_used, sizeof(uint32_t));
  319. if (!nsv->nsvs_timestamps)
  320. return AVERROR(ENOMEM);
  321. for(i=0;i<table_entries_used;i++) {
  322. nsv->nsvs_timestamps[i] = avio_rl32(pb);
  323. }
  324. }
  325. }
  326. av_log(s, AV_LOG_TRACE, "NSV got index; filepos %"PRId64"\n", avio_tell(pb));
  327. avio_seek(pb, nsv->base_offset + size, SEEK_SET); /* required for dumbdriving-271.nsv (2 extra bytes) */
  328. if (avio_feof(pb))
  329. return -1;
  330. nsv->state = NSV_HAS_READ_NSVF;
  331. return 0;
  332. }
  333. static int nsv_parse_NSVs_header(AVFormatContext *s)
  334. {
  335. NSVContext *nsv = s->priv_data;
  336. AVIOContext *pb = s->pb;
  337. uint32_t vtag, atag;
  338. uint16_t vwidth, vheight;
  339. AVRational framerate;
  340. int i;
  341. AVStream *st;
  342. NSVStream *nst;
  343. vtag = avio_rl32(pb);
  344. atag = avio_rl32(pb);
  345. vwidth = avio_rl16(pb);
  346. vheight = avio_rl16(pb);
  347. i = avio_r8(pb);
  348. av_log(s, AV_LOG_TRACE, "NSV NSVs framerate code %2x\n", i);
  349. if(i&0x80) { /* odd way of giving native framerates from docs */
  350. int t=(i & 0x7F)>>2;
  351. if(t<16) framerate = (AVRational){1, t+1};
  352. else framerate = (AVRational){t-15, 1};
  353. if(i&1){
  354. framerate.num *= 1000;
  355. framerate.den *= 1001;
  356. }
  357. if((i&3)==3) framerate.num *= 24;
  358. else if((i&3)==2) framerate.num *= 25;
  359. else framerate.num *= 30;
  360. }
  361. else
  362. framerate= (AVRational){i, 1};
  363. nsv->avsync = avio_rl16(pb);
  364. nsv->framerate = framerate;
  365. av_log(s, AV_LOG_TRACE, "NSV NSVs vsize %dx%d\n", vwidth, vheight);
  366. /* XXX change to ap != NULL ? */
  367. if (s->nb_streams == 0) { /* streams not yet published, let's do that */
  368. nsv->vtag = vtag;
  369. nsv->atag = atag;
  370. nsv->vwidth = vwidth;
  371. nsv->vheight = vwidth;
  372. if (vtag != T_NONE) {
  373. int i;
  374. st = avformat_new_stream(s, NULL);
  375. if (!st)
  376. goto fail;
  377. st->id = NSV_ST_VIDEO;
  378. nst = av_mallocz(sizeof(NSVStream));
  379. if (!nst)
  380. goto fail;
  381. st->priv_data = nst;
  382. st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
  383. st->codecpar->codec_tag = vtag;
  384. st->codecpar->codec_id = ff_codec_get_id(nsv_codec_video_tags, vtag);
  385. st->codecpar->width = vwidth;
  386. st->codecpar->height = vheight;
  387. st->codecpar->bits_per_coded_sample = 24; /* depth XXX */
  388. avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
  389. st->start_time = 0;
  390. st->duration = av_rescale(nsv->duration, framerate.num, 1000*framerate.den);
  391. for(i=0;i<nsv->index_entries;i++) {
  392. if(nsv->nsvs_timestamps) {
  393. av_add_index_entry(st, nsv->nsvs_file_offset[i], nsv->nsvs_timestamps[i],
  394. 0, 0, AVINDEX_KEYFRAME);
  395. } else {
  396. int64_t ts = av_rescale(i*nsv->duration/nsv->index_entries, framerate.num, 1000*framerate.den);
  397. av_add_index_entry(st, nsv->nsvs_file_offset[i], ts, 0, 0, AVINDEX_KEYFRAME);
  398. }
  399. }
  400. }
  401. if (atag != T_NONE) {
  402. st = avformat_new_stream(s, NULL);
  403. if (!st)
  404. goto fail;
  405. st->id = NSV_ST_AUDIO;
  406. nst = av_mallocz(sizeof(NSVStream));
  407. if (!nst)
  408. goto fail;
  409. st->priv_data = nst;
  410. st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
  411. st->codecpar->codec_tag = atag;
  412. st->codecpar->codec_id = ff_codec_get_id(nsv_codec_audio_tags, atag);
  413. if (atag == MKTAG('A', 'A', 'V', ' ')) {
  414. static const uint8_t aav_pce[] = {
  415. 0x12, 0x00, 0x05, 0x08, 0x48, 0x00,
  416. 0x20, 0x00, 0xC6, 0x40, 0x04, 0x4C,
  417. 0x61, 0x76, 0x63, 0x56, 0xE5, 0x00,
  418. 0x00, 0x00,
  419. };
  420. int ret;
  421. if ((ret = ff_alloc_extradata(st->codecpar, sizeof(aav_pce))) < 0)
  422. return ret;
  423. st->codecpar->sample_rate = 44100;
  424. memcpy(st->codecpar->extradata, aav_pce, sizeof(aav_pce));
  425. }
  426. ffstream(st)->need_parsing = AVSTREAM_PARSE_FULL; /* for PCM we will read a chunk later and put correct info */
  427. /* set timebase to common denominator of ms and framerate */
  428. avpriv_set_pts_info(st, 64, 1, framerate.num*1000);
  429. st->start_time = 0;
  430. st->duration = (int64_t)nsv->duration * framerate.num;
  431. }
  432. } else {
  433. if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
  434. av_log(s, AV_LOG_TRACE, "NSV NSVs header values differ from the first one!!!\n");
  435. //return -1;
  436. }
  437. }
  438. nsv->state = NSV_HAS_READ_NSVS;
  439. return 0;
  440. fail:
  441. /* XXX */
  442. nsv->state = NSV_UNSYNC;
  443. return -1;
  444. }
  445. static int nsv_read_header(AVFormatContext *s)
  446. {
  447. NSVContext *nsv = s->priv_data;
  448. int i, err;
  449. nsv->state = NSV_UNSYNC;
  450. nsv->ahead[0].data = nsv->ahead[1].data = NULL;
  451. for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
  452. err = nsv_resync(s);
  453. if (err < 0)
  454. return err;
  455. if (nsv->state == NSV_FOUND_NSVF) {
  456. err = nsv_parse_NSVf_header(s);
  457. if (err < 0)
  458. return err;
  459. }
  460. /* we need the first NSVs also... */
  461. if (nsv->state == NSV_FOUND_NSVS) {
  462. err = nsv_parse_NSVs_header(s);
  463. if (err < 0)
  464. return err;
  465. break; /* we just want the first one */
  466. }
  467. }
  468. if (s->nb_streams < 1) /* no luck so far */
  469. return AVERROR_INVALIDDATA;
  470. /* now read the first chunk, so we can attempt to decode more info */
  471. err = nsv_read_chunk(s, 1);
  472. av_log(s, AV_LOG_TRACE, "parsed header\n");
  473. return err;
  474. }
  475. static int nsv_read_chunk(AVFormatContext *s, int fill_header)
  476. {
  477. NSVContext *nsv = s->priv_data;
  478. AVIOContext *pb = s->pb;
  479. AVStream *st[2] = {NULL, NULL};
  480. NSVStream *nst;
  481. AVPacket *pkt;
  482. int i, err = 0;
  483. uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
  484. uint32_t vsize;
  485. uint16_t asize;
  486. uint16_t auxsize;
  487. int ret;
  488. if (nsv->ahead[0].data || nsv->ahead[1].data)
  489. return 0; //-1; /* hey! eat what you've in your plate first! */
  490. null_chunk_retry:
  491. if (avio_feof(pb))
  492. return -1;
  493. for (i = 0; i < NSV_MAX_RESYNC_TRIES && nsv->state < NSV_FOUND_NSVS && !err; i++)
  494. err = nsv_resync(s);
  495. if (err < 0)
  496. return err;
  497. if (nsv->state == NSV_FOUND_NSVS)
  498. err = nsv_parse_NSVs_header(s);
  499. if (err < 0)
  500. return err;
  501. if (nsv->state != NSV_HAS_READ_NSVS && nsv->state != NSV_FOUND_BEEF)
  502. return -1;
  503. auxcount = avio_r8(pb);
  504. vsize = avio_rl16(pb);
  505. asize = avio_rl16(pb);
  506. vsize = (vsize << 4) | (auxcount >> 4);
  507. auxcount &= 0x0f;
  508. av_log(s, AV_LOG_TRACE, "NSV CHUNK %d aux, %"PRIu32" bytes video, %d bytes audio\n", auxcount, vsize, asize);
  509. /* skip aux stuff */
  510. for (i = 0; i < auxcount; i++) {
  511. av_unused uint32_t auxtag;
  512. auxsize = avio_rl16(pb);
  513. auxtag = avio_rl32(pb);
  514. avio_skip(pb, auxsize);
  515. vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming brain-dead */
  516. }
  517. if (avio_feof(pb))
  518. return -1;
  519. if (!vsize && !asize) {
  520. nsv->state = NSV_UNSYNC;
  521. goto null_chunk_retry;
  522. }
  523. /* map back streams to v,a */
  524. if (s->nb_streams > 0)
  525. st[s->streams[0]->id] = s->streams[0];
  526. if (s->nb_streams > 1)
  527. st[s->streams[1]->id] = s->streams[1];
  528. if (vsize && st[NSV_ST_VIDEO]) {
  529. nst = st[NSV_ST_VIDEO]->priv_data;
  530. pkt = &nsv->ahead[NSV_ST_VIDEO];
  531. if ((ret = av_get_packet(pb, pkt, vsize)) < 0)
  532. return ret;
  533. pkt->stream_index = st[NSV_ST_VIDEO]->index;//NSV_ST_VIDEO;
  534. pkt->dts = nst->frame_offset;
  535. pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  536. for (i = 0; i < FFMIN(8, vsize); i++)
  537. av_log(s, AV_LOG_TRACE, "NSV video: [%d] = %02x\n", i, pkt->data[i]);
  538. }
  539. if(st[NSV_ST_VIDEO])
  540. ((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset++;
  541. if (asize && st[NSV_ST_AUDIO]) {
  542. nst = st[NSV_ST_AUDIO]->priv_data;
  543. pkt = &nsv->ahead[NSV_ST_AUDIO];
  544. /* read raw audio specific header on the first audio chunk... */
  545. /* on ALL audio chunks ?? seems so! */
  546. if (asize >= 4 && st[NSV_ST_AUDIO]->codecpar->codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
  547. uint8_t bps;
  548. uint8_t channels;
  549. uint16_t samplerate;
  550. bps = avio_r8(pb);
  551. channels = avio_r8(pb);
  552. samplerate = avio_rl16(pb);
  553. if (!channels || !samplerate)
  554. return AVERROR_INVALIDDATA;
  555. asize-=4;
  556. av_log(s, AV_LOG_TRACE, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
  557. if (fill_header) {
  558. ffstream(st[NSV_ST_AUDIO])->need_parsing = AVSTREAM_PARSE_NONE; /* we know everything */
  559. if (bps != 16) {
  560. av_log(s, AV_LOG_TRACE, "NSV AUDIO bit/sample != 16 (%d)!!!\n", bps);
  561. }
  562. bps /= channels; // ???
  563. if (bps == 8)
  564. st[NSV_ST_AUDIO]->codecpar->codec_id = AV_CODEC_ID_PCM_U8;
  565. samplerate /= 4;/* UGH ??? XXX */
  566. channels = 1;
  567. st[NSV_ST_AUDIO]->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO;
  568. st[NSV_ST_AUDIO]->codecpar->sample_rate = samplerate;
  569. av_log(s, AV_LOG_TRACE, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
  570. }
  571. }
  572. if ((ret = av_get_packet(pb, pkt, asize)) < 0)
  573. return ret;
  574. pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
  575. pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
  576. if( nsv->state == NSV_HAS_READ_NSVS && st[NSV_ST_VIDEO] ) {
  577. /* on a nsvs frame we have new information on a/v sync */
  578. pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
  579. pkt->dts *= (int64_t)1000 * nsv->framerate.den;
  580. pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
  581. av_log(s, AV_LOG_TRACE, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
  582. }
  583. nst->frame_offset++;
  584. }
  585. nsv->state = NSV_UNSYNC;
  586. return 0;
  587. }
  588. static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
  589. {
  590. NSVContext *nsv = s->priv_data;
  591. int i, err = 0;
  592. /* in case we don't already have something to eat ... */
  593. if (!nsv->ahead[0].data && !nsv->ahead[1].data)
  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_packet_move_ref(pkt, &nsv->ahead[i]);
  601. return 0;
  602. }
  603. }
  604. /* this restaurant is not provisioned :^] */
  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. FFStream *const sti = ffstream(st);
  612. NSVStream *nst = st->priv_data;
  613. int index;
  614. index = av_index_search_timestamp(st, timestamp, flags);
  615. if(index < 0)
  616. return -1;
  617. if (avio_seek(s->pb, sti->index_entries[index].pos, SEEK_SET) < 0)
  618. return -1;
  619. nst->frame_offset = sti->index_entries[index].timestamp;
  620. nsv->state = NSV_UNSYNC;
  621. return 0;
  622. }
  623. static int nsv_read_close(AVFormatContext *s)
  624. {
  625. NSVContext *nsv = s->priv_data;
  626. av_freep(&nsv->nsvs_file_offset);
  627. av_freep(&nsv->nsvs_timestamps);
  628. if (nsv->ahead[0].data)
  629. av_packet_unref(&nsv->ahead[0]);
  630. if (nsv->ahead[1].data)
  631. av_packet_unref(&nsv->ahead[1]);
  632. return 0;
  633. }
  634. static int nsv_probe(const AVProbeData *p)
  635. {
  636. int i, score = 0;
  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. const FFInputFormat ff_nsv_demuxer = {
  664. .p.name = "nsv",
  665. .p.long_name = NULL_IF_CONFIG_SMALL("Nullsoft Streaming Video"),
  666. .priv_data_size = sizeof(NSVContext),
  667. .flags_internal = FF_INFMT_FLAG_INIT_CLEANUP,
  668. .read_probe = nsv_probe,
  669. .read_header = nsv_read_header,
  670. .read_packet = nsv_read_packet,
  671. .read_close = nsv_read_close,
  672. .read_seek = nsv_read_seek,
  673. };