annotate nut.c @ 795:391669d461d4 libavformat

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