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