]> 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)
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         if (!p)
318             return AVERROR(ENOMEM);
319         endp = strings + strings_size;
320         avio_read(pb, strings, strings_size);
321         while (p < endp) {
322             while (*p == ' ')
323                 p++; /* strip out spaces */
324             if (p >= endp-2)
325                 break;
326             token = p;
327             p = strchr(p, '=');
328             if (!p || p >= endp-2)
329                 break;
330             *p++ = '\0';
331             quote = *p++;
332             value = p;
333             p = strchr(p, quote);
334             if (!p || p >= endp)
335                 break;
336             *p++ = '\0';
337             av_dlog(s, "NSV NSVf INFO: %s='%s'\n", token, value);
338             av_dict_set(&s->metadata, token, value, 0);
339         }
340         av_free(strings);
341     }
342     if (url_feof(pb))
343         return -1;
344
345     av_dlog(s, "NSV got infos; filepos %"PRId64"\n", avio_tell(pb));
346
347     if (table_entries_used > 0) {
348         int i;
349         nsv->index_entries = table_entries_used;
350         if((unsigned)table_entries_used >= UINT_MAX / sizeof(uint32_t))
351             return -1;
352         nsv->nsvs_file_offset = av_malloc((unsigned)table_entries_used * sizeof(uint32_t));
353
354         for(i=0;i<table_entries_used;i++)
355             nsv->nsvs_file_offset[i] = avio_rl32(pb) + size;
356
357         if(table_entries > table_entries_used &&
358            avio_rl32(pb) == MKTAG('T','O','C','2')) {
359             nsv->nsvs_timestamps = av_malloc((unsigned)table_entries_used*sizeof(uint32_t));
360             for(i=0;i<table_entries_used;i++) {
361                 nsv->nsvs_timestamps[i] = avio_rl32(pb);
362             }
363         }
364     }
365
366     av_dlog(s, "NSV got index; filepos %"PRId64"\n", avio_tell(pb));
367
368 #ifdef DEBUG_DUMP_INDEX
369 #define V(v) ((v<0x20 || v > 127)?'.':v)
370     /* dump index */
371     av_dlog(s, "NSV %d INDEX ENTRIES:\n", table_entries);
372     av_dlog(s, "NSV [dataoffset][fileoffset]\n", table_entries);
373     for (i = 0; i < table_entries; i++) {
374         unsigned char b[8];
375         avio_seek(pb, size + nsv->nsvs_file_offset[i], SEEK_SET);
376         avio_read(pb, b, 8);
377         av_dlog(s, "NSV [0x%08lx][0x%08lx]: %02x %02x %02x %02x %02x %02x %02x %02x"
378            "%c%c%c%c%c%c%c%c\n",
379            nsv->nsvs_file_offset[i], size + nsv->nsvs_file_offset[i],
380            b[0], b[1], b[2], b[3], b[4], b[5], b[6], b[7],
381            V(b[0]), V(b[1]), V(b[2]), V(b[3]), V(b[4]), V(b[5]), V(b[6]), V(b[7]) );
382     }
383     //avio_seek(pb, size, SEEK_SET); /* go back to end of header */
384 #undef V
385 #endif
386
387     avio_seek(pb, nsv->base_offset + size, SEEK_SET); /* required for dumbdriving-271.nsv (2 extra bytes) */
388
389     if (url_feof(pb))
390         return -1;
391     nsv->state = NSV_HAS_READ_NSVF;
392     return 0;
393 }
394
395 static int nsv_parse_NSVs_header(AVFormatContext *s)
396 {
397     NSVContext *nsv = s->priv_data;
398     AVIOContext *pb = s->pb;
399     uint32_t vtag, atag;
400     uint16_t vwidth, vheight;
401     AVRational framerate;
402     int i;
403     AVStream *st;
404     NSVStream *nst;
405     av_dlog(s, "%s()\n", __FUNCTION__);
406
407     vtag = avio_rl32(pb);
408     atag = avio_rl32(pb);
409     vwidth = avio_rl16(pb);
410     vheight = avio_rl16(pb);
411     i = avio_r8(pb);
412
413     av_dlog(s, "NSV NSVs framerate code %2x\n", i);
414     if(i&0x80) { /* odd way of giving native framerates from docs */
415         int t=(i & 0x7F)>>2;
416         if(t<16) framerate = (AVRational){1, t+1};
417         else     framerate = (AVRational){t-15, 1};
418
419         if(i&1){
420             framerate.num *= 1000;
421             framerate.den *= 1001;
422         }
423
424         if((i&3)==3)      framerate.num *= 24;
425         else if((i&3)==2) framerate.num *= 25;
426         else              framerate.num *= 30;
427     }
428     else
429         framerate= (AVRational){i, 1};
430
431     nsv->avsync = avio_rl16(pb);
432     nsv->framerate = framerate;
433
434     print_tag("NSV NSVs vtag", vtag, 0);
435     print_tag("NSV NSVs atag", atag, 0);
436     av_dlog(s, "NSV NSVs vsize %dx%d\n", vwidth, vheight);
437
438     /* XXX change to ap != NULL ? */
439     if (s->nb_streams == 0) { /* streams not yet published, let's do that */
440         nsv->vtag = vtag;
441         nsv->atag = atag;
442         nsv->vwidth = vwidth;
443         nsv->vheight = vwidth;
444         if (vtag != T_NONE) {
445             int i;
446             st = avformat_new_stream(s, NULL);
447             if (!st)
448                 goto fail;
449
450             st->id = NSV_ST_VIDEO;
451             nst = av_mallocz(sizeof(NSVStream));
452             if (!nst)
453                 goto fail;
454             st->priv_data = nst;
455             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
456             st->codec->codec_tag = vtag;
457             st->codec->codec_id = ff_codec_get_id(nsv_codec_video_tags, vtag);
458             st->codec->width = vwidth;
459             st->codec->height = vheight;
460             st->codec->bits_per_coded_sample = 24; /* depth XXX */
461
462             avpriv_set_pts_info(st, 64, framerate.den, framerate.num);
463             st->start_time = 0;
464             st->duration = av_rescale(nsv->duration, framerate.num, 1000*framerate.den);
465
466             for(i=0;i<nsv->index_entries;i++) {
467                 if(nsv->nsvs_timestamps) {
468                     av_add_index_entry(st, nsv->nsvs_file_offset[i], nsv->nsvs_timestamps[i],
469                                        0, 0, AVINDEX_KEYFRAME);
470                 } else {
471                     int64_t ts = av_rescale(i*nsv->duration/nsv->index_entries, framerate.num, 1000*framerate.den);
472                     av_add_index_entry(st, nsv->nsvs_file_offset[i], ts, 0, 0, AVINDEX_KEYFRAME);
473                 }
474             }
475         }
476         if (atag != T_NONE) {
477 #ifndef DISABLE_AUDIO
478             st = avformat_new_stream(s, NULL);
479             if (!st)
480                 goto fail;
481
482             st->id = NSV_ST_AUDIO;
483             nst = av_mallocz(sizeof(NSVStream));
484             if (!nst)
485                 goto fail;
486             st->priv_data = nst;
487             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
488             st->codec->codec_tag = atag;
489             st->codec->codec_id = ff_codec_get_id(nsv_codec_audio_tags, atag);
490
491             st->need_parsing = AVSTREAM_PARSE_FULL; /* for PCM we will read a chunk later and put correct info */
492
493             /* set timebase to common denominator of ms and framerate */
494             avpriv_set_pts_info(st, 64, 1, framerate.num*1000);
495             st->start_time = 0;
496             st->duration = (int64_t)nsv->duration * framerate.num;
497 #endif
498         }
499 #ifdef CHECK_SUBSEQUENT_NSVS
500     } else {
501         if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
502             av_dlog(s, "NSV NSVs header values differ from the first one!!!\n");
503             //return -1;
504         }
505 #endif /* CHECK_SUBSEQUENT_NSVS */
506     }
507
508     nsv->state = NSV_HAS_READ_NSVS;
509     return 0;
510 fail:
511     /* XXX */
512     nsv->state = NSV_UNSYNC;
513     return -1;
514 }
515
516 static int nsv_read_header(AVFormatContext *s)
517 {
518     NSVContext *nsv = s->priv_data;
519     int i, err;
520
521     av_dlog(s, "%s()\n", __FUNCTION__);
522     av_dlog(s, "filename '%s'\n", s->filename);
523
524     nsv->state = NSV_UNSYNC;
525     nsv->ahead[0].data = nsv->ahead[1].data = NULL;
526
527     for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
528         if (nsv_resync(s) < 0)
529             return -1;
530         if (nsv->state == NSV_FOUND_NSVF)
531             err = nsv_parse_NSVf_header(s);
532             /* we need the first NSVs also... */
533         if (nsv->state == NSV_FOUND_NSVS) {
534             err = nsv_parse_NSVs_header(s);
535             break; /* we just want the first one */
536         }
537     }
538     if (s->nb_streams < 1) /* no luck so far */
539         return -1;
540     /* now read the first chunk, so we can attempt to decode more info */
541     err = nsv_read_chunk(s, 1);
542
543     av_dlog(s, "parsed header\n");
544     return err;
545 }
546
547 static int nsv_read_chunk(AVFormatContext *s, int fill_header)
548 {
549     NSVContext *nsv = s->priv_data;
550     AVIOContext *pb = s->pb;
551     AVStream *st[2] = {NULL, NULL};
552     NSVStream *nst;
553     AVPacket *pkt;
554     int i, err = 0;
555     uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
556     uint32_t vsize;
557     uint16_t asize;
558     uint16_t auxsize;
559     uint32_t av_unused auxtag;
560
561     av_dlog(s, "%s(%d)\n", __FUNCTION__, fill_header);
562
563     if (nsv->ahead[0].data || nsv->ahead[1].data)
564         return 0; //-1; /* hey! eat what you've in your plate first! */
565
566 null_chunk_retry:
567     if (url_feof(pb))
568         return -1;
569
570     for (i = 0; i < NSV_MAX_RESYNC_TRIES && nsv->state < NSV_FOUND_NSVS && !err; i++)
571         err = nsv_resync(s);
572     if (err < 0)
573         return err;
574     if (nsv->state == NSV_FOUND_NSVS)
575         err = nsv_parse_NSVs_header(s);
576     if (err < 0)
577         return err;
578     if (nsv->state != NSV_HAS_READ_NSVS && nsv->state != NSV_FOUND_BEEF)
579         return -1;
580
581     auxcount = avio_r8(pb);
582     vsize = avio_rl16(pb);
583     asize = avio_rl16(pb);
584     vsize = (vsize << 4) | (auxcount >> 4);
585     auxcount &= 0x0f;
586     av_dlog(s, "NSV CHUNK %d aux, %u bytes video, %d bytes audio\n", auxcount, vsize, asize);
587     /* skip aux stuff */
588     for (i = 0; i < auxcount; i++) {
589         auxsize = avio_rl16(pb);
590         auxtag = avio_rl32(pb);
591         av_dlog(s, "NSV aux data: '%c%c%c%c', %d bytes\n",
592               (auxtag & 0x0ff),
593               ((auxtag >> 8) & 0x0ff),
594               ((auxtag >> 16) & 0x0ff),
595               ((auxtag >> 24) & 0x0ff),
596               auxsize);
597         avio_skip(pb, auxsize);
598         vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
599     }
600
601     if (url_feof(pb))
602         return -1;
603     if (!vsize && !asize) {
604         nsv->state = NSV_UNSYNC;
605         goto null_chunk_retry;
606     }
607
608     /* map back streams to v,a */
609     if (s->nb_streams > 0)
610         st[s->streams[0]->id] = s->streams[0];
611     if (s->nb_streams > 1)
612         st[s->streams[1]->id] = s->streams[1];
613
614     if (vsize && st[NSV_ST_VIDEO]) {
615         nst = st[NSV_ST_VIDEO]->priv_data;
616         pkt = &nsv->ahead[NSV_ST_VIDEO];
617         av_get_packet(pb, pkt, vsize);
618         pkt->stream_index = st[NSV_ST_VIDEO]->index;//NSV_ST_VIDEO;
619         pkt->dts = nst->frame_offset;
620         pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
621         for (i = 0; i < FFMIN(8, vsize); i++)
622             av_dlog(s, "NSV video: [%d] = %02x\n", i, pkt->data[i]);
623     }
624     if(st[NSV_ST_VIDEO])
625         ((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset++;
626
627     if (asize && st[NSV_ST_AUDIO]) {
628         nst = st[NSV_ST_AUDIO]->priv_data;
629         pkt = &nsv->ahead[NSV_ST_AUDIO];
630         /* read raw audio specific header on the first audio chunk... */
631         /* on ALL audio chunks ?? seems so! */
632         if (asize && st[NSV_ST_AUDIO]->codec->codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
633             uint8_t bps;
634             uint8_t channels;
635             uint16_t samplerate;
636             bps = avio_r8(pb);
637             channels = avio_r8(pb);
638             samplerate = avio_rl16(pb);
639             asize-=4;
640             av_dlog(s, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
641             if (fill_header) {
642                 st[NSV_ST_AUDIO]->need_parsing = AVSTREAM_PARSE_NONE; /* we know everything */
643                 if (bps != 16) {
644                     av_dlog(s, "NSV AUDIO bit/sample != 16 (%d)!!!\n", bps);
645                 }
646                 bps /= channels; // ???
647                 if (bps == 8)
648                     st[NSV_ST_AUDIO]->codec->codec_id = CODEC_ID_PCM_U8;
649                 samplerate /= 4;/* UGH ??? XXX */
650                 channels = 1;
651                 st[NSV_ST_AUDIO]->codec->channels = channels;
652                 st[NSV_ST_AUDIO]->codec->sample_rate = samplerate;
653                 av_dlog(s, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
654             }
655         }
656         av_get_packet(pb, pkt, asize);
657         pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
658         pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
659         if( nsv->state == NSV_HAS_READ_NSVS && st[NSV_ST_VIDEO] ) {
660             /* on a nsvs frame we have new information on a/v sync */
661             pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
662             pkt->dts *= (int64_t)1000        * nsv->framerate.den;
663             pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
664             av_dlog(s, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
665         }
666         nst->frame_offset++;
667     }
668
669     nsv->state = NSV_UNSYNC;
670     return 0;
671 }
672
673
674 static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
675 {
676     NSVContext *nsv = s->priv_data;
677     int i, err = 0;
678
679     av_dlog(s, "%s()\n", __FUNCTION__);
680
681     /* in case we don't already have something to eat ... */
682     if (nsv->ahead[0].data == NULL && nsv->ahead[1].data == NULL)
683         err = nsv_read_chunk(s, 0);
684     if (err < 0)
685         return err;
686
687     /* now pick one of the plates */
688     for (i = 0; i < 2; i++) {
689         if (nsv->ahead[i].data) {
690             av_dlog(s, "%s: using cached packet[%d]\n", __FUNCTION__, i);
691             /* avoid the cost of new_packet + memcpy(->data) */
692             memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket));
693             nsv->ahead[i].data = NULL; /* we ate that one */
694             return pkt->size;
695         }
696     }
697
698     /* this restaurant is not approvisionned :^] */
699     return -1;
700 }
701
702 static int nsv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
703 {
704     NSVContext *nsv = s->priv_data;
705     AVStream *st = s->streams[stream_index];
706     NSVStream *nst = st->priv_data;
707     int index;
708
709     index = av_index_search_timestamp(st, timestamp, flags);
710     if(index < 0)
711         return -1;
712
713     if (avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET) < 0)
714         return -1;
715
716     nst->frame_offset = st->index_entries[index].timestamp;
717     nsv->state = NSV_UNSYNC;
718     return 0;
719 }
720
721 static int nsv_read_close(AVFormatContext *s)
722 {
723 /*     int i; */
724     NSVContext *nsv = s->priv_data;
725
726     av_freep(&nsv->nsvs_file_offset);
727     av_freep(&nsv->nsvs_timestamps);
728     if (nsv->ahead[0].data)
729         av_free_packet(&nsv->ahead[0]);
730     if (nsv->ahead[1].data)
731         av_free_packet(&nsv->ahead[1]);
732
733 #if 0
734
735     for(i=0;i<s->nb_streams;i++) {
736         AVStream *st = s->streams[i];
737         NSVStream *ast = st->priv_data;
738         if(ast){
739             av_free(ast->index_entries);
740             av_free(ast);
741         }
742         av_free(st->codec->palctrl);
743     }
744
745 #endif
746     return 0;
747 }
748
749 static int nsv_probe(AVProbeData *p)
750 {
751     int i, score = 0;
752
753     av_dlog(NULL, "nsv_probe(), buf_size %d\n", p->buf_size);
754     /* check file header */
755     /* streamed files might not have any header */
756     if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
757         p->buf[2] == 'V' && (p->buf[3] == 'f' || p->buf[3] == 's'))
758         return AVPROBE_SCORE_MAX;
759     /* XXX: do streamed files always start at chunk boundary ?? */
760     /* or do we need to search NSVs in the byte stream ? */
761     /* seems the servers don't bother starting clean chunks... */
762     /* sometimes even the first header is at 9KB or something :^) */
763     for (i = 1; i < p->buf_size - 3; i++) {
764         if (AV_RL32(p->buf + i) == AV_RL32("NSVs")) {
765             /* Get the chunk size and check if at the end we are getting 0xBEEF */
766             int vsize = AV_RL24(p->buf+i+19) >> 4;
767             int asize = AV_RL16(p->buf+i+22);
768             int offset = i + 23 + asize + vsize + 1;
769             if (offset <= p->buf_size - 2 && AV_RL16(p->buf + offset) == 0xBEEF)
770                 return 4*AVPROBE_SCORE_MAX/5;
771             score = AVPROBE_SCORE_MAX/5;
772         }
773     }
774     /* so we'll have more luck on extension... */
775     if (av_match_ext(p->filename, "nsv"))
776         return AVPROBE_SCORE_MAX/2;
777     /* FIXME: add mime-type check */
778     return score;
779 }
780
781 AVInputFormat ff_nsv_demuxer = {
782     .name           = "nsv",
783     .long_name      = NULL_IF_CONFIG_SMALL("Nullsoft Streaming Video"),
784     .priv_data_size = sizeof(NSVContext),
785     .read_probe     = nsv_probe,
786     .read_header    = nsv_read_header,
787     .read_packet    = nsv_read_packet,
788     .read_close     = nsv_read_close,
789     .read_seek      = nsv_read_seek,
790 };