]> rtime.felk.cvut.cz Git - frescor/ffmpeg.git/blob - libavformat/libnut.c
update to libnut API, changes to frame_table_input
[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 nut_frame_table_input_t ft_default[] = {
22         // There must be atleast this safety net:
23         //{ 4128,    0,      0,   1,    0,     1 },
24         //{ flag,  pts, stream, mul, size, count }
25           { 8192,    0,      0,   1,    0,     1 }, // invalid 0x00
26           {   56,    0,      0,   1,    0,     1 }, // safety net non key frame
27           {   57,    0,      0,   1,    0,     1 }, // safety net key frame
28           { 4128,    0,      0,   1,    0,     1 }, // one more safety net
29           {   27,    0,      0,   1,    0,     1 }, // EOR frame
30           {    1,    1,      1, 337,  336,     1 }, // used 82427 times
31           {    1,    1,      1, 385,  384,     1 }, // used 56044 times
32           {    0,    2,      0,   7,    6,     1 }, // used 20993 times
33           {    0,    1,      0,   7,    6,     1 }, // used 10398 times
34           {    1,    1,      1, 481,  480,     1 }, // used 3527 times
35           {    1,    1,      1, 289,  288,     1 }, // used 2042 times
36           {    1,    1,      1, 577,  576,     1 }, // used 1480 times
37           {    1,    1,      1, 673,  672,     1 }, // used 862 times
38           {    1,    1,      1, 769,  768,     1 }, // used 433 times
39           {    1,    1,      1, 961,  960,     1 }, // used 191 times
40           {   32,    2,      0, 101,    0,   101 }, // "1.2.0" => 14187
41           {   32,   -1,      0,  40,    0,    40 }, // "1.-1.0" => 5707
42           {   32,    1,      0,  81,    0,    81 }, // "1.1.0" => 11159
43           {   33,    1,      0,  11,    0,    11 }, // "1.1.1" => 1409
44           {  105,    0,      0,   6,    0,     6 }, // checksum for video
45           { 8192,    0,      0,   1,    0,     1 }, // invalid 0xFF
46           {   -1,    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         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     ret = nut_read_next_packet(priv->nut, &pd);
266
267     if (ret || av_new_packet(pkt, pd.len) < 0) {
268         if (ret != NUT_ERR_EOF)
269             av_log(avf, AV_LOG_ERROR, " NUT error: %s\n", nut_error(ret));
270         return -1;
271     }
272
273     if (pd.flags & NUT_FLAG_KEY) pkt->flags |= PKT_FLAG_KEY;
274     pkt->pts = pd.pts;
275     pkt->stream_index = pd.stream;
276     pkt->pos = url_ftell(&avf->pb);
277
278     ret = nut_read_frame(priv->nut, &pd.len, pkt->data);
279
280     return ret;
281 }
282
283 static int nut_read_seek(AVFormatContext * avf, int stream_index, int64_t target_ts, int flags) {
284     NUTContext * priv = avf->priv_data;
285     int active_streams[] = { stream_index, -1 };
286     double time_pos = target_ts * priv->s[stream_index].time_base.nom / (double)priv->s[stream_index].time_base.den;
287
288     if (nut_seek(priv->nut, time_pos, 2*!(flags & AVSEEK_FLAG_BACKWARD), active_streams)) return -1;
289
290     return 0;
291 }
292
293 static int nut_read_close(AVFormatContext *s) {
294     NUTContext * priv = s->priv_data;
295
296     nut_demuxer_uninit(priv->nut);
297
298     return 0;
299 }
300
301 AVInputFormat nut_demuxer = {
302     "nut",
303     "nut format",
304     sizeof(NUTContext),
305     nut_probe,
306     nut_read_header,
307     nut_read_packet,
308     nut_read_close,
309     nut_read_seek,
310     .extensions = "nut",
311 };