]> git.sesse.net Git - ffmpeg/blob - libavformat/nsvdec.c
NoMerge commit '4d58e4cb4ca8e04317fecea432ea3272a445877c'
[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 = av_new_stream(s, NSV_ST_VIDEO);
442             if (!st)
443                 goto fail;
444
445             nst = av_mallocz(sizeof(NSVStream));
446             if (!nst)
447                 goto fail;
448             st->priv_data = nst;
449             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
450             st->codec->codec_tag = vtag;
451             st->codec->codec_id = ff_codec_get_id(nsv_codec_video_tags, vtag);
452             st->codec->width = vwidth;
453             st->codec->height = vheight;
454             st->codec->bits_per_coded_sample = 24; /* depth XXX */
455
456             av_set_pts_info(st, 64, framerate.den, framerate.num);
457             st->start_time = 0;
458             st->duration = av_rescale(nsv->duration, framerate.num, 1000*framerate.den);
459
460             for(i=0;i<nsv->index_entries;i++) {
461                 if(nsv->nsvs_timestamps) {
462                     av_add_index_entry(st, nsv->nsvs_file_offset[i], nsv->nsvs_timestamps[i],
463                                        0, 0, AVINDEX_KEYFRAME);
464                 } else {
465                     int64_t ts = av_rescale(i*nsv->duration/nsv->index_entries, framerate.num, 1000*framerate.den);
466                     av_add_index_entry(st, nsv->nsvs_file_offset[i], ts, 0, 0, AVINDEX_KEYFRAME);
467                 }
468             }
469         }
470         if (atag != T_NONE) {
471 #ifndef DISABLE_AUDIO
472             st = av_new_stream(s, NSV_ST_AUDIO);
473             if (!st)
474                 goto fail;
475
476             nst = av_mallocz(sizeof(NSVStream));
477             if (!nst)
478                 goto fail;
479             st->priv_data = nst;
480             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
481             st->codec->codec_tag = atag;
482             st->codec->codec_id = ff_codec_get_id(nsv_codec_audio_tags, atag);
483
484             st->need_parsing = AVSTREAM_PARSE_FULL; /* for PCM we will read a chunk later and put correct info */
485
486             /* set timebase to common denominator of ms and framerate */
487             av_set_pts_info(st, 64, 1, framerate.num*1000);
488             st->start_time = 0;
489             st->duration = (int64_t)nsv->duration * framerate.num;
490 #endif
491         }
492 #ifdef CHECK_SUBSEQUENT_NSVS
493     } else {
494         if (nsv->vtag != vtag || nsv->atag != atag || nsv->vwidth != vwidth || nsv->vheight != vwidth) {
495             av_dlog(s, "NSV NSVs header values differ from the first one!!!\n");
496             //return -1;
497         }
498 #endif /* CHECK_SUBSEQUENT_NSVS */
499     }
500
501     nsv->state = NSV_HAS_READ_NSVS;
502     return 0;
503 fail:
504     /* XXX */
505     nsv->state = NSV_UNSYNC;
506     return -1;
507 }
508
509 static int nsv_read_header(AVFormatContext *s, AVFormatParameters *ap)
510 {
511     NSVContext *nsv = s->priv_data;
512     int i, err;
513
514     av_dlog(s, "%s()\n", __FUNCTION__);
515     av_dlog(s, "filename '%s'\n", s->filename);
516
517     nsv->state = NSV_UNSYNC;
518     nsv->ahead[0].data = nsv->ahead[1].data = NULL;
519
520     for (i = 0; i < NSV_MAX_RESYNC_TRIES; i++) {
521         if (nsv_resync(s) < 0)
522             return -1;
523         if (nsv->state == NSV_FOUND_NSVF)
524             err = nsv_parse_NSVf_header(s, ap);
525             /* we need the first NSVs also... */
526         if (nsv->state == NSV_FOUND_NSVS) {
527             err = nsv_parse_NSVs_header(s, ap);
528             break; /* we just want the first one */
529         }
530     }
531     if (s->nb_streams < 1) /* no luck so far */
532         return -1;
533     /* now read the first chunk, so we can attempt to decode more info */
534     err = nsv_read_chunk(s, 1);
535
536     av_dlog(s, "parsed header\n");
537     return err;
538 }
539
540 static int nsv_read_chunk(AVFormatContext *s, int fill_header)
541 {
542     NSVContext *nsv = s->priv_data;
543     AVIOContext *pb = s->pb;
544     AVStream *st[2] = {NULL, NULL};
545     NSVStream *nst;
546     AVPacket *pkt;
547     int i, err = 0;
548     uint8_t auxcount; /* number of aux metadata, also 4 bits of vsize */
549     uint32_t vsize;
550     uint16_t asize;
551     uint16_t auxsize;
552     uint32_t av_unused auxtag;
553
554     av_dlog(s, "%s(%d)\n", __FUNCTION__, fill_header);
555
556     if (nsv->ahead[0].data || nsv->ahead[1].data)
557         return 0; //-1; /* hey! eat what you've in your plate first! */
558
559 null_chunk_retry:
560     if (url_feof(pb))
561         return -1;
562
563     for (i = 0; i < NSV_MAX_RESYNC_TRIES && nsv->state < NSV_FOUND_NSVS && !err; i++)
564         err = nsv_resync(s);
565     if (err < 0)
566         return err;
567     if (nsv->state == NSV_FOUND_NSVS)
568         err = nsv_parse_NSVs_header(s, NULL);
569     if (err < 0)
570         return err;
571     if (nsv->state != NSV_HAS_READ_NSVS && nsv->state != NSV_FOUND_BEEF)
572         return -1;
573
574     auxcount = avio_r8(pb);
575     vsize = avio_rl16(pb);
576     asize = avio_rl16(pb);
577     vsize = (vsize << 4) | (auxcount >> 4);
578     auxcount &= 0x0f;
579     av_dlog(s, "NSV CHUNK %d aux, %u bytes video, %d bytes audio\n", auxcount, vsize, asize);
580     /* skip aux stuff */
581     for (i = 0; i < auxcount; i++) {
582         auxsize = avio_rl16(pb);
583         auxtag = avio_rl32(pb);
584         av_dlog(s, "NSV aux data: '%c%c%c%c', %d bytes\n",
585               (auxtag & 0x0ff),
586               ((auxtag >> 8) & 0x0ff),
587               ((auxtag >> 16) & 0x0ff),
588               ((auxtag >> 24) & 0x0ff),
589               auxsize);
590         avio_skip(pb, auxsize);
591         vsize -= auxsize + sizeof(uint16_t) + sizeof(uint32_t); /* that's becoming braindead */
592     }
593
594     if (url_feof(pb))
595         return -1;
596     if (!vsize && !asize) {
597         nsv->state = NSV_UNSYNC;
598         goto null_chunk_retry;
599     }
600
601     /* map back streams to v,a */
602     if (s->streams[0])
603         st[s->streams[0]->id] = s->streams[0];
604     if (s->streams[1])
605         st[s->streams[1]->id] = s->streams[1];
606
607     if (vsize/* && st[NSV_ST_VIDEO]*/) {
608         nst = st[NSV_ST_VIDEO]->priv_data;
609         pkt = &nsv->ahead[NSV_ST_VIDEO];
610         av_get_packet(pb, pkt, vsize);
611         pkt->stream_index = st[NSV_ST_VIDEO]->index;//NSV_ST_VIDEO;
612         pkt->dts = nst->frame_offset;
613         pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
614         for (i = 0; i < FFMIN(8, vsize); i++)
615             av_dlog(s, "NSV video: [%d] = %02x\n", i, pkt->data[i]);
616     }
617     if(st[NSV_ST_VIDEO])
618         ((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset++;
619
620     if (asize/*st[NSV_ST_AUDIO]*/) {
621         nst = st[NSV_ST_AUDIO]->priv_data;
622         pkt = &nsv->ahead[NSV_ST_AUDIO];
623         /* read raw audio specific header on the first audio chunk... */
624         /* on ALL audio chunks ?? seems so! */
625         if (asize && st[NSV_ST_AUDIO]->codec->codec_tag == MKTAG('P', 'C', 'M', ' ')/* && fill_header*/) {
626             uint8_t bps;
627             uint8_t channels;
628             uint16_t samplerate;
629             bps = avio_r8(pb);
630             channels = avio_r8(pb);
631             samplerate = avio_rl16(pb);
632             asize-=4;
633             av_dlog(s, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
634             if (fill_header) {
635                 st[NSV_ST_AUDIO]->need_parsing = AVSTREAM_PARSE_NONE; /* we know everything */
636                 if (bps != 16) {
637                     av_dlog(s, "NSV AUDIO bit/sample != 16 (%d)!!!\n", bps);
638                 }
639                 bps /= channels; // ???
640                 if (bps == 8)
641                     st[NSV_ST_AUDIO]->codec->codec_id = CODEC_ID_PCM_U8;
642                 samplerate /= 4;/* UGH ??? XXX */
643                 channels = 1;
644                 st[NSV_ST_AUDIO]->codec->channels = channels;
645                 st[NSV_ST_AUDIO]->codec->sample_rate = samplerate;
646                 av_dlog(s, "NSV RAWAUDIO: bps %d, nchan %d, srate %d\n", bps, channels, samplerate);
647             }
648         }
649         av_get_packet(pb, pkt, asize);
650         pkt->stream_index = st[NSV_ST_AUDIO]->index;//NSV_ST_AUDIO;
651         pkt->flags |= nsv->state == NSV_HAS_READ_NSVS ? AV_PKT_FLAG_KEY : 0; /* keyframe only likely on a sync frame */
652         if( nsv->state == NSV_HAS_READ_NSVS && st[NSV_ST_VIDEO] ) {
653             /* on a nsvs frame we have new information on a/v sync */
654             pkt->dts = (((NSVStream*)st[NSV_ST_VIDEO]->priv_data)->frame_offset-1);
655             pkt->dts *= (int64_t)1000        * nsv->framerate.den;
656             pkt->dts += (int64_t)nsv->avsync * nsv->framerate.num;
657             av_dlog(s, "NSV AUDIO: sync:%d, dts:%"PRId64, nsv->avsync, pkt->dts);
658         }
659         nst->frame_offset++;
660     }
661
662     nsv->state = NSV_UNSYNC;
663     return 0;
664 }
665
666
667 static int nsv_read_packet(AVFormatContext *s, AVPacket *pkt)
668 {
669     NSVContext *nsv = s->priv_data;
670     int i, err = 0;
671
672     av_dlog(s, "%s()\n", __FUNCTION__);
673
674     /* in case we don't already have something to eat ... */
675     if (nsv->ahead[0].data == NULL && nsv->ahead[1].data == NULL)
676         err = nsv_read_chunk(s, 0);
677     if (err < 0)
678         return err;
679
680     /* now pick one of the plates */
681     for (i = 0; i < 2; i++) {
682         if (nsv->ahead[i].data) {
683             av_dlog(s, "%s: using cached packet[%d]\n", __FUNCTION__, i);
684             /* avoid the cost of new_packet + memcpy(->data) */
685             memcpy(pkt, &nsv->ahead[i], sizeof(AVPacket));
686             nsv->ahead[i].data = NULL; /* we ate that one */
687             return pkt->size;
688         }
689     }
690
691     /* this restaurant is not approvisionned :^] */
692     return -1;
693 }
694
695 static int nsv_read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
696 {
697     NSVContext *nsv = s->priv_data;
698     AVStream *st = s->streams[stream_index];
699     NSVStream *nst = st->priv_data;
700     int index;
701
702     index = av_index_search_timestamp(st, timestamp, flags);
703     if(index < 0)
704         return -1;
705
706     avio_seek(s->pb, st->index_entries[index].pos, SEEK_SET);
707     nst->frame_offset = st->index_entries[index].timestamp;
708     nsv->state = NSV_UNSYNC;
709     return 0;
710 }
711
712 static int nsv_read_close(AVFormatContext *s)
713 {
714 /*     int i; */
715     NSVContext *nsv = s->priv_data;
716
717     av_freep(&nsv->nsvs_file_offset);
718     av_freep(&nsv->nsvs_timestamps);
719     if (nsv->ahead[0].data)
720         av_free_packet(&nsv->ahead[0]);
721     if (nsv->ahead[1].data)
722         av_free_packet(&nsv->ahead[1]);
723
724 #if 0
725
726     for(i=0;i<s->nb_streams;i++) {
727         AVStream *st = s->streams[i];
728         NSVStream *ast = st->priv_data;
729         if(ast){
730             av_free(ast->index_entries);
731             av_free(ast);
732         }
733         av_free(st->codec->palctrl);
734     }
735
736 #endif
737     return 0;
738 }
739
740 static int nsv_probe(AVProbeData *p)
741 {
742     int i, score = 0;
743
744     av_dlog(NULL, "nsv_probe(), buf_size %d\n", p->buf_size);
745     /* check file header */
746     /* streamed files might not have any header */
747     if (p->buf[0] == 'N' && p->buf[1] == 'S' &&
748         p->buf[2] == 'V' && (p->buf[3] == 'f' || p->buf[3] == 's'))
749         return AVPROBE_SCORE_MAX;
750     /* XXX: do streamed files always start at chunk boundary ?? */
751     /* or do we need to search NSVs in the byte stream ? */
752     /* seems the servers don't bother starting clean chunks... */
753     /* sometimes even the first header is at 9KB or something :^) */
754     for (i = 1; i < p->buf_size - 3; i++) {
755         if (AV_RL32(p->buf + i) == AV_RL32("NSVs")) {
756             /* Get the chunk size and check if at the end we are getting 0xBEEF */
757             int vsize = AV_RL24(p->buf+i+19) >> 4;
758             int asize = AV_RL16(p->buf+i+22);
759             int offset = i + 23 + asize + vsize + 1;
760             if (offset <= p->buf_size - 2 && AV_RL16(p->buf + offset) == 0xBEEF)
761                 return 4*AVPROBE_SCORE_MAX/5;
762             score = AVPROBE_SCORE_MAX/5;
763         }
764     }
765     /* so we'll have more luck on extension... */
766     if (av_match_ext(p->filename, "nsv"))
767         return AVPROBE_SCORE_MAX/2;
768     /* FIXME: add mime-type check */
769     return score;
770 }
771
772 AVInputFormat ff_nsv_demuxer = {
773     .name           = "nsv",
774     .long_name      = NULL_IF_CONFIG_SMALL("Nullsoft Streaming Video"),
775     .priv_data_size = sizeof(NSVContext),
776     .read_probe     = nsv_probe,
777     .read_header    = nsv_read_header,
778     .read_packet    = nsv_read_packet,
779     .read_close     = nsv_read_close,
780     .read_seek      = nsv_read_seek,
781 };