2 * "NUT" Container Format demuxer
3 * Copyright (c) 2004-2006 Michael Niedermayer
4 * Copyright (c) 2003 Alex Beregszaszi
6 * This file is part of FFmpeg.
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.
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.
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
23 #include "libavutil/avstring.h"
24 #include "libavutil/avassert.h"
25 #include "libavutil/bswap.h"
26 #include "libavutil/dict.h"
27 #include "libavutil/intreadwrite.h"
28 #include "libavutil/mathematics.h"
29 #include "libavutil/tree.h"
30 #include "libavcodec/bytestream.h"
31 #include "avio_internal.h"
36 #define NUT_MAX_STREAMS 256 /* arbitrary sanity check value */
38 static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index,
39 int64_t *pos_arg, int64_t pos_limit);
41 static int get_str(AVIOContext *bc, char *string, unsigned int maxlen)
43 unsigned int len = ffio_read_varlen(bc);
46 avio_read(bc, string, FFMIN(len, maxlen));
47 while (len > maxlen) {
55 string[FFMIN(len, maxlen - 1)] = 0;
65 static int64_t get_s(AVIOContext *bc)
67 int64_t v = ffio_read_varlen(bc) + 1;
75 static uint64_t get_fourcc(AVIOContext *bc)
77 unsigned int len = ffio_read_varlen(bc);
84 av_log(NULL, AV_LOG_ERROR, "Unsupported fourcc length %d\n", len);
89 static int get_packetheader(NUTContext *nut, AVIOContext *bc,
90 int calculate_checksum, uint64_t startcode)
94 startcode = av_be2ne64(startcode);
95 startcode = ff_crc04C11DB7_update(0, (uint8_t*) &startcode, 8);
97 ffio_init_checksum(bc, ff_crc04C11DB7_update, startcode);
98 size = ffio_read_varlen(bc);
101 if (ffio_get_checksum(bc) && size > 4096)
104 ffio_init_checksum(bc, calculate_checksum ? ff_crc04C11DB7_update : NULL, 0);
109 static uint64_t find_any_startcode(AVIOContext *bc, int64_t pos)
114 /* Note, this may fail if the stream is not seekable, but that should
115 * not matter, as in this case we simply start where we currently are */
116 avio_seek(bc, pos, SEEK_SET);
117 while (!avio_feof(bc)) {
118 state = (state << 8) | avio_r8(bc);
119 if ((state >> 56) != 'N')
123 case STREAM_STARTCODE:
124 case SYNCPOINT_STARTCODE:
126 case INDEX_STARTCODE:
135 * Find the given startcode.
136 * @param code the startcode
137 * @param pos the start position of the search, or -1 if the current position
138 * @return the position of the startcode or -1 if not found
140 static int64_t find_startcode(AVIOContext *bc, uint64_t code, int64_t pos)
143 uint64_t startcode = find_any_startcode(bc, pos);
144 if (startcode == code)
145 return avio_tell(bc) - 8;
146 else if (startcode == 0)
152 static int nut_probe(const AVProbeData *p)
156 for (i = 0; i < p->buf_size-8; i++) {
157 if (AV_RB32(p->buf+i) != MAIN_STARTCODE>>32)
159 if (AV_RB32(p->buf+i+4) == (MAIN_STARTCODE & 0xFFFFFFFF))
160 return AVPROBE_SCORE_MAX;
165 #define GET_V(dst, check) \
167 tmp = ffio_read_varlen(bc); \
169 av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp); \
170 ret = AVERROR_INVALIDDATA; \
176 static int skip_reserved(AVIOContext *bc, int64_t pos)
178 pos -= avio_tell(bc);
180 avio_seek(bc, pos, SEEK_CUR);
181 return AVERROR_INVALIDDATA;
185 return AVERROR_INVALIDDATA;
192 static int decode_main_header(NUTContext *nut)
194 AVFormatContext *s = nut->avf;
195 AVIOContext *bc = s->pb;
196 uint64_t tmp, end, length;
197 unsigned int stream_count;
198 int i, j, count, ret;
199 int tmp_stream, tmp_mul, tmp_pts, tmp_size, tmp_res, tmp_head_idx;
201 length = get_packetheader(nut, bc, 1, MAIN_STARTCODE);
202 end = length + avio_tell(bc);
204 nut->version = ffio_read_varlen(bc);
205 if (nut->version < NUT_MIN_VERSION ||
206 nut->version > NUT_MAX_VERSION) {
207 av_log(s, AV_LOG_ERROR, "Version %d not supported.\n",
209 return AVERROR(ENOSYS);
211 if (nut->version > 3)
212 nut->minor_version = ffio_read_varlen(bc);
214 GET_V(stream_count, tmp > 0 && tmp <= NUT_MAX_STREAMS);
216 nut->max_distance = ffio_read_varlen(bc);
217 if (nut->max_distance > 65536) {
218 av_log(s, AV_LOG_DEBUG, "max_distance %d\n", nut->max_distance);
219 nut->max_distance = 65536;
222 GET_V(nut->time_base_count, tmp > 0 && tmp < INT_MAX / sizeof(AVRational) && tmp < length/2);
223 nut->time_base = av_malloc_array(nut->time_base_count, sizeof(AVRational));
225 return AVERROR(ENOMEM);
227 for (i = 0; i < nut->time_base_count; i++) {
228 GET_V(nut->time_base[i].num, tmp > 0 && tmp < (1ULL << 31));
229 GET_V(nut->time_base[i].den, tmp > 0 && tmp < (1ULL << 31));
230 if (av_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1) {
231 av_log(s, AV_LOG_ERROR, "invalid time base %d/%d\n",
232 nut->time_base[i].num,
233 nut->time_base[i].den);
234 ret = AVERROR_INVALIDDATA;
242 for (i = 0; i < 256;) {
243 int tmp_flags = ffio_read_varlen(bc);
244 int tmp_fields = ffio_read_varlen(bc);
249 tmp_mul = ffio_read_varlen(bc);
251 tmp_stream = ffio_read_varlen(bc);
253 tmp_size = ffio_read_varlen(bc);
257 tmp_res = ffio_read_varlen(bc);
261 count = ffio_read_varlen(bc);
263 count = tmp_mul - (unsigned)tmp_size;
267 tmp_head_idx = ffio_read_varlen(bc);
269 while (tmp_fields-- > 8) {
270 if (bc->eof_reached) {
271 av_log(s, AV_LOG_ERROR, "reached EOF while decoding main header\n");
272 ret = AVERROR_INVALIDDATA;
275 ffio_read_varlen(bc);
278 if (count <= 0 || count > 256 - (i <= 'N') - i) {
279 av_log(s, AV_LOG_ERROR, "illegal count %d at %d\n", count, i);
280 ret = AVERROR_INVALIDDATA;
283 if (tmp_stream >= stream_count) {
284 av_log(s, AV_LOG_ERROR, "illegal stream number %d >= %d\n",
285 tmp_stream, stream_count);
286 ret = AVERROR_INVALIDDATA;
290 for (j = 0; j < count; j++, i++) {
292 nut->frame_code[i].flags = FLAG_INVALID;
296 nut->frame_code[i].flags = tmp_flags;
297 nut->frame_code[i].pts_delta = tmp_pts;
298 nut->frame_code[i].stream_id = tmp_stream;
299 nut->frame_code[i].size_mul = tmp_mul;
300 nut->frame_code[i].size_lsb = tmp_size + j;
301 nut->frame_code[i].reserved_count = tmp_res;
302 nut->frame_code[i].header_idx = tmp_head_idx;
305 av_assert0(nut->frame_code['N'].flags == FLAG_INVALID);
307 if (end > avio_tell(bc) + 4) {
309 GET_V(nut->header_count, tmp < 128U);
311 for (i = 1; i < nut->header_count; i++) {
313 GET_V(nut->header_len[i], tmp > 0 && tmp < 256);
314 if (rem < nut->header_len[i]) {
315 av_log(s, AV_LOG_ERROR,
316 "invalid elision header %d : %d > %d\n",
317 i, nut->header_len[i], rem);
318 ret = AVERROR_INVALIDDATA;
321 rem -= nut->header_len[i];
322 hdr = av_malloc(nut->header_len[i]);
324 ret = AVERROR(ENOMEM);
327 avio_read(bc, hdr, nut->header_len[i]);
328 nut->header[i] = hdr;
330 av_assert0(nut->header_len[0] == 0);
333 // flags had been effectively introduced in version 4
334 if (nut->version > 3 && end > avio_tell(bc) + 4) {
335 nut->flags = ffio_read_varlen(bc);
338 if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
339 av_log(s, AV_LOG_ERROR, "main header checksum mismatch\n");
340 ret = AVERROR_INVALIDDATA;
344 nut->stream = av_calloc(stream_count, sizeof(StreamContext));
346 ret = AVERROR(ENOMEM);
349 for (i = 0; i < stream_count; i++)
350 avformat_new_stream(s, NULL);
354 av_freep(&nut->time_base);
355 for (i = 1; i < nut->header_count; i++) {
356 av_freep(&nut->header[i]);
358 nut->header_count = 0;
362 static int decode_stream_header(NUTContext *nut)
364 AVFormatContext *s = nut->avf;
365 AVIOContext *bc = s->pb;
367 int class, stream_id, ret;
371 end = get_packetheader(nut, bc, 1, STREAM_STARTCODE);
372 end += avio_tell(bc);
374 GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base);
375 stc = &nut->stream[stream_id];
376 st = s->streams[stream_id];
378 return AVERROR(ENOMEM);
380 class = ffio_read_varlen(bc);
381 tmp = get_fourcc(bc);
382 st->codecpar->codec_tag = tmp;
385 st->codecpar->codec_type = AVMEDIA_TYPE_VIDEO;
386 st->codecpar->codec_id = av_codec_get_id((const AVCodecTag * const []) {
389 ff_codec_movvideo_tags,
395 st->codecpar->codec_type = AVMEDIA_TYPE_AUDIO;
396 st->codecpar->codec_id = av_codec_get_id((const AVCodecTag * const []) {
399 ff_nut_audio_extra_tags,
405 st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE;
406 st->codecpar->codec_id = ff_codec_get_id(ff_nut_subtitle_tags, tmp);
409 st->codecpar->codec_type = AVMEDIA_TYPE_DATA;
410 st->codecpar->codec_id = ff_codec_get_id(ff_nut_data_tags, tmp);
413 av_log(s, AV_LOG_ERROR, "unknown stream class (%d)\n", class);
414 return AVERROR(ENOSYS);
416 if (class < 3 && st->codecpar->codec_id == AV_CODEC_ID_NONE)
417 av_log(s, AV_LOG_ERROR,
418 "Unknown codec tag '0x%04x' for stream number %d\n",
419 (unsigned int) tmp, stream_id);
421 GET_V(stc->time_base_id, tmp < nut->time_base_count);
422 GET_V(stc->msb_pts_shift, tmp < 16);
423 stc->max_pts_distance = ffio_read_varlen(bc);
424 GET_V(stc->decode_delay, tmp < 1000); // sanity limit, raise this if Moore's law is true
425 st->codecpar->video_delay = stc->decode_delay;
426 ffio_read_varlen(bc); // stream flags
428 GET_V(st->codecpar->extradata_size, tmp < (1 << 30));
429 if (st->codecpar->extradata_size) {
430 ret = ff_get_extradata(s, st->codecpar, bc,
431 st->codecpar->extradata_size);
436 if (st->codecpar->codec_type == AVMEDIA_TYPE_VIDEO) {
437 GET_V(st->codecpar->width, tmp > 0);
438 GET_V(st->codecpar->height, tmp > 0);
439 st->sample_aspect_ratio.num = ffio_read_varlen(bc);
440 st->sample_aspect_ratio.den = ffio_read_varlen(bc);
441 if ((!st->sample_aspect_ratio.num) != (!st->sample_aspect_ratio.den)) {
442 av_log(s, AV_LOG_ERROR, "invalid aspect ratio %d/%d\n",
443 st->sample_aspect_ratio.num, st->sample_aspect_ratio.den);
444 ret = AVERROR_INVALIDDATA;
447 ffio_read_varlen(bc); /* csp type */
448 } else if (st->codecpar->codec_type == AVMEDIA_TYPE_AUDIO) {
449 GET_V(st->codecpar->sample_rate, tmp > 0);
450 ffio_read_varlen(bc); // samplerate_den
451 GET_V(st->codecpar->channels, tmp > 0);
453 if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
454 av_log(s, AV_LOG_ERROR,
455 "stream header %d checksum mismatch\n", stream_id);
456 ret = AVERROR_INVALIDDATA;
459 stc->time_base = &nut->time_base[stc->time_base_id];
460 avpriv_set_pts_info(s->streams[stream_id], 63, stc->time_base->num,
461 stc->time_base->den);
464 if (st && st->codecpar) {
465 av_freep(&st->codecpar->extradata);
466 st->codecpar->extradata_size = 0;
471 static void set_disposition_bits(AVFormatContext *avf, char *value,
476 for (i = 0; ff_nut_dispositions[i].flag; ++i)
477 if (!strcmp(ff_nut_dispositions[i].str, value))
478 flag = ff_nut_dispositions[i].flag;
480 av_log(avf, AV_LOG_INFO, "unknown disposition type '%s'\n", value);
481 for (i = 0; i < avf->nb_streams; ++i)
482 if (stream_id == i || stream_id == -1)
483 avf->streams[i]->disposition |= flag;
486 static int decode_info_header(NUTContext *nut)
488 AVFormatContext *s = nut->avf;
489 AVIOContext *bc = s->pb;
490 uint64_t tmp, chapter_start, chapter_len;
491 unsigned int stream_id_plus1, count;
492 int chapter_id, i, ret = 0;
494 char name[256], str_value[1024], type_str[256];
496 int *event_flags = NULL;
497 AVChapter *chapter = NULL;
499 AVDictionary **metadata = NULL;
500 int metadata_flag = 0;
502 end = get_packetheader(nut, bc, 1, INFO_STARTCODE);
503 end += avio_tell(bc);
505 GET_V(stream_id_plus1, tmp <= s->nb_streams);
506 chapter_id = get_s(bc);
507 chapter_start = ffio_read_varlen(bc);
508 chapter_len = ffio_read_varlen(bc);
509 count = ffio_read_varlen(bc);
511 if (chapter_id && !stream_id_plus1) {
512 int64_t start = chapter_start / nut->time_base_count;
513 chapter = avpriv_new_chapter(s, chapter_id,
514 nut->time_base[chapter_start %
515 nut->time_base_count],
516 start, start + chapter_len, NULL);
518 av_log(s, AV_LOG_ERROR, "Could not create chapter.\n");
519 return AVERROR(ENOMEM);
521 metadata = &chapter->metadata;
522 } else if (stream_id_plus1) {
523 st = s->streams[stream_id_plus1 - 1];
524 metadata = &st->metadata;
525 event_flags = &st->event_flags;
526 metadata_flag = AVSTREAM_EVENT_FLAG_METADATA_UPDATED;
528 metadata = &s->metadata;
529 event_flags = &s->event_flags;
530 metadata_flag = AVFMT_EVENT_FLAG_METADATA_UPDATED;
533 for (i = 0; i < count; i++) {
534 ret = get_str(bc, name, sizeof(name));
536 av_log(s, AV_LOG_ERROR, "get_str failed while decoding info header\n");
544 ret = get_str(bc, str_value, sizeof(str_value));
545 } else if (value == -2) {
546 ret = get_str(bc, type_str, sizeof(type_str));
548 av_log(s, AV_LOG_ERROR, "get_str failed while decoding info header\n");
552 ret = get_str(bc, str_value, sizeof(str_value));
553 } else if (value == -3) {
556 } else if (value == -4) {
558 value = ffio_read_varlen(bc);
559 } else if (value < -4) {
567 av_log(s, AV_LOG_ERROR, "get_str failed while decoding info header\n");
571 if (stream_id_plus1 > s->nb_streams) {
572 av_log(s, AV_LOG_WARNING,
573 "invalid stream id %d for info packet\n",
578 if (!strcmp(type, "UTF-8")) {
579 if (chapter_id == 0 && !strcmp(name, "Disposition")) {
580 set_disposition_bits(s, str_value, stream_id_plus1 - 1);
584 if (stream_id_plus1 && !strcmp(name, "r_frame_rate")) {
585 sscanf(str_value, "%d/%d", &st->r_frame_rate.num, &st->r_frame_rate.den);
586 if (st->r_frame_rate.num >= 1000LL*st->r_frame_rate.den ||
587 st->r_frame_rate.num < 0 || st->r_frame_rate.den < 0)
588 st->r_frame_rate.num = st->r_frame_rate.den = 0;
592 if (metadata && av_strcasecmp(name, "Uses") &&
593 av_strcasecmp(name, "Depends") && av_strcasecmp(name, "Replaces")) {
595 *event_flags |= metadata_flag;
596 av_dict_set(metadata, name, str_value, 0);
601 if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
602 av_log(s, AV_LOG_ERROR, "info header checksum mismatch\n");
603 return AVERROR_INVALIDDATA;
606 return FFMIN(ret, 0);
609 static int decode_syncpoint(NUTContext *nut, int64_t *ts, int64_t *back_ptr)
611 AVFormatContext *s = nut->avf;
612 AVIOContext *bc = s->pb;
617 nut->last_syncpoint_pos = avio_tell(bc) - 8;
619 end = get_packetheader(nut, bc, 1, SYNCPOINT_STARTCODE);
620 end += avio_tell(bc);
622 tmp = ffio_read_varlen(bc);
623 *back_ptr = nut->last_syncpoint_pos - 16 * ffio_read_varlen(bc);
625 return AVERROR_INVALIDDATA;
627 ff_nut_reset_ts(nut, nut->time_base[tmp % nut->time_base_count],
628 tmp / nut->time_base_count);
630 if (nut->flags & NUT_BROADCAST) {
631 tmp = ffio_read_varlen(bc);
632 av_log(s, AV_LOG_VERBOSE, "Syncpoint wallclock %"PRId64"\n",
633 av_rescale_q(tmp / nut->time_base_count,
634 nut->time_base[tmp % nut->time_base_count],
638 if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
639 av_log(s, AV_LOG_ERROR, "sync point checksum mismatch\n");
640 return AVERROR_INVALIDDATA;
643 *ts = tmp / nut->time_base_count *
644 av_q2d(nut->time_base[tmp % nut->time_base_count]) * AV_TIME_BASE;
646 if ((ret = ff_nut_add_sp(nut, nut->last_syncpoint_pos, *back_ptr, *ts)) < 0)
652 //FIXME calculate exactly, this is just a good approximation.
653 static int64_t find_duration(NUTContext *nut, int64_t filesize)
655 AVFormatContext *s = nut->avf;
656 int64_t duration = 0;
658 ff_find_last_ts(s, -1, &duration, NULL, nut_read_timestamp);
661 s->duration_estimation_method = AVFMT_DURATION_FROM_PTS;
665 static int find_and_decode_index(NUTContext *nut)
667 AVFormatContext *s = nut->avf;
668 AVIOContext *bc = s->pb;
670 int i, j, syncpoint_count;
671 int64_t filesize = avio_size(bc);
672 int64_t *syncpoints = NULL;
674 int8_t *has_keyframe = NULL;
675 int ret = AVERROR_INVALIDDATA;
680 avio_seek(bc, filesize - 12, SEEK_SET);
681 avio_seek(bc, filesize - avio_rb64(bc), SEEK_SET);
682 if (avio_rb64(bc) != INDEX_STARTCODE) {
683 av_log(s, AV_LOG_WARNING, "no index at the end\n");
686 s->duration = find_duration(nut, filesize);
690 end = get_packetheader(nut, bc, 1, INDEX_STARTCODE);
691 end += avio_tell(bc);
693 max_pts = ffio_read_varlen(bc);
694 s->duration = av_rescale_q(max_pts / nut->time_base_count,
695 nut->time_base[max_pts % nut->time_base_count],
697 s->duration_estimation_method = AVFMT_DURATION_FROM_PTS;
699 GET_V(syncpoint_count, tmp < INT_MAX / 8 && tmp > 0);
700 syncpoints = av_malloc_array(syncpoint_count, sizeof(int64_t));
701 has_keyframe = av_malloc_array(syncpoint_count + 1, sizeof(int8_t));
702 if (!syncpoints || !has_keyframe) {
703 ret = AVERROR(ENOMEM);
706 for (i = 0; i < syncpoint_count; i++) {
707 syncpoints[i] = ffio_read_varlen(bc);
708 if (syncpoints[i] <= 0)
711 syncpoints[i] += syncpoints[i - 1];
714 for (i = 0; i < s->nb_streams; i++) {
715 int64_t last_pts = -1;
716 for (j = 0; j < syncpoint_count;) {
717 uint64_t x = ffio_read_varlen(bc);
724 if (n + x >= syncpoint_count + 1) {
725 av_log(s, AV_LOG_ERROR, "index overflow A %d + %"PRIu64" >= %d\n", n, x, syncpoint_count + 1);
729 has_keyframe[n++] = flag;
730 has_keyframe[n++] = !flag;
733 av_log(s, AV_LOG_ERROR, "index: x %"PRIu64" is invalid\n", x);
737 if (n >= syncpoint_count + 1) {
738 av_log(s, AV_LOG_ERROR, "index overflow B\n");
741 has_keyframe[n++] = x & 1;
745 if (has_keyframe[0]) {
746 av_log(s, AV_LOG_ERROR, "keyframe before first syncpoint in index\n");
749 av_assert0(n <= syncpoint_count + 1);
750 for (; j < n && j < syncpoint_count; j++) {
751 if (has_keyframe[j]) {
752 uint64_t B, A = ffio_read_varlen(bc);
754 A = ffio_read_varlen(bc);
755 B = ffio_read_varlen(bc);
756 // eor_pts[j][i] = last_pts + A + B
759 av_add_index_entry(s->streams[i], 16 * syncpoints[j - 1],
760 last_pts + A, 0, 0, AVINDEX_KEYFRAME);
767 if (skip_reserved(bc, end) || ffio_get_checksum(bc)) {
768 av_log(s, AV_LOG_ERROR, "index checksum mismatch\n");
775 av_free(has_keyframe);
779 static int nut_read_close(AVFormatContext *s)
781 NUTContext *nut = s->priv_data;
784 av_freep(&nut->time_base);
785 av_freep(&nut->stream);
787 for (i = 1; i < nut->header_count; i++)
788 av_freep(&nut->header[i]);
793 static int nut_read_header(AVFormatContext *s)
795 NUTContext *nut = s->priv_data;
796 AVIOContext *bc = s->pb;
798 int initialized_stream_count;
805 pos = find_startcode(bc, MAIN_STARTCODE, pos) + 1;
807 av_log(s, AV_LOG_ERROR, "No main startcode found.\n");
810 } while (decode_main_header(nut) < 0);
814 for (initialized_stream_count = 0; initialized_stream_count < s->nb_streams;) {
815 pos = find_startcode(bc, STREAM_STARTCODE, pos) + 1;
817 av_log(s, AV_LOG_ERROR, "Not all stream headers found.\n");
820 if (decode_stream_header(nut) >= 0)
821 initialized_stream_count++;
827 uint64_t startcode = find_any_startcode(bc, pos);
830 if (startcode == 0) {
831 av_log(s, AV_LOG_ERROR, "EOF before video frames\n");
833 } else if (startcode == SYNCPOINT_STARTCODE) {
834 nut->next_startcode = startcode;
836 } else if (startcode != INFO_STARTCODE) {
840 decode_info_header(nut);
843 s->internal->data_offset = pos - 8;
845 if (bc->seekable & AVIO_SEEKABLE_NORMAL) {
846 int64_t orig_pos = avio_tell(bc);
847 find_and_decode_index(nut);
848 avio_seek(bc, orig_pos, SEEK_SET);
850 av_assert0(nut->next_startcode == SYNCPOINT_STARTCODE);
852 ff_metadata_conv_ctx(s, NULL, ff_nut_metadata_conv);
859 return AVERROR_INVALIDDATA;
862 static int read_sm_data(AVFormatContext *s, AVIOContext *bc, AVPacket *pkt, int is_meta, int64_t maxpos)
864 int count = ffio_read_varlen(bc);
868 int64_t channel_layout = 0;
874 for (i=0; i<count; i++) {
875 uint8_t name[256], str_value[256], type_str[256];
877 if (avio_tell(bc) >= maxpos)
878 return AVERROR_INVALIDDATA;
879 ret = get_str(bc, name, sizeof(name));
881 av_log(s, AV_LOG_ERROR, "get_str failed while reading sm data\n");
887 ret = get_str(bc, str_value, sizeof(str_value));
889 av_log(s, AV_LOG_ERROR, "get_str failed while reading sm data\n");
892 av_log(s, AV_LOG_WARNING, "Unknown string %s / %s\n", name, str_value);
893 } else if (value == -2) {
895 int64_t v64, value_len;
897 ret = get_str(bc, type_str, sizeof(type_str));
899 av_log(s, AV_LOG_ERROR, "get_str failed while reading sm data\n");
902 value_len = ffio_read_varlen(bc);
903 if (value_len < 0 || value_len >= maxpos - avio_tell(bc))
904 return AVERROR_INVALIDDATA;
905 if (!strcmp(name, "Palette")) {
906 dst = av_packet_new_side_data(pkt, AV_PKT_DATA_PALETTE, value_len);
907 } else if (!strcmp(name, "Extradata")) {
908 dst = av_packet_new_side_data(pkt, AV_PKT_DATA_NEW_EXTRADATA, value_len);
909 } else if (sscanf(name, "CodecSpecificSide%"SCNd64"", &v64) == 1) {
910 dst = av_packet_new_side_data(pkt, AV_PKT_DATA_MATROSKA_BLOCKADDITIONAL, value_len + 8);
912 return AVERROR(ENOMEM);
915 } else if (!strcmp(name, "ChannelLayout") && value_len == 8) {
916 channel_layout = avio_rl64(bc);
919 av_log(s, AV_LOG_WARNING, "Unknown data %s / %s\n", name, type_str);
920 avio_skip(bc, value_len);
924 return AVERROR(ENOMEM);
925 avio_read(bc, dst, value_len);
926 } else if (value == -3) {
928 } else if (value == -4) {
929 value = ffio_read_varlen(bc);
930 } else if (value < -4) {
933 if (!strcmp(name, "SkipStart")) {
935 } else if (!strcmp(name, "SkipEnd")) {
937 } else if (!strcmp(name, "Channels")) {
939 } else if (!strcmp(name, "SampleRate")) {
941 } else if (!strcmp(name, "Width")) {
943 } else if (!strcmp(name, "Height")) {
946 av_log(s, AV_LOG_WARNING, "Unknown integer %s\n", name);
951 if (channels || channel_layout || sample_rate || width || height) {
952 uint8_t *dst = av_packet_new_side_data(pkt, AV_PKT_DATA_PARAM_CHANGE, 28);
954 return AVERROR(ENOMEM);
955 bytestream_put_le32(&dst,
956 AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_COUNT*(!!channels) +
957 AV_SIDE_DATA_PARAM_CHANGE_CHANNEL_LAYOUT*(!!channel_layout) +
958 AV_SIDE_DATA_PARAM_CHANGE_SAMPLE_RATE*(!!sample_rate) +
959 AV_SIDE_DATA_PARAM_CHANGE_DIMENSIONS*(!!(width|height))
962 bytestream_put_le32(&dst, channels);
964 bytestream_put_le64(&dst, channel_layout);
966 bytestream_put_le32(&dst, sample_rate);
967 if (width || height){
968 bytestream_put_le32(&dst, width);
969 bytestream_put_le32(&dst, height);
973 if (skip_start || skip_end) {
974 uint8_t *dst = av_packet_new_side_data(pkt, AV_PKT_DATA_SKIP_SAMPLES, 10);
976 return AVERROR(ENOMEM);
977 AV_WL32(dst, skip_start);
978 AV_WL32(dst+4, skip_end);
981 if (avio_tell(bc) >= maxpos)
982 return AVERROR_INVALIDDATA;
987 static int decode_frame_header(NUTContext *nut, int64_t *pts, int *stream_id,
988 uint8_t *header_idx, int frame_code)
990 AVFormatContext *s = nut->avf;
991 AVIOContext *bc = s->pb;
993 int size, flags, size_mul, pts_delta, i, reserved_count, ret;
996 if (!(nut->flags & NUT_PIPE) &&
997 avio_tell(bc) > nut->last_syncpoint_pos + nut->max_distance) {
998 av_log(s, AV_LOG_ERROR,
999 "Last frame must have been damaged %"PRId64" > %"PRId64" + %d\n",
1000 avio_tell(bc), nut->last_syncpoint_pos, nut->max_distance);
1001 return AVERROR_INVALIDDATA;
1004 flags = nut->frame_code[frame_code].flags;
1005 size_mul = nut->frame_code[frame_code].size_mul;
1006 size = nut->frame_code[frame_code].size_lsb;
1007 *stream_id = nut->frame_code[frame_code].stream_id;
1008 pts_delta = nut->frame_code[frame_code].pts_delta;
1009 reserved_count = nut->frame_code[frame_code].reserved_count;
1010 *header_idx = nut->frame_code[frame_code].header_idx;
1012 if (flags & FLAG_INVALID)
1013 return AVERROR_INVALIDDATA;
1014 if (flags & FLAG_CODED)
1015 flags ^= ffio_read_varlen(bc);
1016 if (flags & FLAG_STREAM_ID) {
1017 GET_V(*stream_id, tmp < s->nb_streams);
1019 stc = &nut->stream[*stream_id];
1020 if (flags & FLAG_CODED_PTS) {
1021 int64_t coded_pts = ffio_read_varlen(bc);
1022 // FIXME check last_pts validity?
1023 if (coded_pts < (1LL << stc->msb_pts_shift)) {
1024 *pts = ff_lsb2full(stc, coded_pts);
1026 *pts = coded_pts - (1LL << stc->msb_pts_shift);
1028 *pts = stc->last_pts + pts_delta;
1029 if (flags & FLAG_SIZE_MSB)
1030 size += size_mul * ffio_read_varlen(bc);
1031 if (flags & FLAG_MATCH_TIME)
1033 if (flags & FLAG_HEADER_IDX)
1034 *header_idx = ffio_read_varlen(bc);
1035 if (flags & FLAG_RESERVED)
1036 reserved_count = ffio_read_varlen(bc);
1037 for (i = 0; i < reserved_count; i++) {
1038 if (bc->eof_reached) {
1039 av_log(s, AV_LOG_ERROR, "reached EOF while decoding frame header\n");
1040 return AVERROR_INVALIDDATA;
1042 ffio_read_varlen(bc);
1045 if (*header_idx >= (unsigned)nut->header_count) {
1046 av_log(s, AV_LOG_ERROR, "header_idx invalid\n");
1047 return AVERROR_INVALIDDATA;
1051 size -= nut->header_len[*header_idx];
1053 if (flags & FLAG_CHECKSUM) {
1054 avio_rb32(bc); // FIXME check this
1055 } else if (!(nut->flags & NUT_PIPE) &&
1056 size > 2 * nut->max_distance ||
1057 FFABS(stc->last_pts - *pts) > stc->max_pts_distance) {
1058 av_log(s, AV_LOG_ERROR, "frame size > 2max_distance and no checksum\n");
1059 return AVERROR_INVALIDDATA;
1062 stc->last_pts = *pts;
1063 stc->last_flags = flags;
1070 static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code)
1072 AVFormatContext *s = nut->avf;
1073 AVIOContext *bc = s->pb;
1074 int size, stream_id, discard, ret;
1075 int64_t pts, last_IP_pts;
1079 size = decode_frame_header(nut, &pts, &stream_id, &header_idx, frame_code);
1083 stc = &nut->stream[stream_id];
1085 if (stc->last_flags & FLAG_KEY)
1086 stc->skip_until_key_frame = 0;
1088 discard = s->streams[stream_id]->discard;
1089 last_IP_pts = s->streams[stream_id]->last_IP_pts;
1090 if ((discard >= AVDISCARD_NONKEY && !(stc->last_flags & FLAG_KEY)) ||
1091 (discard >= AVDISCARD_BIDIR && last_IP_pts != AV_NOPTS_VALUE &&
1092 last_IP_pts > pts) ||
1093 discard >= AVDISCARD_ALL ||
1094 stc->skip_until_key_frame) {
1095 avio_skip(bc, size);
1099 ret = av_new_packet(pkt, size + nut->header_len[header_idx]);
1102 if (nut->header[header_idx])
1103 memcpy(pkt->data, nut->header[header_idx], nut->header_len[header_idx]);
1104 pkt->pos = avio_tell(bc); // FIXME
1105 if (stc->last_flags & FLAG_SM_DATA) {
1107 if (read_sm_data(s, bc, pkt, 0, pkt->pos + size) < 0) {
1108 ret = AVERROR_INVALIDDATA;
1111 if (read_sm_data(s, bc, pkt, 1, pkt->pos + size) < 0) {
1112 ret = AVERROR_INVALIDDATA;
1115 sm_size = avio_tell(bc) - pkt->pos;
1117 pkt->size -= sm_size;
1120 ret = avio_read(bc, pkt->data + nut->header_len[header_idx], size);
1125 av_shrink_packet(pkt, nut->header_len[header_idx] + ret);
1127 pkt->stream_index = stream_id;
1128 if (stc->last_flags & FLAG_KEY)
1129 pkt->flags |= AV_PKT_FLAG_KEY;
1134 av_packet_unref(pkt);
1138 static int nut_read_packet(AVFormatContext *s, AVPacket *pkt)
1140 NUTContext *nut = s->priv_data;
1141 AVIOContext *bc = s->pb;
1142 int i, frame_code = 0, ret, skip;
1143 int64_t ts, back_ptr;
1146 int64_t pos = avio_tell(bc);
1147 uint64_t tmp = nut->next_startcode;
1148 nut->next_startcode = 0;
1153 frame_code = avio_r8(bc);
1156 if (frame_code == 'N') {
1158 for (i = 1; i < 8; i++)
1159 tmp = (tmp << 8) + avio_r8(bc);
1163 case MAIN_STARTCODE:
1164 case STREAM_STARTCODE:
1165 case INDEX_STARTCODE:
1166 skip = get_packetheader(nut, bc, 0, tmp);
1167 avio_skip(bc, skip);
1169 case INFO_STARTCODE:
1170 if (decode_info_header(nut) < 0)
1173 case SYNCPOINT_STARTCODE:
1174 if (decode_syncpoint(nut, &ts, &back_ptr) < 0)
1176 frame_code = avio_r8(bc);
1178 ret = decode_frame(nut, pkt, frame_code);
1181 else if (ret == 1) // OK but discard packet
1185 av_log(s, AV_LOG_DEBUG, "syncing from %"PRId64"\n", pos);
1186 tmp = find_any_startcode(bc, FFMAX(nut->last_syncpoint_pos, nut->last_resync_pos) + 1);
1187 nut->last_resync_pos = avio_tell(bc);
1189 return AVERROR_INVALIDDATA;
1190 av_log(s, AV_LOG_DEBUG, "sync\n");
1191 nut->next_startcode = tmp;
1196 static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index,
1197 int64_t *pos_arg, int64_t pos_limit)
1199 NUTContext *nut = s->priv_data;
1200 AVIOContext *bc = s->pb;
1201 int64_t pos, pts, back_ptr;
1202 av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n",
1203 stream_index, *pos_arg, pos_limit);
1207 pos = find_startcode(bc, SYNCPOINT_STARTCODE, pos) + 1;
1209 av_log(s, AV_LOG_ERROR, "read_timestamp failed.\n");
1210 return AV_NOPTS_VALUE;
1212 } while (decode_syncpoint(nut, &pts, &back_ptr) < 0);
1214 av_assert0(nut->last_syncpoint_pos == *pos_arg);
1216 av_log(s, AV_LOG_DEBUG, "return %"PRId64" %"PRId64"\n", pts, back_ptr);
1217 if (stream_index == -2)
1219 av_assert0(stream_index == -1);
1223 static int read_seek(AVFormatContext *s, int stream_index,
1224 int64_t pts, int flags)
1226 NUTContext *nut = s->priv_data;
1227 AVStream *st = s->streams[stream_index];
1228 Syncpoint dummy = { .ts = pts * av_q2d(st->time_base) * AV_TIME_BASE };
1229 Syncpoint nopts_sp = { .ts = AV_NOPTS_VALUE, .back_ptr = AV_NOPTS_VALUE };
1230 Syncpoint *sp, *next_node[2] = { &nopts_sp, &nopts_sp };
1231 int64_t pos, pos2, ts;
1234 if (nut->flags & NUT_PIPE) {
1235 return AVERROR(ENOSYS);
1238 if (st->internal->index_entries) {
1239 int index = av_index_search_timestamp(st, pts, flags);
1241 index = av_index_search_timestamp(st, pts, flags ^ AVSEEK_FLAG_BACKWARD);
1245 pos2 = st->internal->index_entries[index].pos;
1246 ts = st->internal->index_entries[index].timestamp;
1248 av_tree_find(nut->syncpoints, &dummy, ff_nut_sp_pts_cmp,
1249 (void **) next_node);
1250 av_log(s, AV_LOG_DEBUG, "%"PRIu64"-%"PRIu64" %"PRId64"-%"PRId64"\n",
1251 next_node[0]->pos, next_node[1]->pos, next_node[0]->ts,
1253 pos = ff_gen_search(s, -1, dummy.ts, next_node[0]->pos,
1254 next_node[1]->pos, next_node[1]->pos,
1255 next_node[0]->ts, next_node[1]->ts,
1256 AVSEEK_FLAG_BACKWARD, &ts, nut_read_timestamp);
1260 if (!(flags & AVSEEK_FLAG_BACKWARD)) {
1261 dummy.pos = pos + 16;
1262 next_node[1] = &nopts_sp;
1263 av_tree_find(nut->syncpoints, &dummy, ff_nut_sp_pos_cmp,
1264 (void **) next_node);
1265 pos2 = ff_gen_search(s, -2, dummy.pos, next_node[0]->pos,
1266 next_node[1]->pos, next_node[1]->pos,
1267 next_node[0]->back_ptr, next_node[1]->back_ptr,
1268 flags, &ts, nut_read_timestamp);
1271 // FIXME dir but I think it does not matter
1274 sp = av_tree_find(nut->syncpoints, &dummy, ff_nut_sp_pos_cmp,
1278 pos2 = sp->back_ptr - 15;
1280 av_log(s, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", pos2);
1281 pos = find_startcode(s->pb, SYNCPOINT_STARTCODE, pos2);
1282 avio_seek(s->pb, pos, SEEK_SET);
1283 nut->last_syncpoint_pos = pos;
1284 av_log(s, AV_LOG_DEBUG, "SP: %"PRId64"\n", pos);
1285 if (pos2 > pos || pos2 + 15 < pos)
1286 av_log(s, AV_LOG_ERROR, "no syncpoint at backptr pos\n");
1287 for (i = 0; i < s->nb_streams; i++)
1288 nut->stream[i].skip_until_key_frame = 1;
1290 nut->last_resync_pos = 0;
1295 AVInputFormat ff_nut_demuxer = {
1297 .long_name = NULL_IF_CONFIG_SMALL("NUT"),
1298 .flags = AVFMT_SEEK_TO_PTS,
1299 .priv_data_size = sizeof(NUTContext),
1300 .read_probe = nut_probe,
1301 .read_header = nut_read_header,
1302 .read_packet = nut_read_packet,
1303 .read_close = nut_read_close,
1304 .read_seek = read_seek,
1305 .extensions = "nut",
1306 .codec_tag = ff_nut_codec_tags,