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