]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/libnut.c
update to libnut, add cache_syncpoints
[frescor/ffmpeg.git] / libavformat / libnut.c
1 #include "avformat.h"
2 #include "riff.h"
3 #include <libnut.h>
4
5 #define ID_STRING "nut/multimedia container"
6 #define ID_LENGTH (strlen(ID_STRING) + 1)
7
8 typedef struct {
9     nut_context_t * nut;
10     nut_stream_header_t * s;
11 } NUTContext;
12
13 static const CodecTag nut_tags[] = {
14     { CODEC_ID_MPEG4,  MKTAG('m', 'p', '4', 's') },
15     { CODEC_ID_MP3,    MKTAG('m', 'p', '3', ' ') },
16     { CODEC_ID_VORBIS, MKTAG('v', 'r', 'b', 's') },
17     { 0, 0 },
18 };
19
20 #ifdef CONFIG_MUXERS
21 frame_table_input_t ft_default[] = {
22     // There must be atleast this safety net:
23     //{ 4128,      3,   0,   1,      0,    0,     0 },
24     //{ flag, fields, pts, mul, stream, size, count }
25       { 8192,      0,   0,   1,      0,    0,     0 }, // invalid 0x00
26       {   56,      0,   0,   1,      0,    0,     0 }, // safety net non key frame
27       {   56,      0,   0,   1,      0,    0,     0 }, // safety net key frame
28       { 4128,      0,   0,   1,      0,    0,     0 }, // one more safety net
29       {   27,      0,   0,   1,      0,    0,     0 }, // EOR frame
30       {    1,      4,   1, 337,      1,  336,     0 }, // used 82427 times
31       {    1,      4,   1, 385,      1,  384,     0 }, // used 56044 times
32       {    0,      4,   2,   7,      0,    6,     0 }, // used 20993 times
33       {    0,      4,   1,   7,      0,    6,     0 }, // used 10398 times
34       {    1,      4,   1, 481,      1,  480,     0 }, // used 3527 times
35       {    1,      4,   1, 289,      1,  288,     0 }, // used 2042 times
36       {    1,      4,   1, 577,      1,  576,     0 }, // used 1480 times
37       {    1,      4,   1, 673,      1,  672,     0 }, // used 862 times
38       {    1,      4,   1, 769,      1,  768,     0 }, // used 433 times
39       {    1,      4,   1, 961,      1,  960,     0 }, // used 191 times
40       {   32,      3,   2, 101,      0,    0,     0 }, // "1.2.0" => 14187
41       {   32,      3,  -1,  40,      0,    0,     0 }, // "1.-1.0" => 5707
42       {   32,      3,   1,  81,      0,    0,     0 }, // "1.1.0" => 11159
43       {   33,      3,   1,  11,      0,    0,     0 }, // "1.1.1" => 1409
44       {  105,      3,   0,   6,      0,    0,     0 }, // checksum for video
45       { 8192,      2,   0,   1,      0,    0,     0 }, // invalid 0xFF
46       {   -1,      0,   0,   0,      0,    0,     0 }, // end
47 };
48
49 static int av_write(void * h, size_t len, const uint8_t * buf) {
50     ByteIOContext * bc = h;
51     put_buffer(bc, buf, len);
52     //put_flush_packet(bc);
53     return len;
54 }
55
56 static int nut_write_header(AVFormatContext * avf) {
57     NUTContext * priv = avf->priv_data;
58     ByteIOContext * bc = &avf->pb;
59     nut_muxer_opts_t mopts = {
60         .output = {
61             .priv = bc,
62             .write = av_write,
63         },
64         .alloc = { av_malloc, av_realloc, av_free },
65         .write_index = 1,
66         .realtime_stream = 0,
67         .max_distance = 32768,
68         .fti = ft_default
69     };
70     nut_stream_header_t * s;
71     int i;
72
73     priv->s = s = av_mallocz((avf->nb_streams + 1) * sizeof*s);
74
75     for (i = 0; i < avf->nb_streams; i++) {
76         AVCodecContext * codec = avf->streams[i]->codec;
77         int j;
78         int fourcc = 0;
79         int nom, denom, ssize;
80
81         s[i].type = codec->codec_type == CODEC_TYPE_VIDEO ? NUT_VIDEO_CLASS : NUT_AUDIO_CLASS;
82
83         if (codec->codec_tag) fourcc = codec->codec_tag;
84         else fourcc = codec_get_tag(nut_tags, codec->codec_id);
85
86         if (!fourcc) {
87             if (codec->codec_type == CODEC_TYPE_VIDEO) fourcc = codec_get_bmp_tag(codec->codec_id);
88             if (codec->codec_type == CODEC_TYPE_AUDIO) fourcc = codec_get_wav_tag(codec->codec_id);
89         }
90
91         s[i].fourcc_len = 4;
92         s[i].fourcc = av_malloc(s[i].fourcc_len);
93         for (j = 0; j < s[i].fourcc_len; j++) s[i].fourcc[j] = (fourcc >> (j*8)) & 0xFF;
94
95         ff_parse_specific_params(codec, &nom, &ssize, &denom);
96         av_set_pts_info(avf->streams[i], 60, denom, nom);
97
98         s[i].time_base.nom = denom;
99         s[i].time_base.den = nom;
100
101         s[i].fixed_fps = 0;
102         s[i].decode_delay = codec->has_b_frames;
103         s[i].codec_specific_len = codec->extradata_size;
104         s[i].codec_specific = codec->extradata;
105
106         if (codec->codec_type == CODEC_TYPE_VIDEO) {
107             s[i].width = codec->width;
108             s[i].height = codec->height;
109             s[i].sample_width = 0;
110             s[i].sample_height = 0;
111             s[i].colorspace_type = 0;
112         } else {
113             s[i].samplerate_nom = codec->sample_rate;
114             s[i].samplerate_denom = 1;
115             s[i].channel_count = codec->channels;
116         }
117     }
118
119     s[avf->nb_streams].type = -1;
120     priv->nut = nut_muxer_init(&mopts, s, NULL);
121
122     return 0;
123 }
124
125 static int nut_write_packet(AVFormatContext * avf, AVPacket * pkt) {
126     NUTContext * priv = avf->priv_data;
127     nut_packet_t p;
128
129     p.len = pkt->size;
130     p.stream = pkt->stream_index;
131     p.pts = pkt->pts;
132     p.flags = pkt->flags & PKT_FLAG_KEY ? NUT_FLAG_KEY : 0;
133     p.next_pts = 0;
134
135     nut_write_frame_reorder(priv->nut, &p, pkt->data);
136
137     return 0;
138 }
139
140 static int nut_write_trailer(AVFormatContext * avf) {
141     ByteIOContext * bc = &avf->pb;
142     NUTContext * priv = avf->priv_data;
143     int i;
144
145     nut_muxer_uninit_reorder(priv->nut);
146     put_flush_packet(bc);
147
148     for(i = 0; priv->s[i].type != -1; i++ ) av_freep(&priv->s[i].fourcc);
149     av_freep(&priv->s);
150
151     return 0;
152 }
153
154 AVOutputFormat nut_muxer = {
155     "nut",
156     "nut format",
157     "video/x-nut",
158     "nut",
159     sizeof(NUTContext),
160     CODEC_ID_VORBIS,
161     CODEC_ID_MPEG4,
162     nut_write_header,
163     nut_write_packet,
164     nut_write_trailer,
165     .flags = AVFMT_GLOBALHEADER,
166 };
167 #endif //CONFIG_MUXERS
168
169 static int nut_probe(AVProbeData *p) {
170     if (p->buf_size >= ID_LENGTH && !memcmp(p->buf, ID_STRING, ID_LENGTH)) return AVPROBE_SCORE_MAX;
171
172     return 0;
173 }
174
175 static size_t av_read(void * h, size_t len, uint8_t * buf) {
176     ByteIOContext * bc = h;
177     return get_buffer(bc, buf, len);
178 }
179
180 static off_t av_seek(void * h, long long pos, int whence) {
181     ByteIOContext * bc = h;
182     if (whence == SEEK_END) {
183         pos = url_fsize(bc) + pos;
184         whence = SEEK_SET;
185     }
186     return url_fseek(bc, pos, whence);
187 }
188
189 static int nut_read_header(AVFormatContext * avf, AVFormatParameters * ap) {
190     NUTContext * priv = avf->priv_data;
191     ByteIOContext * bc = &avf->pb;
192     nut_demuxer_opts_t dopts = {
193         .input = {
194             .priv = bc,
195             .seek = av_seek,
196             .read = av_read,
197             .eof = NULL,
198             .file_pos = 0,
199         },
200         .alloc = { av_malloc, av_realloc, av_free },
201         .read_index = 1,
202         .cache_syncpoints = 1,
203     };
204     nut_context_t * nut = priv->nut = nut_demuxer_init(&dopts);
205     nut_stream_header_t * s;
206     int ret, i;
207
208     if ((ret = nut_read_headers(nut, &s, NULL))) {
209         if (ret < 0) av_log(avf, AV_LOG_ERROR, " NUT error: %s\n", nut_error(-ret));
210         nut_demuxer_uninit(nut);
211         return -1;
212     }
213
214     priv->s = s;
215
216     for (i = 0; s[i].type != -1 && i < 2; i++) {
217         AVStream * st = av_new_stream(avf, i);
218         int j;
219
220         for (j = 0; j < s[i].fourcc_len && j < 8; j++) st->codec->codec_tag |= s[i].fourcc[j]<<(j*8);
221
222         st->codec->has_b_frames = s[i].decode_delay;
223
224         st->codec->extradata_size = s[i].codec_specific_len;
225         if (st->codec->extradata_size) {
226             st->codec->extradata = av_mallocz(st->codec->extradata_size);
227             memcpy(st->codec->extradata, s[i].codec_specific, st->codec->extradata_size);
228         }
229
230         av_set_pts_info(avf->streams[i], 60, s[i].time_base.nom, s[i].time_base.den);
231         st->start_time = 0;
232         st->duration = s[i].max_pts;
233
234         st->codec->codec_id = codec_get_id(nut_tags, st->codec->codec_tag);
235
236         switch(s[i].type) {
237         case NUT_AUDIO_CLASS:
238             st->codec->codec_type = CODEC_TYPE_AUDIO;
239             if (st->codec->codec_id == CODEC_ID_NONE) st->codec->codec_id = codec_get_wav_id(st->codec->codec_tag);
240
241             st->codec->channels = s[i].channel_count;
242             st->codec->sample_rate = s[i].samplerate_nom / s[i].samplerate_denom;
243             break;
244         case NUT_VIDEO_CLASS:
245             st->codec->codec_type = CODEC_TYPE_VIDEO;
246             if (st->codec->codec_id == CODEC_ID_NONE) st->codec->codec_id = codec_get_bmp_id(st->codec->codec_tag);
247
248             st->codec->width = s[i].width;
249             st->codec->height = s[i].height;
250             st->codec->sample_aspect_ratio.num = s[i].sample_width;
251             st->codec->sample_aspect_ratio.den = s[i].sample_height;
252             break;
253         }
254         if (st->codec->codec_id == CODEC_ID_NONE) av_log(avf, AV_LOG_ERROR, "Unknown codec?!\n");
255     }
256
257     return 0;
258 }
259
260 static int nut_read_packet(AVFormatContext * avf, AVPacket * pkt) {
261     NUTContext * priv = avf->priv_data;
262     nut_packet_t pd;
263     int ret;
264
265     while ((ret = nut_read_next_packet(priv->nut, &pd)) < 0)
266         av_log(avf, AV_LOG_ERROR, " NUT error: %s\n", nut_error(-ret));
267
268     if (ret || av_new_packet(pkt, pd.len) < 0) return -1;
269
270     if (pd.flags & NUT_FLAG_KEY) pkt->flags |= PKT_FLAG_KEY;
271     pkt->pts = pd.pts;
272     pkt->stream_index = pd.stream;
273     pkt->pos = url_ftell(&avf->pb);
274
275     ret = nut_read_frame(priv->nut, &pd.len, pkt->data);
276
277     return ret;
278 }
279
280 static int nut_read_seek(AVFormatContext * avf, int stream_index, int64_t target_ts, int flags) {
281     NUTContext * priv = avf->priv_data;
282     int active_streams[] = { stream_index, -1 };
283     double time_pos = target_ts * priv->s[stream_index].time_base.nom / (double)priv->s[stream_index].time_base.den;
284
285     if (nut_seek(priv->nut, time_pos, 2*!(flags & AVSEEK_FLAG_BACKWARD), active_streams)) return -1;
286
287     return 0;
288 }
289
290 static int nut_read_close(AVFormatContext *s) {
291     NUTContext * priv = s->priv_data;
292
293     nut_demuxer_uninit(priv->nut);
294     av_free(priv->s);
295
296     return 0;
297 }
298
299 AVInputFormat nut_demuxer = {
300     "nut",
301     "nut format",
302     sizeof(NUTContext),
303     nut_probe,
304     nut_read_header,
305     nut_read_packet,
306     nut_read_close,
307     nut_read_seek,
308     .extensions = "nut",
309 };