Mercurial > libavformat.hg
annotate nutdec.c @ 1500:2ac9e4f39a67 libavformat
index less seeking in O(log n) time
| author | michael |
|---|---|
| date | Tue, 14 Nov 2006 13:19:51 +0000 |
| parents | 9000f9cdac49 |
| children | 1d17ea4b6e94 |
| rev | line source |
|---|---|
| 1477 | 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 | |
| 1500 | 24 #include "tree.h" |
| 1477 | 25 #include "nut.h" |
| 26 | |
| 27 #undef NDEBUG | |
| 28 #include <assert.h> | |
| 29 | |
| 30 static uint64_t get_v(ByteIOContext *bc/*, maxstuffing*/){ | |
| 31 uint64_t val = 0; | |
| 32 | |
| 33 for(;;) | |
| 34 { | |
| 35 int tmp = get_byte(bc); | |
| 36 | |
| 37 // if(tmp=0x80){ | |
| 38 // if(!maxstuffing-- || val) | |
| 39 // return -1; | |
| 40 // } | |
| 41 | |
| 42 if (tmp&0x80) | |
| 43 val= (val<<7) + tmp - 0x80; | |
| 44 else{ | |
| 45 return (val<<7) + tmp; | |
| 46 } | |
| 47 } | |
| 48 return -1; | |
| 49 } | |
| 50 | |
| 51 static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){ | |
| 52 unsigned int len= get_v(bc); | |
| 53 | |
| 54 if(len && maxlen) | |
| 55 get_buffer(bc, string, FFMIN(len, maxlen)); | |
| 56 while(len > maxlen){ | |
| 57 get_byte(bc); | |
| 58 len--; | |
| 59 } | |
| 60 | |
| 61 if(maxlen) | |
| 62 string[FFMIN(len, maxlen-1)]= 0; | |
| 63 | |
| 64 if(maxlen == len) | |
| 65 return -1; | |
| 66 else | |
| 67 return 0; | |
| 68 } | |
| 69 | |
| 70 static int64_t get_s(ByteIOContext *bc){ | |
| 71 int64_t v = get_v(bc) + 1; | |
| 72 | |
| 73 if (v&1) return -(v>>1); | |
| 74 else return (v>>1); | |
| 75 } | |
| 76 | |
| 77 static uint64_t get_fourcc(ByteIOContext *bc){ | |
| 78 unsigned int len= get_v(bc); | |
| 79 | |
| 80 if (len==2) return get_le16(bc); | |
| 81 else if(len==4) return get_le32(bc); | |
| 82 else return -1; | |
| 83 } | |
| 84 | |
| 85 #ifdef TRACE | |
| 86 static inline uint64_t get_v_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
| 87 uint64_t v= get_v(bc); | |
| 88 | |
| 89 printf("get_v %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); | |
| 90 return v; | |
| 91 } | |
| 92 | |
| 93 static inline int64_t get_s_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
| 94 int64_t v= get_s(bc); | |
| 95 | |
| 96 printf("get_s %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); | |
| 97 return v; | |
| 98 } | |
| 99 | |
| 100 static inline uint64_t get_vb_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
| 101 uint64_t v= get_vb(bc); | |
| 102 | |
| 103 printf("get_vb %5"PRId64" / %"PRIX64" in %s %s:%d\n", v, v, file, func, line); | |
| 104 return v; | |
| 105 } | |
| 106 #define get_v(bc) get_v_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
| 107 #define get_s(bc) get_s_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
| 108 #define get_vb(bc) get_vb_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
| 109 #endif | |
| 110 | |
| 111 static int get_packetheader(NUTContext *nut, ByteIOContext *bc, int calculate_checksum) | |
| 112 { | |
| 113 int64_t start, size; | |
| 114 // start= url_ftell(bc) - 8; | |
| 115 | |
| 116 size= get_v(bc); | |
| 117 | |
| 1485 | 118 init_checksum(bc, calculate_checksum ? av_crc04C11DB7_update : NULL, 0); |
| 1477 | 119 |
| 120 // nut->packet_start[2] = start; | |
| 121 // nut->written_packet_size= size; | |
| 122 | |
| 123 return size; | |
| 124 } | |
| 125 | |
| 126 static uint64_t find_any_startcode(ByteIOContext *bc, int64_t pos){ | |
| 127 uint64_t state=0; | |
| 128 | |
| 129 if(pos >= 0) | |
| 130 url_fseek(bc, pos, SEEK_SET); //note, this may fail if the stream isnt seekable, but that shouldnt matter, as in this case we simply start where we are currently | |
| 131 | |
| 132 while(!url_feof(bc)){ | |
| 133 state= (state<<8) | get_byte(bc); | |
| 134 if((state>>56) != 'N') | |
| 135 continue; | |
| 136 switch(state){ | |
| 137 case MAIN_STARTCODE: | |
| 138 case STREAM_STARTCODE: | |
| 139 case SYNCPOINT_STARTCODE: | |
| 140 case INFO_STARTCODE: | |
| 141 case INDEX_STARTCODE: | |
| 142 return state; | |
| 143 } | |
| 144 } | |
| 145 | |
| 146 return 0; | |
| 147 } | |
| 148 | |
| 149 /** | |
| 150 * find the given startcode. | |
| 151 * @param code the startcode | |
| 152 * @param pos the start position of the search, or -1 if the current position | |
| 153 * @returns the position of the startcode or -1 if not found | |
| 154 */ | |
| 155 static int64_t find_startcode(ByteIOContext *bc, uint64_t code, int64_t pos){ | |
| 156 for(;;){ | |
| 157 uint64_t startcode= find_any_startcode(bc, pos); | |
| 158 if(startcode == code) | |
| 159 return url_ftell(bc) - 8; | |
| 160 else if(startcode == 0) | |
| 161 return -1; | |
| 162 pos=-1; | |
| 163 } | |
| 164 } | |
| 165 | |
| 166 static int64_t lsb2full(StreamContext *stream, int64_t lsb){ | |
| 167 int64_t mask = (1<<stream->msb_pts_shift)-1; | |
| 168 int64_t delta= stream->last_pts - mask/2; | |
| 169 return ((lsb - delta)&mask) + delta; | |
| 170 } | |
| 171 | |
| 172 static int nut_probe(AVProbeData *p){ | |
| 173 int i; | |
| 174 uint64_t code= 0; | |
| 175 | |
| 176 for (i = 0; i < p->buf_size; i++) { | |
| 177 code = (code << 8) | p->buf[i]; | |
| 178 if (code == MAIN_STARTCODE) | |
| 179 return AVPROBE_SCORE_MAX; | |
| 180 } | |
| 181 return 0; | |
| 182 } | |
| 183 | |
| 184 #define GET_V(dst, check) \ | |
| 185 tmp= get_v(bc);\ | |
| 186 if(!(check)){\ | |
| 187 av_log(s, AV_LOG_ERROR, "Error " #dst " is (%"PRId64")\n", tmp);\ | |
| 188 return -1;\ | |
| 189 }\ | |
| 190 dst= tmp; | |
| 191 | |
| 192 static int skip_reserved(ByteIOContext *bc, int64_t pos){ | |
| 193 pos -= url_ftell(bc); | |
| 1484 | 194 av_log(NULL, AV_LOG_ERROR, "skip %d\n", (int)pos); |
| 1477 | 195 if(pos<0){ |
| 196 url_fseek(bc, pos, SEEK_CUR); | |
| 197 return -1; | |
| 198 }else{ | |
| 199 while(pos--) | |
| 200 get_byte(bc); | |
| 201 return 0; | |
| 202 } | |
| 203 } | |
| 204 | |
| 205 static int decode_main_header(NUTContext *nut){ | |
| 206 AVFormatContext *s= nut->avf; | |
| 207 ByteIOContext *bc = &s->pb; | |
| 208 uint64_t tmp, end; | |
| 209 unsigned int stream_count; | |
| 210 int i, j, tmp_stream, tmp_mul, tmp_pts, tmp_size, count, tmp_res; | |
| 211 | |
| 212 end= get_packetheader(nut, bc, 1); | |
| 1485 | 213 end += url_ftell(bc); |
| 1477 | 214 |
| 215 GET_V(tmp , tmp >=2 && tmp <= 3) | |
| 216 GET_V(stream_count , tmp > 0 && tmp <=MAX_STREAMS) | |
| 217 | |
| 218 nut->max_distance = get_v(bc); | |
| 219 if(nut->max_distance > 65536){ | |
| 220 av_log(s, AV_LOG_DEBUG, "max_distance %d\n", nut->max_distance); | |
| 221 nut->max_distance= 65536; | |
| 222 } | |
| 223 | |
| 224 GET_V(nut->time_base_count, tmp>0 && tmp<INT_MAX / sizeof(AVRational)) | |
| 225 nut->time_base= av_malloc(nut->time_base_count * sizeof(AVRational)); | |
| 226 | |
| 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(ff_gcd(nut->time_base[i].num, nut->time_base[i].den) != 1){ | |
| 231 av_log(s, AV_LOG_ERROR, "time base invalid\n"); | |
| 232 return -1; | |
| 233 } | |
| 234 } | |
| 235 tmp_pts=0; | |
| 236 tmp_mul=1; | |
| 237 tmp_stream=0; | |
| 238 for(i=0; i<256;){ | |
| 239 int tmp_flags = get_v(bc); | |
| 240 int tmp_fields= get_v(bc); | |
| 241 if(tmp_fields>0) tmp_pts = get_s(bc); | |
| 242 if(tmp_fields>1) tmp_mul = get_v(bc); | |
| 243 if(tmp_fields>2) tmp_stream= get_v(bc); | |
| 244 if(tmp_fields>3) tmp_size = get_v(bc); | |
| 245 else tmp_size = 0; | |
| 246 if(tmp_fields>4) tmp_res = get_v(bc); | |
| 247 else tmp_res = 0; | |
| 248 if(tmp_fields>5) count = get_v(bc); | |
| 249 else count = tmp_mul - tmp_size; | |
| 250 | |
| 251 while(tmp_fields-- > 6) | |
| 252 get_v(bc); | |
| 253 | |
| 254 if(count == 0 || i+count > 256){ | |
| 255 av_log(s, AV_LOG_ERROR, "illegal count %d at %d\n", count, i); | |
| 256 return -1; | |
| 257 } | |
| 258 if(tmp_stream >= stream_count){ | |
| 259 av_log(s, AV_LOG_ERROR, "illegal stream number\n"); | |
| 260 return -1; | |
| 261 } | |
| 262 | |
| 263 for(j=0; j<count; j++,i++){ | |
| 264 if (i == 'N') { | |
| 265 nut->frame_code[i].flags= FLAG_INVALID; | |
| 266 j--; | |
| 267 continue; | |
| 268 } | |
| 269 nut->frame_code[i].flags = tmp_flags ; | |
| 270 nut->frame_code[i].pts_delta = tmp_pts ; | |
| 271 nut->frame_code[i].stream_id = tmp_stream; | |
| 272 nut->frame_code[i].size_mul = tmp_mul ; | |
| 273 nut->frame_code[i].size_lsb = tmp_size+j; | |
| 274 nut->frame_code[i].reserved_count = tmp_res ; | |
| 275 } | |
| 276 } | |
| 277 assert(nut->frame_code['N'].flags == FLAG_INVALID); | |
| 278 | |
| 1485 | 279 if(skip_reserved(bc, end) || get_checksum(bc)){ |
| 1477 | 280 av_log(s, AV_LOG_ERROR, "Main header checksum mismatch\n"); |
| 281 return -1; | |
| 282 } | |
| 283 | |
| 284 nut->stream = av_mallocz(sizeof(StreamContext)*stream_count); | |
| 285 for(i=0; i<stream_count; i++){ | |
| 286 av_new_stream(s, i); | |
| 287 } | |
| 288 | |
| 289 return 0; | |
| 290 } | |
| 291 | |
| 292 static int decode_stream_header(NUTContext *nut){ | |
| 293 AVFormatContext *s= nut->avf; | |
| 294 ByteIOContext *bc = &s->pb; | |
| 295 StreamContext *stc; | |
| 296 int class, nom, denom, stream_id; | |
| 297 uint64_t tmp, end; | |
| 298 AVStream *st; | |
| 299 | |
| 300 end= get_packetheader(nut, bc, 1); | |
| 1485 | 301 end += url_ftell(bc); |
| 1477 | 302 |
| 303 GET_V(stream_id, tmp < s->nb_streams && !nut->stream[tmp].time_base.num); | |
| 304 stc= &nut->stream[stream_id]; | |
| 305 | |
| 306 st = s->streams[stream_id]; | |
| 307 if (!st) | |
| 308 return AVERROR_NOMEM; | |
| 309 | |
| 310 class = get_v(bc); | |
| 311 tmp = get_fourcc(bc); | |
| 312 st->codec->codec_tag= tmp; | |
| 313 switch(class) | |
| 314 { | |
| 315 case 0: | |
| 316 st->codec->codec_type = CODEC_TYPE_VIDEO; | |
| 317 st->codec->codec_id = codec_get_bmp_id(tmp); | |
| 318 if (st->codec->codec_id == CODEC_ID_NONE) | |
| 319 av_log(s, AV_LOG_ERROR, "Unknown codec?!\n"); | |
| 320 break; | |
| 321 case 1: | |
| 322 st->codec->codec_type = CODEC_TYPE_AUDIO; | |
| 323 st->codec->codec_id = codec_get_wav_id(tmp); | |
| 324 if (st->codec->codec_id == CODEC_ID_NONE) | |
| 325 av_log(s, AV_LOG_ERROR, "Unknown codec?!\n"); | |
| 326 break; | |
| 327 case 2: | |
| 328 // st->codec->codec_type = CODEC_TYPE_TEXT; | |
| 329 // break; | |
| 330 case 3: | |
| 331 st->codec->codec_type = CODEC_TYPE_DATA; | |
| 332 break; | |
| 333 default: | |
| 334 av_log(s, AV_LOG_ERROR, "Unknown stream class (%d)\n", class); | |
| 335 return -1; | |
| 336 } | |
| 337 GET_V(stc->time_base_id , tmp < nut->time_base_count); | |
| 338 GET_V(stc->msb_pts_shift , tmp < 16); | |
| 339 stc->max_pts_distance= get_v(bc); | |
| 340 GET_V(stc->decode_delay , tmp < 1000); //sanity limit, raise this if moors law is true | |
| 341 st->codec->has_b_frames= stc->decode_delay; | |
| 342 get_v(bc); //stream flags | |
| 343 | |
| 344 GET_V(st->codec->extradata_size, tmp < (1<<30)); | |
| 345 if(st->codec->extradata_size){ | |
| 346 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); | |
| 347 get_buffer(bc, st->codec->extradata, st->codec->extradata_size); | |
| 348 } | |
| 349 | |
| 350 if (st->codec->codec_type == CODEC_TYPE_VIDEO){ | |
| 351 GET_V(st->codec->width , tmp > 0) | |
| 352 GET_V(st->codec->height, tmp > 0) | |
| 353 st->codec->sample_aspect_ratio.num= get_v(bc); | |
| 354 st->codec->sample_aspect_ratio.den= get_v(bc); | |
| 355 if((!st->codec->sample_aspect_ratio.num) != (!st->codec->sample_aspect_ratio.den)){ | |
| 356 av_log(s, AV_LOG_ERROR, "invalid aspect ratio\n"); | |
| 357 return -1; | |
| 358 } | |
| 359 get_v(bc); /* csp type */ | |
| 360 }else if (st->codec->codec_type == CODEC_TYPE_AUDIO){ | |
| 361 GET_V(st->codec->sample_rate , tmp > 0) | |
| 362 tmp= get_v(bc); // samplerate_den | |
| 363 if(tmp > st->codec->sample_rate){ | |
| 364 av_log(s, AV_LOG_ERROR, "bleh, libnut muxed this ;)\n"); | |
| 365 st->codec->sample_rate= tmp; | |
| 366 } | |
| 367 GET_V(st->codec->channels, tmp > 0) | |
| 368 } | |
| 1485 | 369 if(skip_reserved(bc, end) || get_checksum(bc)){ |
| 1477 | 370 av_log(s, AV_LOG_ERROR, "Stream header %d checksum mismatch\n", stream_id); |
| 371 return -1; | |
| 372 } | |
| 373 stc->time_base= nut->time_base[stc->time_base_id]; | |
| 374 av_set_pts_info(s->streams[stream_id], 63, stc->time_base.num, stc->time_base.den); | |
| 375 return 0; | |
| 376 } | |
| 377 | |
| 378 static int decode_info_header(NUTContext *nut){ | |
| 379 AVFormatContext *s= nut->avf; | |
| 380 ByteIOContext *bc = &s->pb; | |
| 381 uint64_t tmp; | |
| 382 unsigned int stream_id_plus1, chapter_start, chapter_len, count; | |
| 383 int chapter_id, i; | |
| 384 int64_t value, end; | |
| 385 char name[256], str_value[1024], type_str[256], *type= type_str; | |
| 386 | |
| 387 end= get_packetheader(nut, bc, 1); | |
| 1485 | 388 end += url_ftell(bc); |
| 1477 | 389 |
| 390 GET_V(stream_id_plus1, tmp <= s->nb_streams) | |
| 391 chapter_id = get_s(bc); | |
| 392 chapter_start= get_v(bc); | |
| 393 chapter_len = get_v(bc); | |
| 394 count = get_v(bc); | |
| 395 for(i=0; i<count; i++){ | |
| 396 get_str(bc, name, sizeof(name)); | |
| 397 value= get_s(bc); | |
| 398 if(value == -1){ | |
| 399 type= "UTF-8"; | |
| 400 get_str(bc, str_value, sizeof(str_value)); | |
| 401 }else if(value == -2){ | |
| 402 get_str(bc, type, sizeof(type)); | |
| 403 get_str(bc, str_value, sizeof(str_value)); | |
| 404 }else if(value == -3){ | |
| 405 type= "s"; | |
| 406 value= get_s(bc); | |
| 407 }else if(value == -4){ | |
| 408 type= "t"; | |
| 409 value= get_v(bc); | |
| 410 }else if(value < -4){ | |
| 411 type= "r"; | |
| 412 get_s(bc); | |
| 413 }else{ | |
| 414 type= "v"; | |
| 415 } | |
| 416 | |
| 417 if(chapter_id==0 && !strcmp(type, "UTF-8")){ | |
| 418 if (!strcmp(name, "Author")) | |
| 419 pstrcpy(s->author , sizeof(s->author) , str_value); | |
| 420 else if(!strcmp(name, "Title")) | |
| 421 pstrcpy(s->title , sizeof(s->title) , str_value); | |
| 422 else if(!strcmp(name, "Copyright")) | |
| 423 pstrcpy(s->copyright, sizeof(s->copyright), str_value); | |
| 424 else if(!strcmp(name, "Description")) | |
| 425 pstrcpy(s->comment , sizeof(s->comment) , str_value); | |
| 426 } | |
| 427 } | |
| 428 | |
| 1485 | 429 if(skip_reserved(bc, end) || get_checksum(bc)){ |
| 1477 | 430 av_log(s, AV_LOG_ERROR, "Info header checksum mismatch\n"); |
| 431 return -1; | |
| 432 } | |
| 433 return 0; | |
| 434 } | |
| 435 | |
| 1500 | 436 int sp_pos_cmp(syncpoint_t *a, syncpoint_t *b){ |
| 437 return (a->pos - b->pos>>32) - (b->pos - a->pos>>32); | |
| 438 } | |
| 439 | |
| 440 int sp_pts_cmp(syncpoint_t *a, syncpoint_t *b){ | |
| 441 return (a->ts - b->ts>>32) - (b->ts - a->ts>>32); | |
| 442 } | |
| 443 | |
| 444 static void add_sp(NUTContext *nut, int64_t pos, int64_t back_ptr, int64_t ts){ | |
| 445 syncpoint_t *sp2, *sp= av_mallocz(sizeof(syncpoint_t)); | |
| 446 | |
| 447 sp->pos= pos; | |
| 448 sp->back_ptr= back_ptr; | |
| 449 sp->ts= ts; | |
| 450 sp2= av_tree_insert(&nut->syncpoints, sp, sp_pos_cmp); | |
| 451 if(sp2 && sp2 != sp) | |
| 452 av_free(sp); | |
| 453 } | |
| 454 | |
| 455 static int decode_syncpoint(NUTContext *nut, int64_t *ts, int64_t *back_ptr){ | |
| 1477 | 456 AVFormatContext *s= nut->avf; |
| 457 ByteIOContext *bc = &s->pb; | |
| 1500 | 458 int64_t end, tmp; |
| 1477 | 459 int i; |
| 460 AVRational time_base; | |
| 461 | |
| 1478 | 462 nut->last_syncpoint_pos= url_ftell(bc)-8; |
| 1477 | 463 |
| 464 end= get_packetheader(nut, bc, 1); | |
| 1485 | 465 end += url_ftell(bc); |
| 1477 | 466 |
| 467 tmp= get_v(bc); | |
| 1500 | 468 *back_ptr= nut->last_syncpoint_pos - 16*get_v(bc); |
| 469 if(*back_ptr < 0) | |
| 470 return -1; | |
| 1477 | 471 |
| 472 time_base= nut->time_base[tmp % nut->time_base_count]; | |
| 473 for(i=0; i<s->nb_streams; i++){ | |
| 1484 | 474 nut->stream[i].last_pts= av_rescale_rnd( |
| 475 tmp / nut->time_base_count, | |
| 476 time_base.num * (int64_t)nut->stream[i].time_base.den, | |
| 477 time_base.den * (int64_t)nut->stream[i].time_base.num, | |
| 478 AV_ROUND_DOWN); | |
| 1477 | 479 //last_key_frame ? |
| 480 } | |
| 481 //FIXME put this in a reset func maybe | |
| 482 | |
| 1485 | 483 if(skip_reserved(bc, end) || get_checksum(bc)){ |
| 1478 | 484 av_log(s, AV_LOG_ERROR, "sync point checksum mismatch\n"); |
| 1477 | 485 return -1; |
| 486 } | |
| 1500 | 487 |
| 488 *ts= tmp / s->nb_streams * av_q2d(nut->time_base[tmp % s->nb_streams])*AV_TIME_BASE; | |
| 489 add_sp(nut, nut->last_syncpoint_pos, *back_ptr, *ts); | |
| 490 | |
| 1477 | 491 return 0; |
| 492 } | |
| 493 | |
| 1484 | 494 static int find_and_decode_index(NUTContext *nut){ |
| 495 AVFormatContext *s= nut->avf; | |
| 496 ByteIOContext *bc = &s->pb; | |
| 497 uint64_t tmp, end; | |
| 498 int i, j, syncpoint_count; | |
| 499 int64_t filesize= url_fsize(bc); | |
| 500 int64_t *syncpoints; | |
| 501 int8_t *has_keyframe; | |
| 502 | |
| 503 url_fseek(bc, filesize-12, SEEK_SET); | |
| 504 url_fseek(bc, filesize-get_be64(bc), SEEK_SET); | |
| 505 if(get_be64(bc) != INDEX_STARTCODE){ | |
| 506 av_log(s, AV_LOG_ERROR, "no index at the end\n"); | |
| 507 return -1; | |
| 508 } | |
| 509 | |
| 510 end= get_packetheader(nut, bc, 1); | |
| 1485 | 511 end += url_ftell(bc); |
| 1484 | 512 |
| 513 get_v(bc); //max_pts | |
| 514 GET_V(syncpoint_count, tmp < INT_MAX/8 && tmp > 0) | |
| 515 syncpoints= av_malloc(sizeof(int64_t)*syncpoint_count); | |
| 516 has_keyframe= av_malloc(sizeof(int8_t)*(syncpoint_count+1)); | |
| 517 for(i=0; i<syncpoint_count; i++){ | |
| 518 GET_V(syncpoints[i], tmp>0) | |
| 519 if(i) | |
| 520 syncpoints[i] += syncpoints[i-1]; | |
| 521 } | |
| 522 | |
| 523 for(i=0; i<s->nb_streams; i++){ | |
| 524 int64_t last_pts= -1; | |
| 525 for(j=0; j<syncpoint_count;){ | |
| 526 uint64_t x= get_v(bc); | |
| 527 int type= x&1; | |
| 528 int n= j; | |
| 529 x>>=1; | |
| 530 if(type){ | |
| 531 int flag= x&1; | |
| 532 x>>=1; | |
| 533 if(n+x >= syncpoint_count + 1){ | |
| 534 av_log(s, AV_LOG_ERROR, "index overflow A\n"); | |
| 535 return -1; | |
| 536 } | |
| 537 while(x--) | |
| 538 has_keyframe[n++]= flag; | |
| 539 has_keyframe[n++]= !flag; | |
| 540 }else{ | |
| 541 while(x != 1){ | |
| 542 if(n>=syncpoint_count + 1){ | |
| 543 av_log(s, AV_LOG_ERROR, "index overflow B\n"); | |
| 544 return -1; | |
| 545 } | |
| 546 has_keyframe[n++]= x&1; | |
| 547 x>>=1; | |
| 548 } | |
| 549 } | |
| 550 if(has_keyframe[0]){ | |
| 551 av_log(s, AV_LOG_ERROR, "keyframe before first syncpoint in index\n"); | |
| 552 return -1; | |
| 553 } | |
| 554 assert(n<=syncpoint_count+1); | |
| 555 for(; j<n; j++){ | |
| 556 if(has_keyframe[j]){ | |
| 557 uint64_t B, A= get_v(bc); | |
| 558 if(!A){ | |
| 559 A= get_v(bc); | |
| 560 B= get_v(bc); | |
| 561 //eor_pts[j][i] = last_pts + A + B | |
| 562 }else | |
| 563 B= 0; | |
| 564 av_add_index_entry( | |
| 565 s->streams[i], | |
| 566 16*syncpoints[j-1], | |
| 567 last_pts + A, | |
| 568 0, | |
| 569 0, | |
| 570 AVINDEX_KEYFRAME); | |
| 571 last_pts += A + B; | |
| 572 } | |
| 573 } | |
| 574 } | |
| 575 } | |
| 576 | |
| 1485 | 577 if(skip_reserved(bc, end) || get_checksum(bc)){ |
| 1484 | 578 av_log(s, AV_LOG_ERROR, "Index checksum mismatch\n"); |
| 579 return -1; | |
| 580 } | |
| 581 return 0; | |
| 582 } | |
| 583 | |
| 1477 | 584 static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) |
| 585 { | |
| 586 NUTContext *nut = s->priv_data; | |
| 587 ByteIOContext *bc = &s->pb; | |
| 588 int64_t pos; | |
| 589 int inited_stream_count; | |
| 590 | |
| 591 nut->avf= s; | |
| 592 | |
| 593 /* main header */ | |
| 594 pos=0; | |
| 1480 | 595 do{ |
| 1477 | 596 pos= find_startcode(bc, MAIN_STARTCODE, pos)+1; |
| 597 if (pos<0+1){ | |
| 598 av_log(s, AV_LOG_ERROR, "no main startcode found\n"); | |
| 599 return -1; | |
| 600 } | |
| 1480 | 601 }while(decode_main_header(nut) < 0); |
| 1477 | 602 |
| 603 /* stream headers */ | |
| 604 pos=0; | |
| 605 for(inited_stream_count=0; inited_stream_count < s->nb_streams;){ | |
| 606 pos= find_startcode(bc, STREAM_STARTCODE, pos)+1; | |
| 607 if (pos<0+1){ | |
| 608 av_log(s, AV_LOG_ERROR, "not all stream headers found\n"); | |
| 609 return -1; | |
| 610 } | |
| 611 if(decode_stream_header(nut) >= 0) | |
| 612 inited_stream_count++; | |
| 613 } | |
| 614 | |
| 615 /* info headers */ | |
| 616 pos=0; | |
| 617 for(;;){ | |
| 618 uint64_t startcode= find_any_startcode(bc, pos); | |
| 619 pos= url_ftell(bc); | |
| 620 | |
| 621 if(startcode==0){ | |
| 622 av_log(s, AV_LOG_ERROR, "EOF before video frames\n"); | |
| 623 return -1; | |
| 624 }else if(startcode == SYNCPOINT_STARTCODE){ | |
| 625 nut->next_startcode= startcode; | |
| 626 break; | |
| 627 }else if(startcode != INFO_STARTCODE){ | |
| 628 continue; | |
| 629 } | |
| 630 | |
| 631 decode_info_header(nut); | |
| 632 } | |
| 633 | |
| 1478 | 634 s->data_offset= pos-8; |
| 635 | |
| 1484 | 636 if(0 &&!url_is_streamed(bc)){ |
| 637 int64_t orig_pos= url_ftell(bc); | |
| 638 find_and_decode_index(nut); | |
| 639 url_fseek(bc, orig_pos, SEEK_SET); | |
| 640 } | |
| 641 assert(nut->next_startcode == SYNCPOINT_STARTCODE); | |
| 642 | |
| 1477 | 643 return 0; |
| 644 } | |
| 645 | |
| 646 static int decode_frame_header(NUTContext *nut, int *flags_ret, int64_t *pts, int *stream_id, int frame_code){ | |
| 647 AVFormatContext *s= nut->avf; | |
| 648 ByteIOContext *bc = &s->pb; | |
| 649 StreamContext *stc; | |
| 650 int size, flags, size_mul, pts_delta, i, reserved_count; | |
| 651 uint64_t tmp; | |
| 652 | |
| 653 if(url_ftell(bc) > nut->last_syncpoint_pos + nut->max_distance){ | |
| 1478 | 654 av_log(s, AV_LOG_ERROR, "last frame must have been damaged %Ld > %Ld + %d\n", url_ftell(bc), nut->last_syncpoint_pos, nut->max_distance); |
| 1477 | 655 return -1; |
| 656 } | |
| 657 | |
| 658 flags = nut->frame_code[frame_code].flags; | |
| 659 size_mul = nut->frame_code[frame_code].size_mul; | |
| 660 size = nut->frame_code[frame_code].size_lsb; | |
| 661 *stream_id = nut->frame_code[frame_code].stream_id; | |
| 662 pts_delta = nut->frame_code[frame_code].pts_delta; | |
| 663 reserved_count = nut->frame_code[frame_code].reserved_count; | |
| 664 | |
| 665 if(flags & FLAG_INVALID) | |
| 666 return -1; | |
| 667 if(flags & FLAG_CODED) | |
| 668 flags ^= get_v(bc); | |
| 669 if(flags & FLAG_STREAM_ID){ | |
| 670 GET_V(*stream_id, tmp < s->nb_streams) | |
| 671 } | |
| 672 stc= &nut->stream[*stream_id]; | |
| 673 if(flags&FLAG_CODED_PTS){ | |
| 674 int coded_pts= get_v(bc); | |
| 675 //FIXME check last_pts validity? | |
| 676 if(coded_pts < (1<<stc->msb_pts_shift)){ | |
| 677 *pts=lsb2full(stc, coded_pts); | |
| 678 }else | |
| 679 *pts=coded_pts - (1<<stc->msb_pts_shift); | |
| 680 }else | |
| 681 *pts= stc->last_pts + pts_delta; | |
| 682 if(flags&FLAG_SIZE_MSB){ | |
| 683 size += size_mul*get_v(bc); | |
| 684 } | |
| 685 if(flags&FLAG_RESERVED) | |
| 686 reserved_count= get_v(bc); | |
| 687 for(i=0; i<reserved_count; i++) | |
| 688 get_v(bc); | |
| 689 if(flags&FLAG_CHECKSUM){ | |
| 690 get_be32(bc); //FIXME check this | |
| 691 } | |
| 692 *flags_ret= flags; | |
| 693 | |
| 694 stc->last_pts= *pts; | |
| 695 stc->last_key_frame= flags&FLAG_KEY; //FIXME change to last flags | |
| 696 | |
| 1478 | 697 if(flags&FLAG_KEY){ |
| 698 av_add_index_entry( | |
| 699 s->streams[*stream_id], | |
| 700 nut->last_syncpoint_pos, | |
| 701 *pts, | |
| 702 0, | |
| 703 0, | |
| 704 AVINDEX_KEYFRAME); | |
| 705 } | |
| 706 | |
| 1477 | 707 return size; |
| 708 } | |
| 709 | |
| 710 static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code){ | |
| 711 AVFormatContext *s= nut->avf; | |
| 712 ByteIOContext *bc = &s->pb; | |
| 713 int size, stream_id, flags, discard; | |
| 714 int64_t pts, last_IP_pts; | |
| 715 | |
| 716 size= decode_frame_header(nut, &flags, &pts, &stream_id, frame_code); | |
| 717 if(size < 0) | |
| 718 return -1; | |
| 719 | |
| 720 discard= s->streams[ stream_id ]->discard; | |
| 721 last_IP_pts= s->streams[ stream_id ]->last_IP_pts; | |
| 722 if( (discard >= AVDISCARD_NONKEY && !(flags & FLAG_KEY)) | |
| 723 ||(discard >= AVDISCARD_BIDIR && last_IP_pts != AV_NOPTS_VALUE && last_IP_pts > pts) | |
| 724 || discard >= AVDISCARD_ALL){ | |
| 725 url_fskip(bc, size); | |
| 726 return 1; | |
| 727 } | |
| 728 | |
| 729 av_get_packet(bc, pkt, size); | |
| 730 pkt->stream_index = stream_id; | |
| 731 if (flags & FLAG_KEY) | |
| 732 pkt->flags |= PKT_FLAG_KEY; | |
| 733 pkt->pts = pts; | |
| 734 | |
| 735 return 0; | |
| 736 } | |
| 737 | |
| 738 static int nut_read_packet(AVFormatContext *s, AVPacket *pkt) | |
| 739 { | |
| 740 NUTContext *nut = s->priv_data; | |
| 741 ByteIOContext *bc = &s->pb; | |
| 742 int i, frame_code=0, ret, skip; | |
| 1500 | 743 int64_t ts, back_ptr; |
| 1477 | 744 |
| 745 for(;;){ | |
| 746 int64_t pos= url_ftell(bc); | |
| 747 uint64_t tmp= nut->next_startcode; | |
| 748 nut->next_startcode=0; | |
| 749 | |
| 750 if (url_feof(bc)) | |
| 751 return -1; | |
| 752 | |
| 753 if(tmp){ | |
| 754 pos-=8; | |
| 755 }else{ | |
| 756 frame_code = get_byte(bc); | |
| 757 if(frame_code == 'N'){ | |
| 758 tmp= frame_code; | |
| 759 for(i=1; i<8; i++) | |
| 760 tmp = (tmp<<8) + get_byte(bc); | |
| 761 } | |
| 762 } | |
| 763 switch(tmp){ | |
| 764 case MAIN_STARTCODE: | |
| 765 case STREAM_STARTCODE: | |
| 766 case INDEX_STARTCODE: | |
| 767 skip= get_packetheader(nut, bc, 0); | |
| 768 url_fseek(bc, skip, SEEK_CUR); | |
| 769 break; | |
| 770 case INFO_STARTCODE: | |
| 771 if(decode_info_header(nut)<0) | |
| 772 goto resync; | |
| 773 break; | |
| 774 case SYNCPOINT_STARTCODE: | |
| 1500 | 775 if(decode_syncpoint(nut, &ts, &back_ptr)<0) |
| 1477 | 776 goto resync; |
| 777 frame_code = get_byte(bc); | |
| 778 case 0: | |
| 779 ret= decode_frame(nut, pkt, frame_code); | |
| 780 if(ret==0) | |
| 781 return 0; | |
| 782 else if(ret==1) //ok but discard packet | |
| 783 break; | |
| 784 default: | |
| 785 resync: | |
| 786 av_log(s, AV_LOG_DEBUG, "syncing from %"PRId64"\n", pos); | |
| 787 tmp= find_any_startcode(bc, pos+1); | |
| 788 if(tmp==0) | |
| 789 return -1; | |
| 790 av_log(s, AV_LOG_DEBUG, "sync\n"); | |
| 791 nut->next_startcode= tmp; | |
| 792 } | |
| 793 } | |
| 794 } | |
| 795 | |
| 1478 | 796 static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos_arg, int64_t pos_limit){ |
| 797 NUTContext *nut = s->priv_data; | |
| 798 ByteIOContext *bc = &s->pb; | |
| 1500 | 799 int64_t pos, pts, back_ptr; |
| 1478 | 800 int frame_code, stream_id,size, flags; |
| 801 av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n", stream_index, *pos_arg, pos_limit); | |
| 802 | |
| 803 pos= *pos_arg; | |
| 804 resync: | |
| 805 do{ | |
| 806 pos= find_startcode(bc, SYNCPOINT_STARTCODE, pos)+1; | |
| 807 if(pos < 1){ | |
| 808 assert(nut->next_startcode == 0); | |
| 809 av_log(s, AV_LOG_ERROR, "read_timestamp failed\n"); | |
| 810 return AV_NOPTS_VALUE; | |
| 811 } | |
| 1500 | 812 }while(decode_syncpoint(nut, &pts, &back_ptr) < 0); |
| 1478 | 813 *pos_arg = pos-1; |
| 814 assert(nut->last_syncpoint_pos == *pos_arg); | |
| 815 | |
| 1500 | 816 av_log(s, AV_LOG_DEBUG, "return %Ld %Ld\n", pts,back_ptr ); |
| 817 if (stream_index == -1) return pts; | |
| 818 else if(stream_index == -2) return back_ptr; | |
| 819 | |
| 820 assert(0); | |
| 1478 | 821 do{ |
| 822 frame_code= get_byte(bc); | |
|
1479
6a33963be49a
dont do startcode search from last syncpoint if there are no errors
michael
parents:
1478
diff
changeset
|
823 if(frame_code == 'N'){ |
|
6a33963be49a
dont do startcode search from last syncpoint if there are no errors
michael
parents:
1478
diff
changeset
|
824 pos= url_ftell(bc)-1; |
| 1478 | 825 goto resync; |
|
1479
6a33963be49a
dont do startcode search from last syncpoint if there are no errors
michael
parents:
1478
diff
changeset
|
826 } |
| 1478 | 827 //FIXME consider pos_limit and eof |
| 828 size= decode_frame_header(nut, &flags, &pts, &stream_id, frame_code); | |
| 829 | |
| 830 if(size < 0) | |
| 831 goto resync; | |
| 832 | |
| 833 url_fseek(bc, size, SEEK_CUR); | |
| 834 }while(stream_id != stream_index || !(flags & FLAG_KEY)); | |
| 835 assert(nut->next_startcode == 0); | |
| 836 av_log(s, AV_LOG_DEBUG, "read_timestamp success\n"); | |
| 837 | |
| 838 return pts; | |
| 839 } | |
| 840 | |
| 1500 | 841 static int read_seek(AVFormatContext *s, int stream_index, int64_t pts, int flags){ |
| 842 NUTContext *nut = s->priv_data; | |
| 843 AVStream *st= s->streams[stream_index]; | |
| 844 syncpoint_t dummy={.ts= pts*av_q2d(st->time_base)*AV_TIME_BASE}; | |
| 845 syncpoint_t nopts_sp= {.ts= AV_NOPTS_VALUE, .back_ptr= AV_NOPTS_VALUE}; | |
| 846 syncpoint_t *sp, *next_node[2]= {&nopts_sp, &nopts_sp}; | |
| 847 int64_t pos, pos2, ts; | |
| 848 | |
| 849 av_tree_find(nut->syncpoints, &dummy, sp_pts_cmp, next_node); | |
| 850 av_log(s, AV_LOG_DEBUG, "%Ld-%Ld %Ld-%Ld\n", next_node[0]->pos, next_node[1]->pos, | |
| 851 next_node[0]->ts , next_node[1]->ts); | |
| 852 pos= av_gen_search(s, -1, dummy.ts, next_node[0]->pos, next_node[1]->pos, next_node[1]->pos, | |
| 853 next_node[0]->ts , next_node[1]->ts, AVSEEK_FLAG_BACKWARD, &ts, nut_read_timestamp); | |
| 854 | |
| 855 if(!(flags & AVSEEK_FLAG_BACKWARD)){ | |
| 856 dummy.pos= pos+16; | |
| 857 next_node[1]= &nopts_sp; | |
| 858 av_tree_find(nut->syncpoints, &dummy, sp_pos_cmp, next_node); | |
| 859 pos2= av_gen_search(s, -2, dummy.pos, next_node[0]->pos , next_node[1]->pos, next_node[1]->pos, | |
| 860 next_node[0]->back_ptr, next_node[1]->back_ptr, flags, &ts, nut_read_timestamp); | |
| 861 if(pos2>=0) | |
| 862 pos= pos2; | |
| 863 //FIXME dir but i think it doesnt matter | |
| 864 } | |
| 865 dummy.pos= pos; | |
| 866 sp= av_tree_find(nut->syncpoints, &dummy, sp_pos_cmp, NULL); | |
| 867 | |
| 868 assert(sp); | |
| 869 | |
| 870 av_log(NULL, AV_LOG_DEBUG, "SEEKTO: %"PRId64"\n", sp->back_ptr); | |
| 871 pos= find_startcode(&s->pb, SYNCPOINT_STARTCODE, sp->back_ptr - 15); | |
| 872 url_fseek(&s->pb, pos, SEEK_SET); | |
| 873 av_log(NULL, AV_LOG_DEBUG, "SP: %"PRId64"\n", pos); | |
| 874 if(sp->back_ptr - 15 > pos || sp->back_ptr < pos){ | |
| 875 av_log(NULL, AV_LOG_ERROR, "no syncpoint at backptr pos\n"); | |
| 876 } | |
| 877 return 0; | |
| 878 } | |
| 879 | |
| 1477 | 880 static int nut_read_close(AVFormatContext *s) |
| 881 { | |
| 882 NUTContext *nut = s->priv_data; | |
| 883 | |
| 884 av_freep(&nut->time_base); | |
| 885 av_freep(&nut->stream); | |
| 886 | |
| 887 return 0; | |
| 888 } | |
| 889 | |
| 890 #ifdef CONFIG_NUT_DEMUXER | |
| 891 AVInputFormat nut_demuxer = { | |
| 892 "nut", | |
| 893 "nut format", | |
| 894 sizeof(NUTContext), | |
| 895 nut_probe, | |
| 896 nut_read_header, | |
| 897 nut_read_packet, | |
| 898 nut_read_close, | |
| 1500 | 899 read_seek, |
| 900 // nut_read_timestamp, | |
| 1477 | 901 .extensions = "nut", |
| 902 }; | |
| 903 #endif |
