]> git.sesse.net Git - ffmpeg/blob - libavformat/nutdec.c
Merge remote-tracking branch 'qatar/master'
[ffmpeg] / libavformat / nutdec.c
1 /*
2  * "NUT" Container Format demuxer
3  * Copyright (c) 2004-2006 Michael Niedermayer
4  * Copyright (c) 2003 Alex Beregszaszi
5  *
6  * This file is part of FFmpeg.
7  *
8  * FFmpeg is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * FFmpeg is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with FFmpeg; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
21  */
22
23 #include <strings.h>
24 #include "libavutil/avstring.h"
25 #include "libavutil/bswap.h"
26 #include "libavutil/tree.h"
27 #include "avio_internal.h"
28 #include "nut.h"
29
30 #undef NDEBUG
31 #include <assert.h>
32
33 #define NUT_MAX_STREAMS 256    /* arbitrary sanity check value */
34
35 static int get_str(AVIOContext *bc, char *string, unsigned int maxlen){
36     unsigned int len= ffio_read_varlen(bc);
37
38     if(len && maxlen)
39         avio_read(bc, string, FFMIN(len, maxlen));
40     while(len > maxlen){
41         avio_r8(bc);
42         len--;
43     }
44
45     if(maxlen)
46         string[FFMIN(len, maxlen-1)]= 0;
47
48     if(maxlen == len)
49         return -1;
50     else
51         return 0;
52 }
53
54 static int64_t get_s(AVIOContext *bc){
55     int64_t v = ffio_read_varlen(bc) + 1;
56
57     if (v&1) return -(v>>1);
58     else     return  (v>>1);
59 }
60
61 static uint64_t get_fourcc(AVIOContext *bc){
62     unsigned int len= ffio_read_varlen(bc);
63
64     if     (len==2) return avio_rl16(bc);
65     else if(len==4) return avio_rl32(bc);
66     else            return -1;
67 }
68
69 #ifdef TRACE
70 static inline uint64_t get_v_trace(AVIOContext *bc, char *file, char *func, int line){
71     uint64_t v= ffio_read_varlen(bc);
72
73     av_log(NULL, AV_LOG_DEBUG, "get_v %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line);
74     return v;
75 }
76
77 static inline int64_t get_s_trace(AVIOContext *bc, char *file, char *func, int line){
78     int64_t v= get_s(bc);
79
80     av_log(NULL, AV_LOG_DEBUG, "get_s %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line);
81     return v;
82 }
83
84 static inline uint64_t get_vb_trace(AVIOContext *bc, char *file, char *func, int line){
85     uint64_t v= get_vb(bc);
86
87     av_log(NULL, AV_LOG_DEBUG, "get_vb %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line);
88     return v;
89 }
90 #define ffio_read_varlen(bc)  get_v_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__)
91 #define get_s(bc)  get_s_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__)
92 #define get_vb(bc)  get_vb_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__)
93 #endif
94
95 static int get_packetheader(NUTContext *nut, AVIOContext *bc, int calculate_checksum, uint64_t startcode)
96 {
97     int64_t size;
98 //    start= avio_tell(bc) - 8;
99
100     startcode= av_be2ne64(startcode);
101     startcode= ff_crc04C11DB7_update(0, (uint8_t*)&startcode, 8);
102
103     ffio_init_checksum(bc, ff_crc04C11DB7_update, startcode);
104     size= ffio_read_varlen(bc);
105     if(size > 4096)
106         avio_rb32(bc);
107     if(ffio_get_checksum(bc) && size > 4096)
108         return -1;
109
110     ffio_init_checksum(bc, calculate_checksum ? ff_crc04C11DB7_update : NULL, 0);
111
112     return size;
113 }
114
115 static uint64_t find_any_startcode(AVIOContext *bc, int64_t pos){
116     uint64_t state=0;
117
118     if(pos >= 0)
119         avio_seek(bc, pos, SEEK_SET); //note, this may fail if the stream is not seekable, but that should not matter, as in this case we simply start where we currently are
120
121     while(!url_feof(bc)){
122         state= (state<<8) | avio_r8(bc);
123         if((state>>56) != 'N')
124             continue;
125         switch(state){
126         case MAIN_STARTCODE:
127         case STREAM_STARTCODE:
128         case SYNCPOINT_STARTCODE:
129         case INFO_STARTCODE:
130         case INDEX_STARTCODE:
131             return state;
132         }
133     }
134
135     return 0;
136 }
137
138 /**
139  * Find the given startcode.
140  * @param code the startcode
141  * @param pos the start position of the search, or -1 if the current position
142  * @return the position of the startcode or -1 if not found
143  */
144 static int64_t find_startcode(AVIOContext *bc, uint64_t code, int64_t pos){
145     for(;;){
146         uint64_t startcode= find_any_startcode(bc, pos);
147         if(startcode == code)
148             return avio_tell(bc) - 8;
149         else if(startcode == 0)
150             return -1;
151         pos=-1;
152     }
153 }
154
155 static int nut_probe(AVProbeData *p){
156     int i;
157     uint64_t code= 0;
158
159     for (i = 0; i < p->buf_size; i++) {
160         code = (code << 8) | p->buf[i];
161         if (code == MAIN_STARTCODE)
162             return AVPROBE_SCORE_MAX;
163     }
164     return 0;
165 }
166
167 #define GET_V(dst, check) \
168     tmp= ffio_read_varlen(bc);\
169     if(!(check)){\
170         av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp);\
171         return -1;\
172     }\
173     dst= tmp;
174
175 static int skip_reserved(AVIOContext *bc, int64_t pos){
176     pos -= avio_tell(bc);
177     if(pos<0){
178         avio_seek(bc, pos, SEEK_CUR);
179         return -1;
180     }else{
181         while(pos--)
182             avio_r8(bc);
183         return 0;
184     }
185 }
186
187 static int decode_main_header(NUTContext *nut){
188     AVFormatContext *s= nut->avf;
189     AVIOContext *bc = s->pb;
190     uint64_t tmp, end;
191     unsigned int stream_count;
192     int i, j, tmp_stream, tmp_mul, tmp_pts, tmp_size, count, tmp_res, tmp_head_idx;
193
194     end= get_packetheader(nut, bc, 1, MAIN_STARTCODE);
195     end += avio_tell(bc);
196
197     GET_V(tmp              , tmp >=2 && tmp <= 3)
198     GET_V(stream_count     , tmp > 0 && tmp <= NUT_MAX_STREAMS)
199
200     nut->max_distance = ffio_read_varlen(bc);
201     if(nut->max_distance > 65536){
202         av_log(s, AV_LOG_DEBUG, "max_distance %d\n", nut->max_distance);
203         nut->max_distance= 65536;
204     }
205
206     GET_V(nut->time_base_count, tmp>0 && tmp<INT_MAX / sizeof(AVRational))
207     nut->time_base= av_malloc(nut->time_base_count * sizeof(AVRational));
208
209     for(i=0; i<nut->time_base_count; i++){
210         GET_V(nut->time_base[i].num, tmp>0 && tmp<(1ULL<<31))
211         GET_V(nut->time_base[i].den, tmp>0 && tmp<(1ULL<<31))
212         if(av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1){
213             av_log(s, AV_LOG_ERROR, "time base invalid\n");
214             return AVERROR_INVALIDDATA;
215         }
216     }
217     tmp_pts=0;
218     tmp_mul=1;
219     tmp_stream=0;
220     tmp_head_idx= 0;
221     for(i=0; i<256;){
222         int tmp_flags = ffio_read_varlen(bc);
223         int tmp_fields= ffio_read_varlen(bc);
224         if(tmp_fields>0) tmp_pts   = get_s(bc);
225         if(tmp_fields>1) tmp_mul   = ffio_read_varlen(bc);
226         if(tmp_fields>2) tmp_stream= ffio_read_varlen(bc);
227         if(tmp_fields>3) tmp_size  = ffio_read_varlen(bc);
228         else             tmp_size  = 0;
229         if(tmp_fields>4) tmp_res   = ffio_read_varlen(bc);
230         else             tmp_res   = 0;
231         if(tmp_fields>5) count     = ffio_read_varlen(bc);
232         else             count     = tmp_mul - tmp_size;
233         if(tmp_fields>6) get_s(bc);
234         if(tmp_fields>7) tmp_head_idx= ffio_read_varlen(bc);
235
236         while(tmp_fields-- > 8)
237            ffio_read_varlen(bc);
238
239         if(count == 0 || i+count > 256){
240             av_log(s, AV_LOG_ERROR, "illegal count %d at %d\n", count, i);
241             return AVERROR_INVALIDDATA;
242         }
243         if(tmp_stream >= stream_count){
244             av_log(s, AV_LOG_ERROR, "illegal stream number\n");
245             return AVERROR_INVALIDDATA;
246         }
247
248         for(j=0; j<count; j++,i++){
249             if (i == 'N') {
250                 nut->frame_code[i].flags= FLAG_INVALID;
251                 j--;
252                 continue;
253             }
254             nut->frame_code[i].flags           = tmp_flags ;
255             nut->frame_code[i].pts_delta       = tmp_pts   ;
256             nut->frame_code[i].stream_id       = tmp_stream;
257             nut->frame_code[i].size_mul        = tmp_mul   ;
258             nut->frame_code[i].size_lsb        = tmp_size+j;
259             nut->frame_code[i].reserved_count  = tmp_res   ;
260             nut->frame_code[i].header_idx      = tmp_head_idx;
261         }
262     }
263     assert(nut->frame_code['N'].flags == FLAG_INVALID);
264
265     if(end > avio_tell(bc) + 4){
266         int rem= 1024;
267         GET_V(nut->header_count, tmp<128U)
268         nut->header_count++;
269         for(i=1; i<nut->header_count; i++){
270             GET_V(nut->header_len[i], tmp>0 && tmp<256);
271             rem -= nut->header_len[i];
272             if(rem < 0){
273                 av_log(s, AV_LOG_ERROR, "invalid elision header\n");
274                 return AVERROR_INVALIDDATA;
275             }
276             nut->header[i]= av_malloc(nut->header_len[i]);
277             avio_read(bc, nut->header[i], nut->header_len[i]);
278         }
279         assert(nut->header_len[0]==0);
280     }
281
282     if(skip_reserved(bc, end) || ffio_get_checksum(bc)){
283         av_log(s, AV_LOG_ERROR, "main header checksum mismatch\n");
284         return AVERROR_INVALIDDATA;
285     }
286
287     nut->stream = av_mallocz(sizeof(StreamContext)*stream_count);
288     for(i=0; i<stream_count; i++){
289         av_new_stream(s, i);
290     }
291
292     return 0;
293 }
294
295 static int decode_stream_header(NUTContext *nut){
296     AVFormatContext *s= nut->avf;
297     AVIOContext *bc = s->pb;
298     StreamContext *stc;
299     int class, stream_id;
300     uint64_t tmp, end;
301     AVStream *st;
302
303     end= get_packetheader(nut, bc, 1, STREAM_STARTCODE);
304     end += avio_tell(bc);
305
306     GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
307     stc= &nut->stream[stream_id];
308
309     st = s->streams[stream_id];
310     if (!st)
311         return AVERROR(ENOMEM);
312
313     class = ffio_read_varlen(bc);
314     tmp = get_fourcc(bc);
315     st->codec->codec_tag= tmp;
316     switch(class)
317     {
318         case 0:
319             st->codec->codec_type = AVMEDIA_TYPE_VIDEO;
320             st->codec->codec_id = av_codec_get_id(
321                 (const AVCodecTag * const []) { ff_codec_bmp_tags, ff_nut_video_tags, 0 },
322                 tmp);
323             break;
324         case 1:
325             st->codec->codec_type = AVMEDIA_TYPE_AUDIO;
326             st->codec->codec_id = ff_codec_get_id(ff_codec_wav_tags, tmp);
327             break;
328         case 2:
329             st->codec->codec_type = AVMEDIA_TYPE_SUBTITLE;
330             st->codec->codec_id = ff_codec_get_id(ff_nut_subtitle_tags, tmp);
331             break;
332         case 3:
333             st->codec->codec_type = AVMEDIA_TYPE_DATA;
334             break;
335         default:
336             av_log(s, AV_LOG_ERROR, "unknown stream class (%d)\n", class);
337             return -1;
338     }
339     if(class<3 && st->codec->codec_id == CODEC_ID_NONE)
340         av_log(s, AV_LOG_ERROR, "Unknown codec tag '0x%04x' for stream number %d\n",
341                (unsigned int)tmp, stream_id);
342
343     GET_V(stc->time_base_id    , tmp < nut->time_base_count);
344     GET_V(stc->msb_pts_shift   , tmp < 16);
345     stc->max_pts_distance= ffio_read_varlen(bc);
346     GET_V(stc->decode_delay    , tmp < 1000); //sanity limit, raise this if Moore's law is true
347     st->codec->has_b_frames= stc->decode_delay;
348     ffio_read_varlen(bc); //stream flags
349
350     GET_V(st->codec->extradata_size, tmp < (1<<30));
351     if(st->codec->extradata_size){
352         st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE);
353         avio_read(bc, st->codec->extradata, st->codec->extradata_size);
354     }
355
356     if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO){
357         GET_V(st->codec->width , tmp > 0)
358         GET_V(st->codec->height, tmp > 0)
359         st->sample_aspect_ratio.num= ffio_read_varlen(bc);
360         st->sample_aspect_ratio.den= ffio_read_varlen(bc);
361         if((!st->sample_aspect_ratio.num) != (!st->sample_aspect_ratio.den)){
362             av_log(s, AV_LOG_ERROR, "invalid aspect ratio %d/%d\n", st->sample_aspect_ratio.num, st->sample_aspect_ratio.den);
363             return -1;
364         }
365         ffio_read_varlen(bc); /* csp type */
366     }else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO){
367         GET_V(st->codec->sample_rate , tmp > 0)
368         ffio_read_varlen(bc); // samplerate_den
369         GET_V(st->codec->channels, tmp > 0)
370     }
371     if(skip_reserved(bc, end) || ffio_get_checksum(bc)){
372         av_log(s, AV_LOG_ERROR, "stream header %d checksum mismatch\n", stream_id);
373         return -1;
374     }
375     stc->time_base= &nut->time_base[stc->time_base_id];
376     av_set_pts_info(s->streams[stream_id], 63, stc->time_base->num, stc->time_base->den);
377     return 0;
378 }
379
380 static void set_disposition_bits(AVFormatContext* avf, char* value, int stream_id){
381     int flag = 0, i;
382     for (i=0; ff_nut_dispositions[i].flag; ++i) {
383         if (!strcmp(ff_nut_dispositions[i].str, value))
384             flag = ff_nut_dispositions[i].flag;
385     }
386     if (!flag)
387         av_log(avf, AV_LOG_INFO, "unknown disposition type '%s'\n", value);
388     for (i = 0; i < avf->nb_streams; ++i)
389         if (stream_id == i || stream_id == -1)
390             avf->streams[i]->disposition |= flag;
391 }
392
393 static int decode_info_header(NUTContext *nut){
394     AVFormatContext *s= nut->avf;
395     AVIOContext *bc = s->pb;
396     uint64_t tmp, chapter_start, chapter_len;
397     unsigned int stream_id_plus1, count;
398     int chapter_id, i;
399     int64_t value, end;
400     char name[256], str_value[1024], type_str[256];
401     const char *type;
402     AVChapter *chapter= NULL;
403     AVStream *st= NULL;
404     AVMetadata **metadata = NULL;
405
406     end= get_packetheader(nut, bc, 1, INFO_STARTCODE);
407     end += avio_tell(bc);
408
409     GET_V(stream_id_plus1, tmp <= s->nb_streams)
410     chapter_id   = get_s(bc);
411     chapter_start= ffio_read_varlen(bc);
412     chapter_len  = ffio_read_varlen(bc);
413     count        = ffio_read_varlen(bc);
414
415     if(chapter_id && !stream_id_plus1){
416         int64_t start= chapter_start / nut->time_base_count;
417         chapter= ff_new_chapter(s, chapter_id,
418                                 nut->time_base[chapter_start % nut->time_base_count],
419                                 start, start + chapter_len, NULL);
420         metadata = &chapter->metadata;
421     } else if(stream_id_plus1) {
422         st= s->streams[stream_id_plus1 - 1];
423         metadata = &st->metadata;
424     } else
425         metadata = &s->metadata;
426
427     for(i=0; i<count; i++){
428         get_str(bc, name, sizeof(name));
429         value= get_s(bc);
430         if(value == -1){
431             type= "UTF-8";
432             get_str(bc, str_value, sizeof(str_value));
433         }else if(value == -2){
434             get_str(bc, type_str, sizeof(type_str));
435             type= type_str;
436             get_str(bc, str_value, sizeof(str_value));
437         }else if(value == -3){
438             type= "s";
439             value= get_s(bc);
440         }else if(value == -4){
441             type= "t";
442             value= ffio_read_varlen(bc);
443         }else if(value < -4){
444             type= "r";
445             get_s(bc);
446         }else{
447             type= "v";
448         }
449
450         if (stream_id_plus1 > s->nb_streams) {
451             av_log(s, AV_LOG_ERROR, "invalid stream id for info packet\n");
452             continue;
453         }
454
455         if(!strcmp(type, "UTF-8")){
456             if(chapter_id==0 && !strcmp(name, "Disposition")) {
457                 set_disposition_bits(s, str_value, stream_id_plus1 - 1);
458                 continue;
459             }
460             if(metadata && strcasecmp(name,"Uses")
461                && strcasecmp(name,"Depends") && strcasecmp(name,"Replaces"))
462                 av_metadata_set2(metadata, name, str_value, 0);
463         }
464     }
465
466     if(skip_reserved(bc, end) || ffio_get_checksum(bc)){
467         av_log(s, AV_LOG_ERROR, "info header checksum mismatch\n");
468         return -1;
469     }
470     return 0;
471 }
472
473 static int decode_syncpoint(NUTContext *nut, int64_t *ts, int64_t *back_ptr){
474     AVFormatContext *s= nut->avf;
475     AVIOContext *bc = s->pb;
476     int64_t end, tmp;
477
478     nut->last_syncpoint_pos= avio_tell(bc)-8;
479
480     end= get_packetheader(nut, bc, 1, SYNCPOINT_STARTCODE);
481     end += avio_tell(bc);
482
483     tmp= ffio_read_varlen(bc);
484     *back_ptr= nut->last_syncpoint_pos - 16*ffio_read_varlen(bc);
485     if(*back_ptr < 0)
486         return -1;
487
488     ff_nut_reset_ts(nut, nut->time_base[tmp % nut->time_base_count], tmp / nut->time_base_count);
489
490     if(skip_reserved(bc, end) || ffio_get_checksum(bc)){
491         av_log(s, AV_LOG_ERROR, "sync point checksum mismatch\n");
492         return -1;
493     }
494
495     *ts= tmp / s->nb_streams * av_q2d(nut->time_base[tmp % s->nb_streams])*AV_TIME_BASE;
496     ff_nut_add_sp(nut, nut->last_syncpoint_pos, *back_ptr, *ts);
497
498     return 0;
499 }
500
501 static int find_and_decode_index(NUTContext *nut){
502     AVFormatContext *s= nut->avf;
503     AVIOContext *bc = s->pb;
504     uint64_t tmp, end;
505     int i, j, syncpoint_count;
506     int64_t filesize= avio_size(bc);
507     int64_t *syncpoints;
508     int8_t *has_keyframe;
509     int ret= -1;
510
511     avio_seek(bc, filesize-12, SEEK_SET);
512     avio_seek(bc, filesize-avio_rb64(bc), SEEK_SET);
513     if(avio_rb64(bc) != INDEX_STARTCODE){
514         av_log(s, AV_LOG_ERROR, "no index at the end\n");
515         return -1;
516     }
517
518     end= get_packetheader(nut, bc, 1, INDEX_STARTCODE);
519     end += avio_tell(bc);
520
521     ffio_read_varlen(bc); //max_pts
522     GET_V(syncpoint_count, tmp < INT_MAX/8 && tmp > 0)
523     syncpoints= av_malloc(sizeof(int64_t)*syncpoint_count);
524     has_keyframe= av_malloc(sizeof(int8_t)*(syncpoint_count+1));
525     for(i=0; i<syncpoint_count; i++){
526         syncpoints[i] = ffio_read_varlen(bc);
527         if(syncpoints[i] <= 0)
528             goto fail;
529         if(i)
530             syncpoints[i] += syncpoints[i-1];
531     }
532
533     for(i=0; i<s->nb_streams; i++){
534         int64_t last_pts= -1;
535         for(j=0; j<syncpoint_count;){
536             uint64_t x= ffio_read_varlen(bc);
537             int type= x&1;
538             int n= j;
539             x>>=1;
540             if(type){
541                 int flag= x&1;
542                 x>>=1;
543                 if(n+x >= syncpoint_count + 1){
544                     av_log(s, AV_LOG_ERROR, "index overflow A\n");
545                     goto fail;
546                 }
547                 while(x--)
548                     has_keyframe[n++]= flag;
549                 has_keyframe[n++]= !flag;
550             }else{
551                 while(x != 1){
552                     if(n>=syncpoint_count + 1){
553                         av_log(s, AV_LOG_ERROR, "index overflow B\n");
554                         goto fail;
555                     }
556                     has_keyframe[n++]= x&1;
557                     x>>=1;
558                 }
559             }
560             if(has_keyframe[0]){
561                 av_log(s, AV_LOG_ERROR, "keyframe before first syncpoint in index\n");
562                 goto fail;
563             }
564             assert(n<=syncpoint_count+1);
565             for(; j<n && j<syncpoint_count; j++){
566                 if(has_keyframe[j]){
567                     uint64_t B, A= ffio_read_varlen(bc);
568                     if(!A){
569                         A= ffio_read_varlen(bc);
570                         B= ffio_read_varlen(bc);
571                         //eor_pts[j][i] = last_pts + A + B
572                     }else
573                         B= 0;
574                     av_add_index_entry(
575                         s->streams[i],
576                         16*syncpoints[j-1],
577                         last_pts + A,
578                         0,
579                         0,
580                         AVINDEX_KEYFRAME);
581                     last_pts += A + B;
582                 }
583             }
584         }
585     }
586
587     if(skip_reserved(bc, end) || ffio_get_checksum(bc)){
588         av_log(s, AV_LOG_ERROR, "index checksum mismatch\n");
589         goto fail;
590     }
591     ret= 0;
592 fail:
593     av_free(syncpoints);
594     av_free(has_keyframe);
595     return ret;
596 }
597
598 static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap)
599 {
600     NUTContext *nut = s->priv_data;
601     AVIOContext *bc = s->pb;
602     int64_t pos;
603     int initialized_stream_count;
604
605     nut->avf= s;
606
607     /* main header */
608     pos=0;
609     do{
610         pos= find_startcode(bc, MAIN_STARTCODE, pos)+1;
611         if (pos<0+1){
612             av_log(s, AV_LOG_ERROR, "No main startcode found.\n");
613             return AVERROR_INVALIDDATA;
614         }
615     }while(decode_main_header(nut) < 0);
616
617     /* stream headers */
618     pos=0;
619     for(initialized_stream_count=0; initialized_stream_count < s->nb_streams;){
620         pos= find_startcode(bc, STREAM_STARTCODE, pos)+1;
621         if (pos<0+1){
622             av_log(s, AV_LOG_ERROR, "Not all stream headers found.\n");
623             return AVERROR_INVALIDDATA;
624         }
625         if(decode_stream_header(nut) >= 0)
626             initialized_stream_count++;
627     }
628
629     /* info headers */
630     pos=0;
631     for(;;){
632         uint64_t startcode= find_any_startcode(bc, pos);
633         pos= avio_tell(bc);
634
635         if(startcode==0){
636             av_log(s, AV_LOG_ERROR, "EOF before video frames\n");
637             return AVERROR_INVALIDDATA;
638         }else if(startcode == SYNCPOINT_STARTCODE){
639             nut->next_startcode= startcode;
640             break;
641         }else if(startcode != INFO_STARTCODE){
642             continue;
643         }
644
645         decode_info_header(nut);
646     }
647
648     s->data_offset= pos-8;
649
650     if(bc->seekable){
651         int64_t orig_pos= avio_tell(bc);
652         find_and_decode_index(nut);
653         avio_seek(bc, orig_pos, SEEK_SET);
654     }
655     assert(nut->next_startcode == SYNCPOINT_STARTCODE);
656
657     ff_metadata_conv_ctx(s, NULL, ff_nut_metadata_conv);
658
659     return 0;
660 }
661
662 static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id, uint8_t *header_idx, int frame_code){
663     AVFormatContext *s= nut->avf;
664     AVIOContext *bc = s->pb;
665     StreamContext *stc;
666     int size, flags, size_mul, pts_delta, i, reserved_count;
667     uint64_t tmp;
668
669     if(avio_tell(bc) > nut->last_syncpoint_pos + nut->max_distance){
670         av_log(s, AV_LOG_ERROR, "Last frame must have been damaged %"PRId64" > %"PRId64" + %d\n", avio_tell(bc), nut->last_syncpoint_pos, nut->max_distance);
671         return AVERROR_INVALIDDATA;
672     }
673
674     flags          = nut->frame_code[frame_code].flags;
675     size_mul       = nut->frame_code[frame_code].size_mul;
676     size           = nut->frame_code[frame_code].size_lsb;
677     *stream_id     = nut->frame_code[frame_code].stream_id;
678     pts_delta      = nut->frame_code[frame_code].pts_delta;
679     reserved_count = nut->frame_code[frame_code].reserved_count;
680     *header_idx    = nut->frame_code[frame_code].header_idx;
681
682     if(flags & FLAG_INVALID)
683         return AVERROR_INVALIDDATA;
684     if(flags & FLAG_CODED)
685         flags ^= ffio_read_varlen(bc);
686     if(flags & FLAG_STREAM_ID){
687         GET_V(*stream_id, tmp < s->nb_streams)
688     }
689     stc= &nut->stream[*stream_id];
690     if(flags&FLAG_CODED_PTS){
691         int coded_pts= ffio_read_varlen(bc);
692 //FIXME check last_pts validity?
693         if(coded_pts < (1<<stc->msb_pts_shift)){
694             *pts=ff_lsb2full(stc, coded_pts);
695         }else
696             *pts=coded_pts - (1<<stc->msb_pts_shift);
697     }else
698         *pts= stc->last_pts + pts_delta;
699     if(flags&FLAG_SIZE_MSB){
700         size += size_mul*ffio_read_varlen(bc);
701     }
702     if(flags&FLAG_MATCH_TIME)
703         get_s(bc);
704     if(flags&FLAG_HEADER_IDX)
705         *header_idx= ffio_read_varlen(bc);
706     if(flags&FLAG_RESERVED)
707         reserved_count= ffio_read_varlen(bc);
708     for(i=0; i<reserved_count; i++)
709         ffio_read_varlen(bc);
710
711     if(*header_idx >= (unsigned)nut->header_count){
712         av_log(s, AV_LOG_ERROR, "header_idx invalid\n");
713         return AVERROR_INVALIDDATA;
714     }
715     if(size > 4096)
716         *header_idx=0;
717     size -= nut->header_len[*header_idx];
718
719     if(flags&FLAG_CHECKSUM){
720         avio_rb32(bc); //FIXME check this
721     }else if(size > 2*nut->max_distance || FFABS(stc->last_pts - *pts) > stc->max_pts_distance){
722         av_log(s, AV_LOG_ERROR, "frame size > 2max_distance and no checksum\n");
723         return AVERROR_INVALIDDATA;
724     }
725
726     stc->last_pts= *pts;
727     stc->last_flags= flags;
728
729     return size;
730 }
731
732 static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code){
733     AVFormatContext *s= nut->avf;
734     AVIOContext *bc = s->pb;
735     int size, stream_id, discard;
736     int64_t pts, last_IP_pts;
737     StreamContext *stc;
738     uint8_t header_idx;
739
740     size= decode_frame_header(nut, &pts, &stream_id, &header_idx, frame_code);
741     if(size < 0)
742         return size;
743
744     stc= &nut->stream[stream_id];
745
746     if (stc->last_flags & FLAG_KEY)
747         stc->skip_until_key_frame=0;
748
749     discard= s->streams[ stream_id ]->discard;
750     last_IP_pts= s->streams[ stream_id ]->last_IP_pts;
751     if(  (discard >= AVDISCARD_NONKEY && !(stc->last_flags & FLAG_KEY))
752        ||(discard >= AVDISCARD_BIDIR && last_IP_pts != AV_NOPTS_VALUE && last_IP_pts > pts)
753        || discard >= AVDISCARD_ALL
754        || stc->skip_until_key_frame){
755         avio_skip(bc, size);
756         return 1;
757     }
758
759     av_new_packet(pkt, size + nut->header_len[header_idx]);
760     memcpy(pkt->data, nut->header[header_idx], nut->header_len[header_idx]);
761     pkt->pos= avio_tell(bc); //FIXME
762     avio_read(bc, pkt->data + nut->header_len[header_idx], size);
763
764     pkt->stream_index = stream_id;
765     if (stc->last_flags & FLAG_KEY)
766         pkt->flags |= AV_PKT_FLAG_KEY;
767     pkt->pts = pts;
768
769     return 0;
770 }
771
772 static int nut_read_packet(AVFormatContext *s, AVPacket *pkt)
773 {
774     NUTContext *nut = s->priv_data;
775     AVIOContext *bc = s->pb;
776     int i, frame_code=0, ret, skip;
777     int64_t ts, back_ptr;
778
779     for(;;){
780         int64_t pos= avio_tell(bc);
781         uint64_t tmp= nut->next_startcode;
782         nut->next_startcode=0;
783
784         if(tmp){
785             pos-=8;
786         }else{
787             frame_code = avio_r8(bc);
788             if(url_feof(bc))
789                 return -1;
790             if(frame_code == 'N'){
791                 tmp= frame_code;
792                 for(i=1; i<8; i++)
793                     tmp = (tmp<<8) + avio_r8(bc);
794             }
795         }
796         switch(tmp){
797         case MAIN_STARTCODE:
798         case STREAM_STARTCODE:
799         case INDEX_STARTCODE:
800             skip= get_packetheader(nut, bc, 0, tmp);
801             avio_skip(bc, skip);
802             break;
803         case INFO_STARTCODE:
804             if(decode_info_header(nut)<0)
805                 goto resync;
806             break;
807         case SYNCPOINT_STARTCODE:
808             if(decode_syncpoint(nut, &ts, &back_ptr)<0)
809                 goto resync;
810             frame_code = avio_r8(bc);
811         case 0:
812             ret= decode_frame(nut, pkt, frame_code);
813             if(ret==0)
814                 return 0;
815             else if(ret==1) //ok but discard packet
816                 break;
817         default:
818 resync:
819 av_log(s, AV_LOG_DEBUG, "syncing from %"PRId64"\n", pos);
820             tmp= find_any_startcode(bc, nut->last_syncpoint_pos+1);
821             if(tmp==0)
822                 return AVERROR_INVALIDDATA;
823 av_log(s, AV_LOG_DEBUG, "sync\n");
824             nut->next_startcode= tmp;
825         }
826     }
827 }
828
829 static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos_arg, int64_t pos_limit){
830     NUTContext *nut = s->priv_data;
831     AVIOContext *bc = s->pb;
832     int64_t pos, pts, back_ptr;
833 av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n", stream_index, *pos_arg, pos_limit);
834
835     pos= *pos_arg;
836     do{
837         pos= find_startcode(bc, SYNCPOINT_STARTCODE, pos)+1;
838         if(pos < 1){
839             assert(nut->next_startcode == 0);
840             av_log(s, AV_LOG_ERROR, "read_timestamp failed.\n");
841             return AV_NOPTS_VALUE;
842         }
843     }while(decode_syncpoint(nut, &pts, &back_ptr) < 0);
844     *pos_arg = pos-1;
845     assert(nut->last_syncpoint_pos == *pos_arg);
846
847     av_log(s, AV_LOG_DEBUG, "return %"PRId64" %"PRId64"\n", pts,back_ptr );
848     if     (stream_index == -1) return pts;
849     else if(stream_index == -2) return back_ptr;
850
851 assert(0);
852 }
853
854 static int read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags){
855     NUTContext *nut = s->priv_data;
856     AVStream *st= s->streams[stream_index];
857     Syncpoint dummy={.ts= pts*av_q2d(st->time_base)*AV_TIME_BASE};
858     Syncpoint nopts_sp= {.ts= AV_NOPTS_VALUE, .back_ptr= AV_NOPTS_VALUE};
859     Syncpoint *sp, *next_node[2]= {&nopts_sp, &nopts_sp};
860     int64_t pos, pos2, ts;
861     int i;
862
863     if(st->index_entries){
864         int index= av_index_search_timestamp(st, pts, flags);
865         if(index<0)
866             return -1;
867
868         pos2= st->index_entries[index].pos;
869         ts  = st->index_entries[index].timestamp;
870     }else{
871         av_tree_find(nut->syncpoints, &dummy, (void *) ff_nut_sp_pts_cmp,
872                      (void **) next_node);
873         av_log(s, AV_LOG_DEBUG, "%"PRIu64"-%"PRIu64" %"PRId64"-%"PRId64"\n", next_node[0]->pos, next_node[1]->pos,
874                                                     next_node[0]->ts , next_node[1]->ts);
875         pos= av_gen_search(s, -1, dummy.ts, next_node[0]->pos, next_node[1]->pos, next_node[1]->pos,
876                                             next_node[0]->ts , next_node[1]->ts, AVSEEK_FLAG_BACKWARD, &ts, nut_read_timestamp);
877
878         if(!(flags & AVSEEK_FLAG_BACKWARD)){
879             dummy.pos= pos+16;
880             next_node[1]= &nopts_sp;
881             av_tree_find(nut->syncpoints, &dummy, (void *) ff_nut_sp_pos_cmp,
882                          (void **) next_node);
883             pos2= av_gen_search(s, -2, dummy.pos, next_node[0]->pos     , next_node[1]->pos, next_node[1]->pos,
884                                                 next_node[0]->back_ptr, next_node[1]->back_ptr, flags, &ts, nut_read_timestamp);
885             if(pos2>=0)
886                 pos= pos2;
887             //FIXME dir but I think it does not matter
888         }
889         dummy.pos= pos;
890         sp= av_tree_find(nut->syncpoints, &dummy, (void *) ff_nut_sp_pos_cmp,
891                          NULL);
892
893         assert(sp);
894         pos2= sp->back_ptr  - 15;
895     }
896     av_log(NULL, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos2);
897     pos= find_startcode(s->pb, SYNCPOINT_STARTCODE, pos2);
898     avio_seek(s->pb, pos, SEEK_SET);
899     av_log(NULL, AV_LOG_DEBUG, "SP: %"PRId64"\n", pos);
900     if(pos2 > pos || pos2 + 15 < pos){
901         av_log(NULL, AV_LOG_ERROR, "no syncpoint at backptr pos\n");
902     }
903     for(i=0; i<s->nb_streams; i++)
904         nut->stream[i].skip_until_key_frame=1;
905
906     return 0;
907 }
908
909 static int nut_read_close(AVFormatContext *s)
910 {
911     NUTContext *nut = s->priv_data;
912     int i;
913
914     av_freep(&nut->time_base);
915     av_freep(&nut->stream);
916     ff_nut_free_sp(nut);
917     for(i = 1; i < nut->header_count; i++)
918         av_freep(&nut->header[i]);
919
920     return 0;
921 }
922
923 #if CONFIG_NUT_DEMUXER
924 AVInputFormat ff_nut_demuxer = {
925     "nut",
926     NULL_IF_CONFIG_SMALL("NUT format"),
927     sizeof(NUTContext),
928     nut_probe,
929     nut_read_header,
930     nut_read_packet,
931     nut_read_close,
932     read_seek,
933     .extensions = "nut",
934     .codec_tag = (const AVCodecTag * const []) { ff_codec_bmp_tags, ff_nut_video_tags, ff_codec_wav_tags, ff_nut_subtitle_tags, 0 },
935 };
936 #endif