annotate nut.c @ 555:0a997108f384 libavformat

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