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