Mercurial > libavformat.hg
annotate nut.c @ 1106:8f78a071554d libavformat
rm_read_audio_stream_info return type is not void
Check for errors returned by rm_read_audio_stream_info
Check for overflow in aac extradata allocation
author | rtogni |
---|---|
date | Sun, 04 Jun 2006 21:01:02 +0000 |
parents | 716c75917a10 |
children | 801d4a5cf353 |
rev | line source |
---|---|
219 | 1 /* |
403 | 2 * "NUT" Container Format muxer and demuxer (DRAFT-200403??) |
219 | 3 * Copyright (c) 2003 Alex Beregszaszi |
403 | 4 * Copyright (c) 2004 Michael Niedermayer |
219 | 5 * |
6 * This library is free software; you can redistribute it and/or | |
7 * modify it under the terms of the GNU Lesser General Public | |
8 * License as published by the Free Software Foundation; either | |
9 * version 2 of the License, or (at your option) any later version. | |
10 * | |
11 * This library is distributed in the hope that it will be useful, | |
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
14 * Lesser General Public License for more details. | |
15 * | |
16 * You should have received a copy of the GNU General Public | |
17 * License along with this library; if not, write to the Free Software | |
896
edbe5c3717f9
Update licensing information: The FSF changed postal address.
diego
parents:
887
diff
changeset
|
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
219 | 19 * |
20 * | |
787 | 21 * Visit the official site at http://www.nut.hu/ |
219 | 22 * |
23 */ | |
24 | |
25 /* | |
26 * TODO: | |
27 * - index writing | |
415 | 28 * - index packet reading support |
219 | 29 */ |
30 | |
31 //#define DEBUG 1 | |
32 | |
403 | 33 #include <limits.h> |
219 | 34 #include "avformat.h" |
35 #include "mpegaudio.h" | |
228 | 36 #include "avi.h" |
219 | 37 |
403 | 38 #undef NDEBUG |
39 #include <assert.h> | |
40 | |
461 | 41 //#define TRACE |
42 | |
220 | 43 //from /dev/random |
44 | |
885 | 45 #define MAIN_STARTCODE (0x7A561F5F04ADULL + (((uint64_t)('N'<<8) + 'M')<<48)) |
46 #define STREAM_STARTCODE (0x11405BF2F9DBULL + (((uint64_t)('N'<<8) + 'S')<<48)) | |
47 #define KEYFRAME_STARTCODE (0xE4ADEECA4569ULL + (((uint64_t)('N'<<8) + 'K')<<48)) | |
48 #define INDEX_STARTCODE (0xDD672F23E64EULL + (((uint64_t)('N'<<8) + 'X')<<48)) | |
49 #define INFO_STARTCODE (0xAB68B596BA78ULL + (((uint64_t)('N'<<8) + 'I')<<48)) | |
403 | 50 |
478 | 51 #define ID_STRING "nut/multimedia container\0" |
52 | |
456 | 53 #define MAX_DISTANCE (1024*16-1) |
54 #define MAX_SHORT_DISTANCE (1024*4-1) | |
403 | 55 |
461 | 56 #define FLAG_DATA_SIZE 1 |
57 #define FLAG_KEY_FRAME 2 | |
58 #define FLAG_INVALID 4 | |
403 | 59 |
60 typedef struct { | |
61 uint8_t flags; | |
62 uint8_t stream_id_plus1; | |
456 | 63 uint16_t size_mul; |
64 uint16_t size_lsb; | |
461 | 65 int16_t timestamp_delta; |
66 uint8_t reserved_count; | |
403 | 67 } FrameCode; |
68 | |
69 typedef struct { | |
70 int last_key_frame; | |
71 int msb_timestamp_shift; | |
72 int rate_num; | |
73 int rate_den; | |
74 int64_t last_pts; | |
426 | 75 int64_t last_sync_pos; ///<pos of last 1/2 type frame |
456 | 76 int decode_delay; |
403 | 77 } StreamContext; |
220 | 78 |
219 | 79 typedef struct { |
403 | 80 AVFormatContext *avf; |
81 int written_packet_size; | |
456 | 82 int64_t packet_start[3]; //0-> startcode less, 1-> short startcode 2-> long startcodes |
403 | 83 FrameCode frame_code[256]; |
639 | 84 unsigned int stream_count; |
421 | 85 uint64_t next_startcode; ///< stores the next startcode if it has alraedy been parsed but the stream isnt seekable |
403 | 86 StreamContext *stream; |
456 | 87 int max_distance; |
478 | 88 int max_short_distance; |
461 | 89 int rate_num; |
90 int rate_den; | |
91 int short_startcode; | |
219 | 92 } NUTContext; |
93 | |
415 | 94 static char *info_table[][2]={ |
887 | 95 {NULL , NULL }, // end |
96 {NULL , NULL }, | |
97 {NULL , "UTF8"}, | |
98 {NULL , "v"}, | |
99 {NULL , "s"}, | |
100 {"StreamId" , "v"}, | |
101 {"SegmentId" , "v"}, | |
102 {"StartTimestamp" , "v"}, | |
103 {"EndTimestamp" , "v"}, | |
104 {"Author" , "UTF8"}, | |
105 {"Title" , "UTF8"}, | |
106 {"Description" , "UTF8"}, | |
107 {"Copyright" , "UTF8"}, | |
108 {"Encoder" , "UTF8"}, | |
109 {"Keyword" , "UTF8"}, | |
110 {"Cover" , "JPEG"}, | |
111 {"Cover" , "PNG"}, | |
415 | 112 }; |
113 | |
782 | 114 void ff_parse_specific_params(AVCodecContext *stream, int *au_rate, int *au_ssize, int *au_scale); |
115 | |
403 | 116 static void update(NUTContext *nut, int stream_index, int64_t frame_start, int frame_type, int frame_code, int key_frame, int size, int64_t pts){ |
117 StreamContext *stream= &nut->stream[stream_index]; | |
885 | 118 |
403 | 119 stream->last_key_frame= key_frame; |
456 | 120 nut->packet_start[ frame_type ]= frame_start; |
403 | 121 stream->last_pts= pts; |
122 } | |
123 | |
461 | 124 static void reset(AVFormatContext *s, int64_t global_ts){ |
403 | 125 NUTContext *nut = s->priv_data; |
126 int i; | |
885 | 127 |
403 | 128 for(i=0; i<s->nb_streams; i++){ |
129 StreamContext *stream= &nut->stream[i]; | |
885 | 130 |
403 | 131 stream->last_key_frame= 1; |
461 | 132 |
133 stream->last_pts= av_rescale(global_ts, stream->rate_num*(int64_t)nut->rate_den, stream->rate_den*(int64_t)nut->rate_num); | |
403 | 134 } |
135 } | |
136 | |
137 static void build_frame_code(AVFormatContext *s){ | |
138 NUTContext *nut = s->priv_data; | |
461 | 139 int key_frame, index, pred, stream_id; |
403 | 140 int start=0; |
141 int end= 255; | |
142 int keyframe_0_esc= s->nb_streams > 2; | |
461 | 143 int pred_table[10]; |
403 | 144 |
145 if(keyframe_0_esc){ | |
456 | 146 /* keyframe = 0 escape */ |
147 FrameCode *ft= &nut->frame_code[start]; | |
461 | 148 ft->flags= FLAG_DATA_SIZE; |
456 | 149 ft->stream_id_plus1= 0; |
150 ft->size_mul=1; | |
461 | 151 ft->timestamp_delta=0; |
456 | 152 start++; |
403 | 153 } |
154 | |
155 for(stream_id= 0; stream_id<s->nb_streams; stream_id++){ | |
156 int start2= start + (end-start)*stream_id / s->nb_streams; | |
157 int end2 = start + (end-start)*(stream_id+1) / s->nb_streams; | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
158 AVCodecContext *codec = s->streams[stream_id]->codec; |
403 | 159 int is_audio= codec->codec_type == CODEC_TYPE_AUDIO; |
160 int intra_only= /*codec->intra_only || */is_audio; | |
161 int pred_count; | |
162 | |
163 for(key_frame=0; key_frame<2; key_frame++){ | |
164 if(intra_only && keyframe_0_esc && key_frame==0) | |
165 continue; | |
885 | 166 |
456 | 167 { |
168 FrameCode *ft= &nut->frame_code[start2]; | |
169 ft->flags= FLAG_KEY_FRAME*key_frame; | |
461 | 170 ft->flags|= FLAG_DATA_SIZE; |
456 | 171 ft->stream_id_plus1= stream_id + 1; |
172 ft->size_mul=1; | |
461 | 173 ft->timestamp_delta=0; |
456 | 174 start2++; |
403 | 175 } |
176 } | |
177 | |
178 key_frame= intra_only; | |
179 #if 1 | |
180 if(is_audio){ | |
181 int frame_bytes= codec->frame_size*(int64_t)codec->bit_rate / (8*codec->sample_rate); | |
461 | 182 int pts; |
183 for(pts=0; pts<2; pts++){ | |
456 | 184 for(pred=0; pred<2; pred++){ |
403 | 185 FrameCode *ft= &nut->frame_code[start2]; |
461 | 186 ft->flags= FLAG_KEY_FRAME*key_frame; |
403 | 187 ft->stream_id_plus1= stream_id + 1; |
456 | 188 ft->size_mul=frame_bytes + 2; |
189 ft->size_lsb=frame_bytes + pred; | |
461 | 190 ft->timestamp_delta=pts; |
403 | 191 start2++; |
192 } | |
193 } | |
194 }else{ | |
195 FrameCode *ft= &nut->frame_code[start2]; | |
196 ft->flags= FLAG_KEY_FRAME | FLAG_DATA_SIZE; | |
197 ft->stream_id_plus1= stream_id + 1; | |
198 ft->size_mul=1; | |
461 | 199 ft->timestamp_delta=1; |
403 | 200 start2++; |
201 } | |
202 #endif | |
461 | 203 |
204 if(codec->has_b_frames){ | |
205 pred_count=5; | |
206 pred_table[0]=-2; | |
207 pred_table[1]=-1; | |
208 pred_table[2]=1; | |
209 pred_table[3]=3; | |
210 pred_table[4]=4; | |
211 }else if(codec->codec_id == CODEC_ID_VORBIS){ | |
212 pred_count=3; | |
213 pred_table[0]=2; | |
214 pred_table[1]=9; | |
215 pred_table[2]=16; | |
216 }else{ | |
217 pred_count=1; | |
218 pred_table[0]=1; | |
219 } | |
220 | |
403 | 221 for(pred=0; pred<pred_count; pred++){ |
222 int start3= start2 + (end2-start2)*pred / pred_count; | |
223 int end3 = start2 + (end2-start2)*(pred+1) / pred_count; | |
224 | |
225 for(index=start3; index<end3; index++){ | |
226 FrameCode *ft= &nut->frame_code[index]; | |
461 | 227 ft->flags= FLAG_KEY_FRAME*key_frame; |
403 | 228 ft->flags|= FLAG_DATA_SIZE; |
229 ft->stream_id_plus1= stream_id + 1; | |
230 //FIXME use single byte size and pred from last | |
231 ft->size_mul= end3-start3; | |
232 ft->size_lsb= index - start3; | |
461 | 233 ft->timestamp_delta= pred_table[pred]; |
403 | 234 } |
235 } | |
236 } | |
237 memmove(&nut->frame_code['N'+1], &nut->frame_code['N'], sizeof(FrameCode)*(255-'N')); | |
461 | 238 nut->frame_code['N'].flags= FLAG_INVALID; |
403 | 239 } |
240 | |
219 | 241 static uint64_t get_v(ByteIOContext *bc) |
242 { | |
243 uint64_t val = 0; | |
244 | |
421 | 245 for(;;) |
219 | 246 { |
887 | 247 int tmp = get_byte(bc); |
219 | 248 |
887 | 249 if (tmp&0x80) |
250 val= (val<<7) + tmp - 0x80; | |
251 else{ | |
456 | 252 //av_log(NULL, AV_LOG_DEBUG, "get_v()= %lld\n", (val<<7) + tmp); |
887 | 253 return (val<<7) + tmp; |
456 | 254 } |
219 | 255 } |
256 return -1; | |
257 } | |
258 | |
639 | 259 static int get_str(ByteIOContext *bc, char *string, unsigned int maxlen){ |
260 unsigned int len= get_v(bc); | |
885 | 261 |
415 | 262 if(len && maxlen) |
263 get_buffer(bc, string, FFMIN(len, maxlen)); | |
264 while(len > maxlen){ | |
265 get_byte(bc); | |
266 len--; | |
267 } | |
240 | 268 |
415 | 269 if(maxlen) |
270 string[FFMIN(len, maxlen-1)]= 0; | |
885 | 271 |
415 | 272 if(maxlen == len) |
273 return -1; | |
274 else | |
275 return 0; | |
219 | 276 } |
277 | |
461 | 278 static int64_t get_s(ByteIOContext *bc){ |
279 int64_t v = get_v(bc) + 1; | |
280 | |
281 if (v&1) return -(v>>1); | |
282 else return (v>>1); | |
283 } | |
284 | |
426 | 285 static uint64_t get_vb(ByteIOContext *bc){ |
286 uint64_t val=0; | |
639 | 287 unsigned int i= get_v(bc); |
885 | 288 |
426 | 289 if(i>8) |
290 return UINT64_MAX; | |
885 | 291 |
426 | 292 while(i--) |
293 val = (val<<8) + get_byte(bc); | |
885 | 294 |
456 | 295 //av_log(NULL, AV_LOG_DEBUG, "get_vb()= %lld\n", val); |
426 | 296 return val; |
297 } | |
298 | |
461 | 299 #ifdef TRACE |
300 static inline uint64_t get_v_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
301 uint64_t v= get_v(bc); | |
302 | |
303 printf("get_v %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
304 return v; | |
305 } | |
306 | |
307 static inline int64_t get_s_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
308 int64_t v= get_s(bc); | |
309 | |
310 printf("get_s %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
311 return v; | |
312 } | |
313 | |
314 static inline uint64_t get_vb_trace(ByteIOContext *bc, char *file, char *func, int line){ | |
315 uint64_t v= get_vb(bc); | |
316 | |
317 printf("get_vb %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
318 return v; | |
319 } | |
320 #define get_v(bc) get_v_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
321 #define get_s(bc) get_s_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
322 #define get_vb(bc) get_vb_trace(bc, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
323 #endif | |
324 | |
325 | |
456 | 326 static int get_packetheader(NUTContext *nut, ByteIOContext *bc, int calculate_checksum) |
219 | 327 { |
456 | 328 int64_t start, size; |
329 start= url_ftell(bc) - 8; | |
403 | 330 |
854 | 331 size= get_v(bc); |
403 | 332 |
854 | 333 init_checksum(bc, calculate_checksum ? update_adler32 : NULL, 0); |
403 | 334 |
456 | 335 nut->packet_start[2] = start; |
403 | 336 nut->written_packet_size= size; |
337 | |
338 return size; | |
219 | 339 } |
340 | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
341 static int check_checksum(ByteIOContext *bc){ |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
342 unsigned long checksum= get_checksum(bc); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
343 return checksum != get_be32(bc); |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
344 } |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
345 |
221 | 346 /** |
885 | 347 * |
221 | 348 */ |
349 static int get_length(uint64_t val){ | |
350 int i; | |
219 | 351 |
426 | 352 for (i=7; val>>i; i+=7); |
219 | 353 |
426 | 354 return i; |
219 | 355 } |
356 | |
419 | 357 static uint64_t find_any_startcode(ByteIOContext *bc, int64_t pos){ |
358 uint64_t state=0; | |
885 | 359 |
419 | 360 if(pos >= 0) |
361 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 | |
362 | |
421 | 363 while(!url_feof(bc)){ |
419 | 364 state= (state<<8) | get_byte(bc); |
365 if((state>>56) != 'N') | |
366 continue; | |
367 switch(state){ | |
368 case MAIN_STARTCODE: | |
369 case STREAM_STARTCODE: | |
370 case KEYFRAME_STARTCODE: | |
371 case INFO_STARTCODE: | |
372 case INDEX_STARTCODE: | |
373 return state; | |
374 } | |
375 } | |
426 | 376 |
419 | 377 return 0; |
378 } | |
379 | |
426 | 380 /** |
381 * find the given startcode. | |
382 * @param code the startcode | |
383 * @param pos the start position of the search, or -1 if the current position | |
384 * @returns the position of the startcode or -1 if not found | |
385 */ | |
386 static int64_t find_startcode(ByteIOContext *bc, uint64_t code, int64_t pos){ | |
419 | 387 for(;;){ |
388 uint64_t startcode= find_any_startcode(bc, pos); | |
389 if(startcode == code) | |
426 | 390 return url_ftell(bc) - 8; |
419 | 391 else if(startcode == 0) |
392 return -1; | |
393 pos=-1; | |
394 } | |
395 } | |
396 | |
902 | 397 static int64_t lsb2full(StreamContext *stream, int64_t lsb){ |
398 int64_t mask = (1<<stream->msb_timestamp_shift)-1; | |
399 int64_t delta= stream->last_pts - mask/2; | |
400 return ((lsb - delta)&mask) + delta; | |
401 } | |
402 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
403 #ifdef CONFIG_MUXERS |
461 | 404 |
426 | 405 static void put_v(ByteIOContext *bc, uint64_t val) |
219 | 406 { |
407 int i; | |
408 | |
456 | 409 //av_log(NULL, AV_LOG_DEBUG, "put_v()= %lld\n", val); |
219 | 410 val &= 0x7FFFFFFFFFFFFFFFULL; // FIXME can only encode upto 63 bits currently |
221 | 411 i= get_length(val); |
219 | 412 |
220 | 413 for (i-=7; i>0; i-=7){ |
887 | 414 put_byte(bc, 0x80 | (val>>i)); |
220 | 415 } |
219 | 416 |
417 put_byte(bc, val&0x7f); | |
418 } | |
419 | |
426 | 420 /** |
421 * stores a string as vb. | |
422 */ | |
423 static void put_str(ByteIOContext *bc, const char *string){ | |
415 | 424 int len= strlen(string); |
885 | 425 |
219 | 426 put_v(bc, len); |
415 | 427 put_buffer(bc, string, len); |
426 | 428 } |
429 | |
699
2f5f4578a076
"put_s should store signed values. Spotted on #mplayerdev by someone I
michael
parents:
683
diff
changeset
|
430 static void put_s(ByteIOContext *bc, int64_t val){ |
461 | 431 if (val<=0) put_v(bc, -2*val ); |
432 else put_v(bc, 2*val-1); | |
433 } | |
434 | |
426 | 435 static void put_vb(ByteIOContext *bc, uint64_t val){ |
436 int i; | |
885 | 437 |
426 | 438 for (i=8; val>>i; i+=8); |
439 | |
440 put_v(bc, i>>3); | |
441 for(i-=8; i>=0; i-=8) | |
442 put_byte(bc, (val>>i)&0xFF); | |
228 | 443 } |
444 | |
461 | 445 #ifdef TRACE |
446 static inline void put_v_trace(ByteIOContext *bc, uint64_t v, char *file, char *func, int line){ | |
447 printf("get_v %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
885 | 448 |
461 | 449 put_v(bc, v); |
450 } | |
451 | |
452 static inline void put_s_trace(ByteIOContext *bc, int64_t v, char *file, char *func, int line){ | |
453 printf("get_s %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
885 | 454 |
461 | 455 put_s(bc, v); |
456 } | |
457 | |
458 static inline void put_vb_trace(ByteIOContext *bc, uint64_t v, char *file, char *func, int line){ | |
459 printf("get_vb %5lld / %llX in %s %s:%d\n", v, v, file, func, line); | |
885 | 460 |
461 | 461 put_vb(bc, v); |
462 } | |
463 #define put_v(bc, v) put_v_trace(bc, v, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
464 #define put_s(bc, v) put_s_trace(bc, v, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
465 #define put_vb(bc, v) put_vb_trace(bc, v, __FILE__, __PRETTY_FUNCTION__, __LINE__) | |
466 #endif | |
467 | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
468 static int put_packetheader(NUTContext *nut, ByteIOContext *bc, int max_size, int calculate_checksum) |
219 | 469 { |
470 put_flush_packet(bc); | |
853 | 471 nut->packet_start[2]= url_ftell(bc) - 8; |
403 | 472 nut->written_packet_size = max_size; |
885 | 473 |
854 | 474 /* packet header */ |
475 put_v(bc, nut->written_packet_size); /* forward ptr */ | |
476 | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
477 if(calculate_checksum) |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
478 init_checksum(bc, update_adler32, 0); |
403 | 479 |
219 | 480 return 0; |
481 } | |
482 | |
853 | 483 /** |
484 * | |
485 * must not be called more then once per packet | |
486 */ | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
487 static int update_packetheader(NUTContext *nut, ByteIOContext *bc, int additional_size, int calculate_checksum){ |
456 | 488 int64_t start= nut->packet_start[2]; |
403 | 489 int64_t cur= url_ftell(bc); |
853 | 490 int size= cur - start - get_length(nut->written_packet_size)/7 - 8; |
885 | 491 |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
492 if(calculate_checksum) |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
493 size += 4; |
885 | 494 |
403 | 495 if(size != nut->written_packet_size){ |
496 int i; | |
497 | |
498 assert( size <= nut->written_packet_size ); | |
885 | 499 |
456 | 500 url_fseek(bc, start + 8, SEEK_SET); |
403 | 501 for(i=get_length(size); i < get_length(nut->written_packet_size); i+=7) |
502 put_byte(bc, 0x80); | |
503 put_v(bc, size); | |
219 | 504 |
403 | 505 url_fseek(bc, cur, SEEK_SET); |
506 nut->written_packet_size= size; //FIXME may fail if multiple updates with differing sizes, as get_length may differ | |
885 | 507 |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
508 if(calculate_checksum) |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
509 put_be32(bc, get_checksum(bc)); |
403 | 510 } |
885 | 511 |
219 | 512 return 0; |
513 } | |
514 | |
515 static int nut_write_header(AVFormatContext *s) | |
516 { | |
517 NUTContext *nut = s->priv_data; | |
518 ByteIOContext *bc = &s->pb; | |
519 AVCodecContext *codec; | |
461 | 520 int i, j, tmp_time, tmp_flags,tmp_stream, tmp_mul, tmp_size, tmp_fields; |
219 | 521 |
1066 | 522 if (strcmp(s->filename, "./data/b-libav.nut")) { |
523 av_log(s, AV_LOG_ERROR, " libavformat NUT is non-compliant and disabled\n"); | |
524 return -1; | |
525 } | |
526 | |
403 | 527 nut->avf= s; |
885 | 528 |
529 nut->stream = | |
887 | 530 av_mallocz(sizeof(StreamContext)*s->nb_streams); |
885 | 531 |
478 | 532 |
533 put_buffer(bc, ID_STRING, strlen(ID_STRING)); | |
534 put_byte(bc, 0); | |
535 nut->packet_start[2]= url_ftell(bc); | |
885 | 536 |
219 | 537 /* main header */ |
220 | 538 put_be64(bc, MAIN_STARTCODE); |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
539 put_packetheader(nut, bc, 120+5*256, 1); |
456 | 540 put_v(bc, 2); /* version */ |
219 | 541 put_v(bc, s->nb_streams); |
456 | 542 put_v(bc, MAX_DISTANCE); |
478 | 543 put_v(bc, MAX_SHORT_DISTANCE); |
885 | 544 |
461 | 545 put_v(bc, nut->rate_num=1); |
546 put_v(bc, nut->rate_den=2); | |
547 put_v(bc, nut->short_startcode=0x4EFE79); | |
885 | 548 |
403 | 549 build_frame_code(s); |
461 | 550 assert(nut->frame_code['N'].flags == FLAG_INVALID); |
885 | 551 |
461 | 552 tmp_time= tmp_flags= tmp_stream= tmp_mul= tmp_size= /*tmp_res=*/ INT_MAX; |
403 | 553 for(i=0; i<256;){ |
461 | 554 tmp_fields=0; |
555 tmp_size= 0; | |
556 if(tmp_time != nut->frame_code[i].timestamp_delta) tmp_fields=1; | |
557 if(tmp_mul != nut->frame_code[i].size_mul ) tmp_fields=2; | |
558 if(tmp_stream != nut->frame_code[i].stream_id_plus1) tmp_fields=3; | |
559 if(tmp_size != nut->frame_code[i].size_lsb ) tmp_fields=4; | |
560 // if(tmp_res != nut->frame_code[i].res ) tmp_fields=5; | |
403 | 561 |
461 | 562 tmp_time = nut->frame_code[i].timestamp_delta; |
563 tmp_flags = nut->frame_code[i].flags; | |
564 tmp_stream= nut->frame_code[i].stream_id_plus1; | |
565 tmp_mul = nut->frame_code[i].size_mul; | |
566 tmp_size = nut->frame_code[i].size_lsb; | |
567 // tmp_res = nut->frame_code[i].res; | |
885 | 568 |
403 | 569 for(j=0; i<256; j++,i++){ |
461 | 570 if(nut->frame_code[i].timestamp_delta != tmp_time ) break; |
403 | 571 if(nut->frame_code[i].flags != tmp_flags ) break; |
572 if(nut->frame_code[i].stream_id_plus1 != tmp_stream) break; | |
573 if(nut->frame_code[i].size_mul != tmp_mul ) break; | |
461 | 574 if(nut->frame_code[i].size_lsb != tmp_size+j) break; |
575 // if(nut->frame_code[i].res != tmp_res ) break; | |
403 | 576 } |
461 | 577 if(j != tmp_mul - tmp_size) tmp_fields=6; |
578 | |
579 put_v(bc, tmp_flags); | |
580 put_v(bc, tmp_fields); | |
581 if(tmp_fields>0) put_s(bc, tmp_time); | |
582 if(tmp_fields>1) put_v(bc, tmp_mul); | |
583 if(tmp_fields>2) put_v(bc, tmp_stream); | |
584 if(tmp_fields>3) put_v(bc, tmp_size); | |
585 if(tmp_fields>4) put_v(bc, 0 /*tmp_res*/); | |
586 if(tmp_fields>5) put_v(bc, j); | |
403 | 587 } |
588 | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
589 update_packetheader(nut, bc, 0, 1); |
885 | 590 |
219 | 591 /* stream headers */ |
592 for (i = 0; i < s->nb_streams; i++) | |
593 { | |
887 | 594 int nom, denom, ssize; |
271 | 595 |
887 | 596 codec = s->streams[i]->codec; |
885 | 597 |
887 | 598 put_be64(bc, STREAM_STARTCODE); |
599 put_packetheader(nut, bc, 120 + codec->extradata_size, 1); | |
600 put_v(bc, i /*s->streams[i]->index*/); | |
782 | 601 switch(codec->codec_type){ |
602 case CODEC_TYPE_VIDEO: put_v(bc, 0); break; | |
603 case CODEC_TYPE_AUDIO: put_v(bc, 1); break; | |
604 // case CODEC_TYPE_TEXT : put_v(bc, 2); break; | |
605 case CODEC_TYPE_DATA : put_v(bc, 3); break; | |
606 default: return -1; | |
607 } | |
887 | 608 if (codec->codec_tag) |
609 put_vb(bc, codec->codec_tag); | |
610 else if (codec->codec_type == CODEC_TYPE_VIDEO) | |
611 { | |
612 put_vb(bc, codec_get_bmp_tag(codec->codec_id)); | |
613 } | |
614 else if (codec->codec_type == CODEC_TYPE_AUDIO) | |
615 { | |
616 put_vb(bc, codec_get_wav_tag(codec->codec_id)); | |
617 } | |
415 | 618 else |
426 | 619 put_vb(bc, 0); |
885 | 620 |
782 | 621 ff_parse_specific_params(codec, &nom, &ssize, &denom); |
282 | 622 |
403 | 623 nut->stream[i].rate_num= nom; |
624 nut->stream[i].rate_den= denom; | |
463
696f41bc8784
store index for seeking in the native timebase of each stream
michael
parents:
462
diff
changeset
|
625 av_set_pts_info(s->streams[i], 60, denom, nom); |
403 | 626 |
887 | 627 put_v(bc, codec->bit_rate); |
628 put_vb(bc, 0); /* no language code */ | |
629 put_v(bc, nom); | |
630 put_v(bc, denom); | |
403 | 631 if(nom / denom < 1000) |
887 | 632 nut->stream[i].msb_timestamp_shift = 7; |
403 | 633 else |
887 | 634 nut->stream[i].msb_timestamp_shift = 14; |
635 put_v(bc, nut->stream[i].msb_timestamp_shift); | |
456 | 636 put_v(bc, codec->has_b_frames); |
887 | 637 put_byte(bc, 0); /* flags: 0x1 - fixed_fps, 0x2 - index_present */ |
885 | 638 |
403 | 639 if(codec->extradata_size){ |
640 put_v(bc, 1); | |
641 put_v(bc, codec->extradata_size); | |
885 | 642 put_buffer(bc, codec->extradata, codec->extradata_size); |
403 | 643 } |
887 | 644 put_v(bc, 0); /* end of codec specific headers */ |
885 | 645 |
887 | 646 switch(codec->codec_type) |
647 { | |
648 case CODEC_TYPE_AUDIO: | |
649 put_v(bc, codec->sample_rate); | |
650 put_v(bc, 1); | |
651 put_v(bc, codec->channels); | |
652 break; | |
653 case CODEC_TYPE_VIDEO: | |
654 put_v(bc, codec->width); | |
655 put_v(bc, codec->height); | |
656 put_v(bc, codec->sample_aspect_ratio.num); | |
657 put_v(bc, codec->sample_aspect_ratio.den); | |
658 put_v(bc, 0); /* csp type -- unknown */ | |
659 break; | |
228 | 660 default: |
661 break; | |
887 | 662 } |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
663 update_packetheader(nut, bc, 0, 1); |
219 | 664 } |
665 | |
666 /* info header */ | |
223 | 667 put_be64(bc, INFO_STARTCODE); |
415 | 668 put_packetheader(nut, bc, 30+strlen(s->author)+strlen(s->title)+ |
885 | 669 strlen(s->comment)+strlen(s->copyright)+strlen(LIBAVFORMAT_IDENT), 1); |
219 | 670 if (s->author[0]) |
671 { | |
415 | 672 put_v(bc, 9); /* type */ |
673 put_str(bc, s->author); | |
219 | 674 } |
675 if (s->title[0]) | |
676 { | |
415 | 677 put_v(bc, 10); /* type */ |
678 put_str(bc, s->title); | |
219 | 679 } |
680 if (s->comment[0]) | |
681 { | |
415 | 682 put_v(bc, 11); /* type */ |
683 put_str(bc, s->comment); | |
219 | 684 } |
685 if (s->copyright[0]) | |
686 { | |
415 | 687 put_v(bc, 12); /* type */ |
688 put_str(bc, s->copyright); | |
219 | 689 } |
690 /* encoder */ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
691 if(!(s->streams[0]->codec->flags & CODEC_FLAG_BITEXACT)){ |
441 | 692 put_v(bc, 13); /* type */ |
693 put_str(bc, LIBAVFORMAT_IDENT); | |
694 } | |
885 | 695 |
222 | 696 put_v(bc, 0); /* eof info */ |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
697 update_packetheader(nut, bc, 0, 1); |
885 | 698 |
219 | 699 put_flush_packet(bc); |
885 | 700 |
219 | 701 return 0; |
702 } | |
703 | |
468 | 704 static int nut_write_packet(AVFormatContext *s, AVPacket *pkt) |
219 | 705 { |
706 NUTContext *nut = s->priv_data; | |
468 | 707 StreamContext *stream= &nut->stream[pkt->stream_index]; |
219 | 708 ByteIOContext *bc = &s->pb; |
403 | 709 int key_frame = 0, full_pts=0; |
219 | 710 AVCodecContext *enc; |
456 | 711 int64_t coded_pts; |
461 | 712 int frame_type, best_length, frame_code, flags, i, size_mul, size_lsb, time_delta; |
403 | 713 const int64_t frame_start= url_ftell(bc); |
468 | 714 int64_t pts= pkt->pts; |
715 int size= pkt->size; | |
716 int stream_index= pkt->stream_index; | |
219 | 717 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
718 enc = s->streams[stream_index]->codec; |
468 | 719 key_frame = !!(pkt->flags & PKT_FLAG_KEY); |
885 | 720 |
403 | 721 frame_type=0; |
456 | 722 if(frame_start + size + 20 - FFMAX(nut->packet_start[1], nut->packet_start[2]) > MAX_DISTANCE) |
723 frame_type=2; | |
724 if(key_frame && !stream->last_key_frame) | |
725 frame_type=2; | |
726 | |
461 | 727 if(frame_type>1){ |
728 int64_t global_ts= av_rescale(pts, stream->rate_den*(int64_t)nut->rate_num, stream->rate_num*(int64_t)nut->rate_den); | |
729 reset(s, global_ts); | |
887 | 730 put_be64(bc, KEYFRAME_STARTCODE); |
461 | 731 put_v(bc, global_ts); |
732 } | |
733 assert(stream->last_pts != AV_NOPTS_VALUE); | |
734 coded_pts = pts & ((1<<stream->msb_timestamp_shift)-1); | |
735 if(lsb2full(stream, coded_pts) != pts) | |
456 | 736 full_pts=1; |
328 | 737 |
456 | 738 if(full_pts) |
739 coded_pts= pts + (1<<stream->msb_timestamp_shift); | |
403 | 740 |
741 best_length=INT_MAX; | |
742 frame_code= -1; | |
743 for(i=0; i<256; i++){ | |
744 int stream_id_plus1= nut->frame_code[i].stream_id_plus1; | |
429
983639863758
removing keyframe prediction and checksum threshold
michael
parents:
427
diff
changeset
|
745 int fc_key_frame; |
403 | 746 int length=0; |
747 size_mul= nut->frame_code[i].size_mul; | |
748 size_lsb= nut->frame_code[i].size_lsb; | |
461 | 749 time_delta= nut->frame_code[i].timestamp_delta; |
403 | 750 flags= nut->frame_code[i].flags; |
751 | |
456 | 752 assert(size_mul > size_lsb); |
885 | 753 |
403 | 754 if(stream_id_plus1 == 0) length+= get_length(stream_index); |
755 else if(stream_id_plus1 - 1 != stream_index) | |
756 continue; | |
429
983639863758
removing keyframe prediction and checksum threshold
michael
parents:
427
diff
changeset
|
757 fc_key_frame= !!(flags & FLAG_KEY_FRAME); |
983639863758
removing keyframe prediction and checksum threshold
michael
parents:
427
diff
changeset
|
758 |
403 | 759 assert(key_frame==0 || key_frame==1); |
760 if(fc_key_frame != key_frame) | |
761 continue; | |
762 | |
456 | 763 if(flags & FLAG_DATA_SIZE){ |
403 | 764 if(size % size_mul != size_lsb) |
765 continue; | |
456 | 766 length += get_length(size / size_mul); |
767 }else if(size != size_lsb) | |
768 continue; | |
220 | 769 |
461 | 770 if(full_pts && time_delta) |
403 | 771 continue; |
885 | 772 |
461 | 773 if(!time_delta){ |
456 | 774 length += get_length(coded_pts); |
403 | 775 }else{ |
461 | 776 if(time_delta != pts - stream->last_pts) |
403 | 777 continue; |
778 } | |
779 | |
780 if(length < best_length){ | |
781 best_length= length; | |
782 frame_code=i; | |
783 } | |
784 // av_log(s, AV_LOG_DEBUG, "%d %d %d %d %d %d %d %d %d %d\n", key_frame, frame_type, full_pts, size, stream_index, flags, size_mul, size_lsb, stream_id_plus1, length); | |
785 } | |
223 | 786 |
403 | 787 assert(frame_code != -1); |
788 flags= nut->frame_code[frame_code].flags; | |
789 size_mul= nut->frame_code[frame_code].size_mul; | |
790 size_lsb= nut->frame_code[frame_code].size_lsb; | |
461 | 791 time_delta= nut->frame_code[frame_code].timestamp_delta; |
792 #ifdef TRACE | |
403 | 793 best_length /= 7; |
794 best_length ++; //frame_code | |
456 | 795 if(frame_type==2){ |
796 best_length += 8; // startcode | |
403 | 797 } |
461 | 798 av_log(s, AV_LOG_DEBUG, "kf:%d ft:%d pt:%d fc:%2X len:%2d size:%d stream:%d flag:%d mul:%d lsb:%d s+1:%d pts_delta:%d pts:%lld fs:%lld\n", key_frame, frame_type, full_pts ? 1 : 0, frame_code, best_length, size, stream_index, flags, size_mul, size_lsb, nut->frame_code[frame_code].stream_id_plus1,(int)(pts - stream->last_pts), pts, frame_start); |
456 | 799 // av_log(s, AV_LOG_DEBUG, "%d %d %d\n", stream->lru_pts_delta[0], stream->lru_pts_delta[1], stream->lru_pts_delta[2]); |
403 | 800 #endif |
801 | |
456 | 802 assert(frame_type != 1); //short startcode not implemented yet |
403 | 803 put_byte(bc, frame_code); |
804 | |
805 if(nut->frame_code[frame_code].stream_id_plus1 == 0) | |
806 put_v(bc, stream_index); | |
461 | 807 if (!time_delta){ |
456 | 808 put_v(bc, coded_pts); |
403 | 809 } |
810 if(flags & FLAG_DATA_SIZE) | |
811 put_v(bc, size / size_mul); | |
461 | 812 else |
813 assert(size == size_lsb); | |
456 | 814 if(size > MAX_DISTANCE){ |
815 assert(frame_type > 1); | |
403 | 816 } |
885 | 817 |
468 | 818 put_buffer(bc, pkt->data, size); |
403 | 819 |
820 update(nut, stream_index, frame_start, frame_type, frame_code, key_frame, size, pts); | |
885 | 821 |
219 | 822 return 0; |
823 } | |
824 | |
825 static int nut_write_trailer(AVFormatContext *s) | |
826 { | |
328 | 827 NUTContext *nut = s->priv_data; |
219 | 828 ByteIOContext *bc = &s->pb; |
403 | 829 |
219 | 830 #if 0 |
831 int i; | |
832 | |
833 /* WRITE INDEX */ | |
834 | |
835 for (i = 0; s->nb_streams; i++) | |
836 { | |
887 | 837 put_be64(bc, INDEX_STARTCODE); |
838 put_packetheader(nut, bc, 64, 1); | |
839 put_v(bc, s->streams[i]->id); | |
840 put_v(bc, ...); | |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
841 update_packetheader(nut, bc, 0, 1); |
219 | 842 } |
843 #endif | |
844 | |
845 put_flush_packet(bc); | |
885 | 846 |
403 | 847 av_freep(&nut->stream); |
219 | 848 |
849 return 0; | |
850 } | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
851 #endif //CONFIG_MUXERS |
219 | 852 |
853 static int nut_probe(AVProbeData *p) | |
854 { | |
220 | 855 int i; |
456 | 856 uint64_t code= 0xff; |
220 | 857 |
858 for (i = 0; i < p->buf_size; i++) { | |
456 | 859 code = (code << 8) | p->buf[i]; |
220 | 860 if (code == MAIN_STARTCODE) |
861 return AVPROBE_SCORE_MAX; | |
862 } | |
863 return 0; | |
219 | 864 } |
865 | |
419 | 866 static int decode_main_header(NUTContext *nut){ |
867 AVFormatContext *s= nut->avf; | |
219 | 868 ByteIOContext *bc = &s->pb; |
220 | 869 uint64_t tmp; |
461 | 870 int i, j, tmp_stream, tmp_mul, tmp_time, tmp_size, count, tmp_res; |
885 | 871 |
456 | 872 get_packetheader(nut, bc, 1); |
403 | 873 |
419 | 874 tmp = get_v(bc); |
456 | 875 if (tmp != 2){ |
887 | 876 av_log(s, AV_LOG_ERROR, "bad version (%"PRId64")\n", tmp); |
419 | 877 return -1; |
878 } | |
885 | 879 |
419 | 880 nut->stream_count = get_v(bc); |
639 | 881 if(nut->stream_count > MAX_STREAMS){ |
882 av_log(s, AV_LOG_ERROR, "too many streams\n"); | |
883 return -1; | |
884 } | |
456 | 885 nut->max_distance = get_v(bc); |
478 | 886 nut->max_short_distance = get_v(bc); |
461 | 887 nut->rate_num= get_v(bc); |
888 nut->rate_den= get_v(bc); | |
889 nut->short_startcode= get_v(bc); | |
890 if(nut->short_startcode>>16 != 'N'){ | |
887 | 891 av_log(s, AV_LOG_ERROR, "invalid short startcode %X\n", nut->short_startcode); |
461 | 892 return -1; |
893 } | |
885 | 894 |
403 | 895 for(i=0; i<256;){ |
896 int tmp_flags = get_v(bc); | |
461 | 897 int tmp_fields= get_v(bc); |
898 if(tmp_fields>0) tmp_time = get_s(bc); | |
899 if(tmp_fields>1) tmp_mul = get_v(bc); | |
900 if(tmp_fields>2) tmp_stream= get_v(bc); | |
901 if(tmp_fields>3) tmp_size = get_v(bc); | |
902 else tmp_size = 0; | |
903 if(tmp_fields>4) tmp_res = get_v(bc); | |
904 else tmp_res = 0; | |
905 if(tmp_fields>5) count = get_v(bc); | |
906 else count = tmp_mul - tmp_size; | |
885 | 907 |
908 while(tmp_fields-- > 6) | |
461 | 909 get_v(bc); |
885 | 910 |
403 | 911 if(count == 0 || i+count > 256){ |
912 av_log(s, AV_LOG_ERROR, "illegal count %d at %d\n", count, i); | |
913 return -1; | |
914 } | |
461 | 915 if(tmp_stream > nut->stream_count + 1){ |
916 av_log(s, AV_LOG_ERROR, "illegal stream number\n"); | |
917 return -1; | |
918 } | |
403 | 919 |
920 for(j=0; j<count; j++,i++){ | |
921 nut->frame_code[i].flags = tmp_flags ; | |
461 | 922 nut->frame_code[i].timestamp_delta = tmp_time ; |
403 | 923 nut->frame_code[i].stream_id_plus1 = tmp_stream; |
924 nut->frame_code[i].size_mul = tmp_mul ; | |
461 | 925 nut->frame_code[i].size_lsb = tmp_size+j; |
926 nut->frame_code[i].reserved_count = tmp_res ; | |
403 | 927 } |
928 } | |
461 | 929 if(nut->frame_code['N'].flags != FLAG_INVALID){ |
403 | 930 av_log(s, AV_LOG_ERROR, "illegal frame_code table\n"); |
931 return -1; | |
932 } | |
419 | 933 |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
934 if(check_checksum(bc)){ |
735
72f8690c3f37
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
melanson
parents:
709
diff
changeset
|
935 av_log(s, AV_LOG_ERROR, "Main header checksum mismatch\n"); |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
936 return -1; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
937 } |
419 | 938 |
939 return 0; | |
940 } | |
941 | |
942 static int decode_stream_header(NUTContext *nut){ | |
943 AVFormatContext *s= nut->avf; | |
944 ByteIOContext *bc = &s->pb; | |
461 | 945 int class, nom, denom, stream_id; |
419 | 946 uint64_t tmp; |
947 AVStream *st; | |
885 | 948 |
456 | 949 get_packetheader(nut, bc, 1); |
419 | 950 stream_id= get_v(bc); |
951 if(stream_id >= nut->stream_count || s->streams[stream_id]) | |
952 return -1; | |
885 | 953 |
419 | 954 st = av_new_stream(s, stream_id); |
955 if (!st) | |
956 return AVERROR_NOMEM; | |
462
b69898ffc92a
move time_base (pts_num/pts_den) from AVFormatContext -> AVStream
michael
parents:
461
diff
changeset
|
957 |
419 | 958 class = get_v(bc); |
426 | 959 tmp = get_vb(bc); |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
960 st->codec->codec_tag= tmp; |
419 | 961 switch(class) |
962 { | |
963 case 0: | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
964 st->codec->codec_type = CODEC_TYPE_VIDEO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
965 st->codec->codec_id = codec_get_bmp_id(tmp); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
966 if (st->codec->codec_id == CODEC_ID_NONE) |
419 | 967 av_log(s, AV_LOG_ERROR, "Unknown codec?!\n"); |
968 break; | |
782 | 969 case 1: |
970 case 32: //compatibility | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
971 st->codec->codec_type = CODEC_TYPE_AUDIO; |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
972 st->codec->codec_id = codec_get_wav_id(tmp); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
973 if (st->codec->codec_id == CODEC_ID_NONE) |
419 | 974 av_log(s, AV_LOG_ERROR, "Unknown codec?!\n"); |
975 break; | |
782 | 976 case 2: |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
977 // st->codec->codec_type = CODEC_TYPE_TEXT; |
782 | 978 // break; |
979 case 3: | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
980 st->codec->codec_type = CODEC_TYPE_DATA; |
782 | 981 break; |
419 | 982 default: |
983 av_log(s, AV_LOG_ERROR, "Unknown stream class (%d)\n", class); | |
984 return -1; | |
985 } | |
986 s->bit_rate += get_v(bc); | |
426 | 987 get_vb(bc); /* language code */ |
419 | 988 nom = get_v(bc); |
989 denom = get_v(bc); | |
990 nut->stream[stream_id].msb_timestamp_shift = get_v(bc); | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
991 st->codec->has_b_frames= |
456 | 992 nut->stream[stream_id].decode_delay= get_v(bc); |
419 | 993 get_byte(bc); /* flags */ |
994 | |
995 /* codec specific data headers */ | |
996 while(get_v(bc) != 0){ | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
997 st->codec->extradata_size= get_v(bc); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
998 if((unsigned)st->codec->extradata_size > (1<<30)) |
639 | 999 return -1; |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1000 st->codec->extradata= av_mallocz(st->codec->extradata_size + FF_INPUT_BUFFER_PADDING_SIZE); |
885 | 1001 get_buffer(bc, st->codec->extradata, st->codec->extradata_size); |
887 | 1002 // url_fskip(bc, get_v(bc)); |
419 | 1003 } |
885 | 1004 |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1005 if (st->codec->codec_type == CODEC_TYPE_VIDEO) /* VIDEO */ |
419 | 1006 { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1007 st->codec->width = get_v(bc); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1008 st->codec->height = get_v(bc); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1009 st->codec->sample_aspect_ratio.num= get_v(bc); |
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1010 st->codec->sample_aspect_ratio.den= get_v(bc); |
419 | 1011 get_v(bc); /* csp type */ |
1012 } | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1013 if (st->codec->codec_type == CODEC_TYPE_AUDIO) /* AUDIO */ |
419 | 1014 { |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1015 st->codec->sample_rate = get_v(bc); |
456 | 1016 get_v(bc); // samplerate_den |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1017 st->codec->channels = get_v(bc); |
419 | 1018 } |
1019 if(check_checksum(bc)){ | |
735
72f8690c3f37
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
melanson
parents:
709
diff
changeset
|
1020 av_log(s, AV_LOG_ERROR, "Stream header %d checksum mismatch\n", stream_id); |
419 | 1021 return -1; |
1022 } | |
463
696f41bc8784
store index for seeking in the native timebase of each stream
michael
parents:
462
diff
changeset
|
1023 av_set_pts_info(s->streams[stream_id], 60, denom, nom); |
419 | 1024 nut->stream[stream_id].rate_num= nom; |
1025 nut->stream[stream_id].rate_den= denom; | |
1026 return 0; | |
1027 } | |
1028 | |
1029 static int decode_info_header(NUTContext *nut){ | |
1030 AVFormatContext *s= nut->avf; | |
1031 ByteIOContext *bc = &s->pb; | |
885 | 1032 |
456 | 1033 get_packetheader(nut, bc, 1); |
419 | 1034 |
1035 for(;;){ | |
1036 int id= get_v(bc); | |
1037 char *name, *type, custom_name[256], custom_type[256]; | |
1038 | |
1039 if(!id) | |
1040 break; | |
1041 else if(id >= sizeof(info_table)/sizeof(info_table[0])){ | |
881 | 1042 av_log(s, AV_LOG_ERROR, "info id is too large %d %zd\n", id, sizeof(info_table)/sizeof(info_table[0])); |
419 | 1043 return -1; |
1044 } | |
1045 | |
1046 type= info_table[id][1]; | |
1047 name= info_table[id][0]; | |
1048 //av_log(s, AV_LOG_DEBUG, "%d %s %s\n", id, type, name); | |
1049 | |
1050 if(!type){ | |
1051 get_str(bc, custom_type, sizeof(custom_type)); | |
1052 type= custom_type; | |
1053 } | |
1054 if(!name){ | |
1055 get_str(bc, custom_name, sizeof(custom_name)); | |
1056 name= custom_name; | |
1057 } | |
885 | 1058 |
419 | 1059 if(!strcmp(type, "v")){ |
683
095009fc2f35
kill warnings patch by (M«©ns Rullg«©rd <mru inprovide com>)
michael
parents:
682
diff
changeset
|
1060 get_v(bc); |
419 | 1061 }else{ |
1062 if(!strcmp(name, "Author")) | |
1063 get_str(bc, s->author, sizeof(s->author)); | |
1064 else if(!strcmp(name, "Title")) | |
1065 get_str(bc, s->title, sizeof(s->title)); | |
1066 else if(!strcmp(name, "Copyright")) | |
1067 get_str(bc, s->copyright, sizeof(s->copyright)); | |
1068 else if(!strcmp(name, "Description")) | |
1069 get_str(bc, s->comment, sizeof(s->comment)); | |
1070 else | |
1071 get_str(bc, NULL, 0); | |
1072 } | |
1073 } | |
1074 if(check_checksum(bc)){ | |
735
72f8690c3f37
Ministry of English Composition, reporting for duty (and the word is "skipped", not "skiped"; "skiped" would rhyme with "hyped")
melanson
parents:
709
diff
changeset
|
1075 av_log(s, AV_LOG_ERROR, "Info header checksum mismatch\n"); |
419 | 1076 return -1; |
1077 } | |
1078 return 0; | |
1079 } | |
1080 | |
1081 static int nut_read_header(AVFormatContext *s, AVFormatParameters *ap) | |
1082 { | |
1083 NUTContext *nut = s->priv_data; | |
1084 ByteIOContext *bc = &s->pb; | |
1085 int64_t pos; | |
1086 int inited_stream_count; | |
1087 | |
1088 nut->avf= s; | |
885 | 1089 |
419 | 1090 /* main header */ |
1091 pos=0; | |
1092 for(;;){ | |
426 | 1093 pos= find_startcode(bc, MAIN_STARTCODE, pos)+1; |
1094 if (pos<0){ | |
419 | 1095 av_log(s, AV_LOG_ERROR, "no main startcode found\n"); |
1096 return -1; | |
1097 } | |
1098 if(decode_main_header(nut) >= 0) | |
1099 break; | |
1100 } | |
885 | 1101 |
1102 | |
219 | 1103 s->bit_rate = 0; |
328 | 1104 |
419 | 1105 nut->stream = av_malloc(sizeof(StreamContext)*nut->stream_count); |
272 | 1106 |
419 | 1107 /* stream headers */ |
1108 pos=0; | |
1109 for(inited_stream_count=0; inited_stream_count < nut->stream_count;){ | |
426 | 1110 pos= find_startcode(bc, STREAM_STARTCODE, pos)+1; |
782 | 1111 if (pos<0+1){ |
419 | 1112 av_log(s, AV_LOG_ERROR, "not all stream headers found\n"); |
418
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
1113 return -1; |
41da3366d341
checksuming for nut & nice checksum API for libavformat
michael
parents:
416
diff
changeset
|
1114 } |
419 | 1115 if(decode_stream_header(nut) >= 0) |
1116 inited_stream_count++; | |
415 | 1117 } |
1118 | |
419 | 1119 /* info headers */ |
1120 pos=0; | |
1121 for(;;){ | |
1122 uint64_t startcode= find_any_startcode(bc, pos); | |
1123 pos= url_ftell(bc); | |
415 | 1124 |
419 | 1125 if(startcode==0){ |
1126 av_log(s, AV_LOG_ERROR, "EOF before video frames\n"); | |
1127 return -1; | |
1128 }else if(startcode == KEYFRAME_STARTCODE){ | |
421 | 1129 nut->next_startcode= startcode; |
419 | 1130 break; |
1131 }else if(startcode != INFO_STARTCODE){ | |
1132 continue; | |
415 | 1133 } |
419 | 1134 |
1135 decode_info_header(nut); | |
1136 } | |
1137 | |
219 | 1138 return 0; |
1139 } | |
1140 | |
461 | 1141 static int decode_frame_header(NUTContext *nut, int *key_frame_ret, int64_t *pts_ret, int *stream_id_ret, int frame_code, int frame_type, int64_t frame_start){ |
421 | 1142 AVFormatContext *s= nut->avf; |
403 | 1143 StreamContext *stream; |
219 | 1144 ByteIOContext *bc = &s->pb; |
461 | 1145 int size, flags, size_mul, size_lsb, stream_id, time_delta; |
328 | 1146 int64_t pts = 0; |
219 | 1147 |
456 | 1148 if(frame_type < 2 && frame_start - nut->packet_start[2] > nut->max_distance){ |
1149 av_log(s, AV_LOG_ERROR, "last frame must have been damaged\n"); | |
1150 return -1; | |
1151 } | |
1152 | |
1153 if(frame_type) | |
1154 nut->packet_start[ frame_type ]= frame_start; //otherwise 1 goto 1 may happen | |
885 | 1155 |
403 | 1156 flags= nut->frame_code[frame_code].flags; |
1157 size_mul= nut->frame_code[frame_code].size_mul; | |
1158 size_lsb= nut->frame_code[frame_code].size_lsb; | |
1159 stream_id= nut->frame_code[frame_code].stream_id_plus1 - 1; | |
461 | 1160 time_delta= nut->frame_code[frame_code].timestamp_delta; |
885 | 1161 |
403 | 1162 if(stream_id==-1) |
1163 stream_id= get_v(bc); | |
1164 if(stream_id >= s->nb_streams){ | |
1165 av_log(s, AV_LOG_ERROR, "illegal stream_id\n"); | |
1166 return -1; | |
1167 } | |
1168 stream= &nut->stream[stream_id]; | |
421 | 1169 |
1170 // av_log(s, AV_LOG_DEBUG, "ft:%d ppts:%d %d %d\n", frame_type, stream->lru_pts_delta[0], stream->lru_pts_delta[1], stream->lru_pts_delta[2]); | |
456 | 1171 |
1172 *key_frame_ret= !!(flags & FLAG_KEY_FRAME); | |
403 | 1173 |
461 | 1174 if(!time_delta){ |
456 | 1175 int64_t mask = (1<<stream->msb_timestamp_shift)-1; |
1176 pts= get_v(bc); | |
1177 if(pts > mask){ | |
1178 pts -= mask+1; | |
1179 }else{ | |
1180 if(stream->last_pts == AV_NOPTS_VALUE){ | |
1181 av_log(s, AV_LOG_ERROR, "no reference pts available\n"); | |
1182 return -1; | |
426 | 1183 } |
456 | 1184 pts= lsb2full(stream, pts); |
403 | 1185 } |
1186 }else{ | |
456 | 1187 if(stream->last_pts == AV_NOPTS_VALUE){ |
1188 av_log(s, AV_LOG_ERROR, "no reference pts available\n"); | |
1189 return -1; | |
1190 } | |
461 | 1191 pts= stream->last_pts + time_delta; |
403 | 1192 } |
456 | 1193 |
1194 if(*key_frame_ret){ | |
1195 // av_log(s, AV_LOG_DEBUG, "stream:%d start:%lld pts:%lld length:%lld\n",stream_id, frame_start, av_pts, frame_start - nut->stream[stream_id].last_sync_pos); | |
1196 av_add_index_entry( | |
885 | 1197 s->streams[stream_id], |
1198 frame_start, | |
1199 pts, | |
979 | 1200 0, |
456 | 1201 frame_start - nut->stream[stream_id].last_sync_pos, |
1202 AVINDEX_KEYFRAME); | |
1203 nut->stream[stream_id].last_sync_pos= frame_start; | |
1204 // assert(nut->packet_start == frame_start); | |
403 | 1205 } |
456 | 1206 |
1207 assert(size_mul > size_lsb); | |
1208 size= size_lsb; | |
1209 if(flags & FLAG_DATA_SIZE) | |
1210 size+= size_mul*get_v(bc); | |
885 | 1211 |
461 | 1212 #ifdef TRACE |
1213 av_log(s, AV_LOG_DEBUG, "fs:%lld fc:%d ft:%d kf:%d pts:%lld size:%d mul:%d lsb:%d flags:%d delta:%d\n", frame_start, frame_code, frame_type, *key_frame_ret, pts, size, size_mul, size_lsb, flags, time_delta); | |
1214 #endif | |
421 | 1215 |
456 | 1216 if(frame_type==0 && url_ftell(bc) - nut->packet_start[2] + size > nut->max_distance){ |
421 | 1217 av_log(s, AV_LOG_ERROR, "frame size too large\n"); |
1218 return -1; | |
1219 } | |
885 | 1220 |
456 | 1221 *stream_id_ret = stream_id; |
463
696f41bc8784
store index for seeking in the native timebase of each stream
michael
parents:
462
diff
changeset
|
1222 *pts_ret = pts; |
456 | 1223 |
1224 update(nut, stream_id, frame_start, frame_type, frame_code, *key_frame_ret, size, pts); | |
1225 | |
1226 return size; | |
1227 } | |
1228 | |
461 | 1229 static int decode_frame(NUTContext *nut, AVPacket *pkt, int frame_code, int frame_type, int64_t frame_start){ |
456 | 1230 AVFormatContext *s= nut->avf; |
1231 ByteIOContext *bc = &s->pb; | |
708 | 1232 int size, stream_id, key_frame, discard; |
1233 int64_t pts, last_IP_pts; | |
885 | 1234 |
461 | 1235 size= decode_frame_header(nut, &key_frame, &pts, &stream_id, frame_code, frame_type, frame_start); |
456 | 1236 if(size < 0) |
1237 return -1; | |
1238 | |
708 | 1239 discard= s->streams[ stream_id ]->discard; |
1240 last_IP_pts= s->streams[ stream_id ]->last_IP_pts; | |
1241 if( (discard >= AVDISCARD_NONKEY && !key_frame) | |
1242 ||(discard >= AVDISCARD_BIDIR && last_IP_pts != AV_NOPTS_VALUE && last_IP_pts > pts) | |
1243 || discard >= AVDISCARD_ALL){ | |
652 | 1244 url_fskip(bc, size); |
1245 return 1; | |
1246 } | |
1247 | |
775 | 1248 av_get_packet(bc, pkt, size); |
403 | 1249 pkt->stream_index = stream_id; |
219 | 1250 if (key_frame) |
887 | 1251 pkt->flags |= PKT_FLAG_KEY; |
456 | 1252 pkt->pts = pts; |
403 | 1253 |
421 | 1254 return 0; |
1255 } | |
403 | 1256 |
421 | 1257 static int nut_read_packet(AVFormatContext *s, AVPacket *pkt) |
1258 { | |
1259 NUTContext *nut = s->priv_data; | |
1260 ByteIOContext *bc = &s->pb; | |
652 | 1261 int i, frame_code=0, ret; |
421 | 1262 |
1263 for(;;){ | |
461 | 1264 int64_t pos= url_ftell(bc); |
426 | 1265 int frame_type= 0; |
421 | 1266 uint64_t tmp= nut->next_startcode; |
1267 nut->next_startcode=0; | |
1268 | |
1269 if (url_feof(bc)) | |
1270 return -1; | |
1271 | |
461 | 1272 if(tmp){ |
1273 pos-=8; | |
1274 }else{ | |
421 | 1275 frame_code = get_byte(bc); |
1276 if(frame_code == 'N'){ | |
1277 tmp= frame_code; | |
426 | 1278 for(i=1; i<8; i++) |
1279 tmp = (tmp<<8) + get_byte(bc); | |
421 | 1280 } |
1281 } | |
1282 switch(tmp){ | |
1283 case MAIN_STARTCODE: | |
1284 case STREAM_STARTCODE: | |
1285 case INDEX_STARTCODE: | |
456 | 1286 get_packetheader(nut, bc, 0); |
461 | 1287 assert(nut->packet_start[2] == pos); |
853 | 1288 url_fseek(bc, nut->written_packet_size, SEEK_CUR); |
421 | 1289 break; |
1290 case INFO_STARTCODE: | |
1291 if(decode_info_header(nut)<0) | |
1292 goto resync; | |
1293 break; | |
426 | 1294 case KEYFRAME_STARTCODE: |
1295 frame_type = 2; | |
461 | 1296 reset(s, get_v(bc)); |
426 | 1297 frame_code = get_byte(bc); |
421 | 1298 case 0: |
652 | 1299 ret= decode_frame(nut, pkt, frame_code, frame_type, pos); |
1300 if(ret==0) | |
421 | 1301 return 0; |
652 | 1302 else if(ret==1) //ok but discard packet |
1303 break; | |
421 | 1304 default: |
1305 resync: | |
881 | 1306 av_log(s, AV_LOG_DEBUG, "syncing from %"PRId64"\n", nut->packet_start[2]+1); |
456 | 1307 tmp= find_any_startcode(bc, nut->packet_start[2]+1); |
421 | 1308 if(tmp==0) |
1309 return -1; | |
1310 av_log(s, AV_LOG_DEBUG, "sync\n"); | |
456 | 1311 nut->next_startcode= tmp; |
426 | 1312 } |
1313 } | |
1314 } | |
1315 | |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1316 static int64_t nut_read_timestamp(AVFormatContext *s, int stream_index, int64_t *pos_arg, int64_t pos_limit){ |
426 | 1317 NUTContext *nut = s->priv_data; |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1318 StreamContext *stream; |
426 | 1319 ByteIOContext *bc = &s->pb; |
1320 int64_t pos, pts; | |
1321 uint64_t code; | |
456 | 1322 int frame_code,step, stream_id, i,size, key_frame; |
881 | 1323 av_log(s, AV_LOG_DEBUG, "read_timestamp(X,%d,%"PRId64",%"PRId64")\n", stream_index, *pos_arg, pos_limit); |
426 | 1324 |
1325 if(*pos_arg < 0) | |
1326 return AV_NOPTS_VALUE; | |
1327 | |
1328 pos= *pos_arg; | |
1329 step= FFMIN(16*1024, pos); | |
1330 do{ | |
1331 pos-= step; | |
1332 code= find_any_startcode(bc, pos); | |
1333 | |
456 | 1334 if(code && url_ftell(bc) - 8 <= *pos_arg) |
426 | 1335 break; |
1336 step= FFMIN(2*step, pos); | |
1337 }while(step); | |
1338 | |
1339 if(!code) //nothing found, not even after pos_arg | |
1340 return AV_NOPTS_VALUE; | |
1341 | |
1342 url_fseek(bc, -8, SEEK_CUR); | |
1343 for(i=0; i<s->nb_streams; i++) | |
1344 nut->stream[i].last_sync_pos= url_ftell(bc); | |
885 | 1345 |
426 | 1346 for(;;){ |
456 | 1347 int frame_type=0; |
426 | 1348 int64_t pos= url_ftell(bc); |
1349 uint64_t tmp=0; | |
885 | 1350 |
456 | 1351 if(pos > pos_limit || url_feof(bc)) |
426 | 1352 return AV_NOPTS_VALUE; |
1353 | |
1354 frame_code = get_byte(bc); | |
1355 if(frame_code == 'N'){ | |
1356 tmp= frame_code; | |
1357 for(i=1; i<8; i++) | |
1358 tmp = (tmp<<8) + get_byte(bc); | |
1359 } | |
1360 //av_log(s, AV_LOG_DEBUG, "before switch %llX at=%lld\n", tmp, pos); | |
1361 | |
1362 switch(tmp){ | |
1363 case MAIN_STARTCODE: | |
1364 case STREAM_STARTCODE: | |
1365 case INDEX_STARTCODE: | |
1366 case INFO_STARTCODE: | |
456 | 1367 get_packetheader(nut, bc, 0); |
1368 assert(nut->packet_start[2]==pos); | |
853 | 1369 url_fseek(bc, nut->written_packet_size, SEEK_CUR); |
426 | 1370 break; |
1371 case KEYFRAME_STARTCODE: | |
456 | 1372 frame_type=2; |
461 | 1373 reset(s, get_v(bc)); |
426 | 1374 frame_code = get_byte(bc); |
1375 case 0: | |
461 | 1376 size= decode_frame_header(nut, &key_frame, &pts, &stream_id, frame_code, frame_type, pos); |
456 | 1377 if(size < 0) |
426 | 1378 goto resync; |
885 | 1379 |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1380 stream= &nut->stream[stream_id]; |
456 | 1381 if(stream_id != stream_index || !key_frame || pos < *pos_arg){ |
1382 url_fseek(bc, size, SEEK_CUR); | |
426 | 1383 break; |
1384 } | |
885 | 1385 |
456 | 1386 *pos_arg= pos; |
426 | 1387 return pts; |
1388 default: | |
1389 resync: | |
881 | 1390 av_log(s, AV_LOG_DEBUG, "syncing from %"PRId64"\n", nut->packet_start[2]+1); |
456 | 1391 if(!find_any_startcode(bc, nut->packet_start[2]+1)) |
426 | 1392 return AV_NOPTS_VALUE; |
1393 | |
1394 url_fseek(bc, -8, SEEK_CUR); | |
421 | 1395 } |
1396 } | |
426 | 1397 return AV_NOPTS_VALUE; |
1398 } | |
1399 | |
555 | 1400 static int nut_read_seek(AVFormatContext *s, int stream_index, int64_t target_ts, int flags){ |
456 | 1401 // NUTContext *nut = s->priv_data; |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1402 int64_t pos; |
426 | 1403 |
555 | 1404 if(av_seek_frame_binary(s, stream_index, target_ts, flags) < 0) |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1405 return -1; |
426 | 1406 |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1407 pos= url_ftell(&s->pb); |
456 | 1408 nut_read_timestamp(s, stream_index, &pos, pos-1); |
426 | 1409 |
1410 return 0; | |
403 | 1411 } |
1412 | |
1413 static int nut_read_close(AVFormatContext *s) | |
1414 { | |
1415 NUTContext *nut = s->priv_data; | |
1416 int i; | |
1417 | |
1418 for(i=0;i<s->nb_streams;i++) { | |
820
feca73904e67
changing AVCodecContext codec -> *codec in AVStream so additions to AVCodecContext dont randomize AVStream and break binary compatibility
michael
parents:
798
diff
changeset
|
1419 av_freep(&s->streams[i]->codec->extradata); |
403 | 1420 } |
1421 av_freep(&nut->stream); | |
219 | 1422 |
1423 return 0; | |
1424 } | |
1425 | |
1426 static AVInputFormat nut_iformat = { | |
1427 "nut", | |
1428 "nut format", | |
1429 sizeof(NUTContext), | |
1430 nut_probe, | |
1431 nut_read_header, | |
1432 nut_read_packet, | |
403 | 1433 nut_read_close, |
426 | 1434 nut_read_seek, |
437
50bae308f71e
moving nearly identical binary search code from nut/mpeg/asf to utils.c
michael
parents:
432
diff
changeset
|
1435 nut_read_timestamp, |
219 | 1436 .extensions = "nut", |
1437 }; | |
1438 | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
1439 #ifdef CONFIG_MUXERS |
219 | 1440 static AVOutputFormat nut_oformat = { |
1441 "nut", | |
1442 "nut format", | |
1443 "video/x-nut", | |
1444 "nut", | |
1445 sizeof(NUTContext), | |
682 | 1446 #ifdef CONFIG_LIBVORBIS |
219 | 1447 CODEC_ID_VORBIS, |
1448 #elif defined(CONFIG_MP3LAME) | |
232 | 1449 CODEC_ID_MP3, |
219 | 1450 #else |
223 | 1451 CODEC_ID_MP2, /* AC3 needs liba52 decoder */ |
219 | 1452 #endif |
1453 CODEC_ID_MPEG4, | |
1454 nut_write_header, | |
1455 nut_write_packet, | |
1456 nut_write_trailer, | |
798 | 1457 .flags = AVFMT_GLOBALHEADER, |
219 | 1458 }; |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
1459 #endif //CONFIG_MUXERS |
219 | 1460 |
1461 int nut_init(void) | |
1462 { | |
1463 av_register_input_format(&nut_iformat); | |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
1464 #ifdef CONFIG_MUXERS |
219 | 1465 av_register_output_format(&nut_oformat); |
858
66cc656ea404
Replace CONFIG_ENCODERS/CONFIG_DECODERS with CONFIG_MUXERS/CONFIG_DEMUXERS
diego
parents:
854
diff
changeset
|
1466 #endif //CONFIG_MUXERS |
219 | 1467 return 0; |
1468 } |