Tizen 2.1 base
[sdk/emulator/qemu.git] / tizen / distrib / libav / libavformat / ffmdec.c
1 /*
2  * FFM (ffserver live feed) demuxer
3  * Copyright (c) 2001 Fabrice Bellard
4  *
5  * This file is part of Libav.
6  *
7  * Libav is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * Libav is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with Libav; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20  */
21
22 #include "libavutil/intreadwrite.h"
23 #include "avformat.h"
24 #include "ffm.h"
25 #if CONFIG_FFSERVER
26 #include <unistd.h>
27
28 int64_t ffm_read_write_index(int fd)
29 {
30     uint8_t buf[8];
31
32     lseek(fd, 8, SEEK_SET);
33     if (read(fd, buf, 8) != 8)
34         return AVERROR(EIO);
35     return AV_RB64(buf);
36 }
37
38 int ffm_write_write_index(int fd, int64_t pos)
39 {
40     uint8_t buf[8];
41     int i;
42
43     for(i=0;i<8;i++)
44         buf[i] = (pos >> (56 - i * 8)) & 0xff;
45     lseek(fd, 8, SEEK_SET);
46     if (write(fd, buf, 8) != 8)
47         return AVERROR(EIO);
48     return 8;
49 }
50
51 void ffm_set_write_index(AVFormatContext *s, int64_t pos, int64_t file_size)
52 {
53     FFMContext *ffm = s->priv_data;
54     ffm->write_index = pos;
55     ffm->file_size = file_size;
56 }
57 #endif // CONFIG_FFSERVER
58
59 static int ffm_is_avail_data(AVFormatContext *s, int size)
60 {
61     FFMContext *ffm = s->priv_data;
62     int64_t pos, avail_size;
63     int len;
64
65     len = ffm->packet_end - ffm->packet_ptr;
66     if (size <= len)
67         return 1;
68     pos = avio_tell(s->pb);
69     if (!ffm->write_index) {
70         if (pos == ffm->file_size)
71             return AVERROR_EOF;
72         avail_size = ffm->file_size - pos;
73     } else {
74     if (pos == ffm->write_index) {
75         /* exactly at the end of stream */
76         return AVERROR(EAGAIN);
77     } else if (pos < ffm->write_index) {
78         avail_size = ffm->write_index - pos;
79     } else {
80         avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE);
81     }
82     }
83     avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len;
84     if (size <= avail_size)
85         return 1;
86     else
87         return AVERROR(EAGAIN);
88 }
89
90 static int ffm_resync(AVFormatContext *s, int state)
91 {
92     av_log(s, AV_LOG_ERROR, "resyncing\n");
93     while (state != PACKET_ID) {
94         if (s->pb->eof_reached) {
95             av_log(s, AV_LOG_ERROR, "cannot find FFM syncword\n");
96             return -1;
97         }
98         state = (state << 8) | avio_r8(s->pb);
99     }
100     return 0;
101 }
102
103 /* first is true if we read the frame header */
104 static int ffm_read_data(AVFormatContext *s,
105                          uint8_t *buf, int size, int header)
106 {
107     FFMContext *ffm = s->priv_data;
108     AVIOContext *pb = s->pb;
109     int len, fill_size, size1, frame_offset, id;
110
111     size1 = size;
112     while (size > 0) {
113     redo:
114         len = ffm->packet_end - ffm->packet_ptr;
115         if (len < 0)
116             return -1;
117         if (len > size)
118             len = size;
119         if (len == 0) {
120             if (avio_tell(pb) == ffm->file_size)
121                 avio_seek(pb, ffm->packet_size, SEEK_SET);
122     retry_read:
123             id = avio_rb16(pb); /* PACKET_ID */
124             if (id != PACKET_ID)
125                 if (ffm_resync(s, id) < 0)
126                     return -1;
127             fill_size = avio_rb16(pb);
128             ffm->dts = avio_rb64(pb);
129             frame_offset = avio_rb16(pb);
130             avio_read(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE);
131             ffm->packet_end = ffm->packet + (ffm->packet_size - FFM_HEADER_SIZE - fill_size);
132             if (ffm->packet_end < ffm->packet || frame_offset < 0)
133                 return -1;
134             /* if first packet or resynchronization packet, we must
135                handle it specifically */
136             if (ffm->first_packet || (frame_offset & 0x8000)) {
137                 if (!frame_offset) {
138                     /* This packet has no frame headers in it */
139                     if (avio_tell(pb) >= ffm->packet_size * 3) {
140                         avio_seek(pb, -ffm->packet_size * 2, SEEK_CUR);
141                         goto retry_read;
142                     }
143                     /* This is bad, we cannot find a valid frame header */
144                     return 0;
145                 }
146                 ffm->first_packet = 0;
147                 if ((frame_offset & 0x7fff) < FFM_HEADER_SIZE)
148                     return -1;
149                 ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
150                 if (!header)
151                     break;
152             } else {
153                 ffm->packet_ptr = ffm->packet;
154             }
155             goto redo;
156         }
157         memcpy(buf, ffm->packet_ptr, len);
158         buf += len;
159         ffm->packet_ptr += len;
160         size -= len;
161         header = 0;
162     }
163     return size1 - size;
164 }
165
166 /* ensure that acutal seeking happens between FFM_PACKET_SIZE
167    and file_size - FFM_PACKET_SIZE */
168 static void ffm_seek1(AVFormatContext *s, int64_t pos1)
169 {
170     FFMContext *ffm = s->priv_data;
171     AVIOContext *pb = s->pb;
172     int64_t pos;
173
174     pos = FFMIN(pos1, ffm->file_size - FFM_PACKET_SIZE);
175     pos = FFMAX(pos, FFM_PACKET_SIZE);
176     av_dlog(s, "seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos);
177     avio_seek(pb, pos, SEEK_SET);
178 }
179
180 static int64_t get_dts(AVFormatContext *s, int64_t pos)
181 {
182     AVIOContext *pb = s->pb;
183     int64_t dts;
184
185     ffm_seek1(s, pos);
186     avio_skip(pb, 4);
187     dts = avio_rb64(pb);
188     av_dlog(s, "dts=%0.6f\n", dts / 1000000.0);
189     return dts;
190 }
191
192 static void adjust_write_index(AVFormatContext *s)
193 {
194     FFMContext *ffm = s->priv_data;
195     AVIOContext *pb = s->pb;
196     int64_t pts;
197     //int64_t orig_write_index = ffm->write_index;
198     int64_t pos_min, pos_max;
199     int64_t pts_start;
200     int64_t ptr = avio_tell(pb);
201
202
203     pos_min = 0;
204     pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
205
206     pts_start = get_dts(s, pos_min);
207
208     pts = get_dts(s, pos_max);
209
210     if (pts - 100000 > pts_start)
211         goto end;
212
213     ffm->write_index = FFM_PACKET_SIZE;
214
215     pts_start = get_dts(s, pos_min);
216
217     pts = get_dts(s, pos_max);
218
219     if (pts - 100000 <= pts_start) {
220         while (1) {
221             int64_t newpos;
222             int64_t newpts;
223
224             newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE;
225
226             if (newpos == pos_min)
227                 break;
228
229             newpts = get_dts(s, newpos);
230
231             if (newpts - 100000 <= pts) {
232                 pos_max = newpos;
233                 pts = newpts;
234             } else {
235                 pos_min = newpos;
236             }
237         }
238         ffm->write_index += pos_max;
239     }
240
241     //printf("Adjusted write index from %"PRId64" to %"PRId64": pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.);
242     //printf("pts range %0.6f - %0.6f\n", get_dts(s, 0) / 1000000. , get_dts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. );
243
244  end:
245     avio_seek(pb, ptr, SEEK_SET);
246 }
247
248
249 static int ffm_close(AVFormatContext *s)
250 {
251     int i;
252
253     for (i = 0; i < s->nb_streams; i++)
254         av_freep(&s->streams[i]->codec->rc_eq);
255
256     return 0;
257 }
258
259
260 static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap)
261 {
262     FFMContext *ffm = s->priv_data;
263     AVStream *st;
264     AVIOContext *pb = s->pb;
265     AVCodecContext *codec;
266     int i, nb_streams;
267     uint32_t tag;
268
269     /* header */
270     tag = avio_rl32(pb);
271     if (tag != MKTAG('F', 'F', 'M', '1'))
272         goto fail;
273     ffm->packet_size = avio_rb32(pb);
274     if (ffm->packet_size != FFM_PACKET_SIZE)
275         goto fail;
276     ffm->write_index = avio_rb64(pb);
277     /* get also filesize */
278     if (pb->seekable) {
279         ffm->file_size = avio_size(pb);
280         if (ffm->write_index)
281             adjust_write_index(s);
282     } else {
283         ffm->file_size = (UINT64_C(1) << 63) - 1;
284     }
285
286     nb_streams = avio_rb32(pb);
287     avio_rb32(pb); /* total bitrate */
288     /* read each stream */
289     for(i=0;i<nb_streams;i++) {
290         char rc_eq_buf[128];
291
292         st = av_new_stream(s, 0);
293         if (!st)
294             goto fail;
295
296         av_set_pts_info(st, 64, 1, 1000000);
297
298         codec = st->codec;
299         /* generic info */
300         codec->codec_id = avio_rb32(pb);
301         codec->codec_type = avio_r8(pb); /* codec_type */
302         codec->bit_rate = avio_rb32(pb);
303         st->quality = avio_rb32(pb);
304         codec->flags = avio_rb32(pb);
305         codec->flags2 = avio_rb32(pb);
306         codec->debug = avio_rb32(pb);
307         /* specific info */
308         switch(codec->codec_type) {
309         case AVMEDIA_TYPE_VIDEO:
310             codec->time_base.num = avio_rb32(pb);
311             codec->time_base.den = avio_rb32(pb);
312             codec->width = avio_rb16(pb);
313             codec->height = avio_rb16(pb);
314             codec->gop_size = avio_rb16(pb);
315             codec->pix_fmt = avio_rb32(pb);
316             codec->qmin = avio_r8(pb);
317             codec->qmax = avio_r8(pb);
318             codec->max_qdiff = avio_r8(pb);
319             codec->qcompress = avio_rb16(pb) / 10000.0;
320             codec->qblur = avio_rb16(pb) / 10000.0;
321             codec->bit_rate_tolerance = avio_rb32(pb);
322             avio_get_str(pb, INT_MAX, rc_eq_buf, sizeof(rc_eq_buf));
323             codec->rc_eq = av_strdup(rc_eq_buf);
324             codec->rc_max_rate = avio_rb32(pb);
325             codec->rc_min_rate = avio_rb32(pb);
326             codec->rc_buffer_size = avio_rb32(pb);
327             codec->i_quant_factor = av_int2dbl(avio_rb64(pb));
328             codec->b_quant_factor = av_int2dbl(avio_rb64(pb));
329             codec->i_quant_offset = av_int2dbl(avio_rb64(pb));
330             codec->b_quant_offset = av_int2dbl(avio_rb64(pb));
331             codec->dct_algo = avio_rb32(pb);
332             codec->strict_std_compliance = avio_rb32(pb);
333             codec->max_b_frames = avio_rb32(pb);
334             codec->luma_elim_threshold = avio_rb32(pb);
335             codec->chroma_elim_threshold = avio_rb32(pb);
336             codec->mpeg_quant = avio_rb32(pb);
337             codec->intra_dc_precision = avio_rb32(pb);
338             codec->me_method = avio_rb32(pb);
339             codec->mb_decision = avio_rb32(pb);
340             codec->nsse_weight = avio_rb32(pb);
341             codec->frame_skip_cmp = avio_rb32(pb);
342             codec->rc_buffer_aggressivity = av_int2dbl(avio_rb64(pb));
343             codec->codec_tag = avio_rb32(pb);
344             codec->thread_count = avio_r8(pb);
345             codec->coder_type = avio_rb32(pb);
346             codec->me_cmp = avio_rb32(pb);
347             codec->partitions = avio_rb32(pb);
348             codec->me_subpel_quality = avio_rb32(pb);
349             codec->me_range = avio_rb32(pb);
350             codec->keyint_min = avio_rb32(pb);
351             codec->scenechange_threshold = avio_rb32(pb);
352             codec->b_frame_strategy = avio_rb32(pb);
353             codec->qcompress = av_int2dbl(avio_rb64(pb));
354             codec->qblur = av_int2dbl(avio_rb64(pb));
355             codec->max_qdiff = avio_rb32(pb);
356             codec->refs = avio_rb32(pb);
357             codec->directpred = avio_rb32(pb);
358             break;
359         case AVMEDIA_TYPE_AUDIO:
360             codec->sample_rate = avio_rb32(pb);
361             codec->channels = avio_rl16(pb);
362             codec->frame_size = avio_rl16(pb);
363             codec->sample_fmt = (int16_t) avio_rl16(pb);
364             break;
365         default:
366             goto fail;
367         }
368         if (codec->flags & CODEC_FLAG_GLOBAL_HEADER) {
369             codec->extradata_size = avio_rb32(pb);
370             codec->extradata = av_malloc(codec->extradata_size);
371             if (!codec->extradata)
372                 return AVERROR(ENOMEM);
373             avio_read(pb, codec->extradata, codec->extradata_size);
374         }
375     }
376
377     /* get until end of block reached */
378     while ((avio_tell(pb) % ffm->packet_size) != 0)
379         avio_r8(pb);
380
381     /* init packet demux */
382     ffm->packet_ptr = ffm->packet;
383     ffm->packet_end = ffm->packet;
384     ffm->frame_offset = 0;
385     ffm->dts = 0;
386     ffm->read_state = READ_HEADER;
387     ffm->first_packet = 1;
388     return 0;
389  fail:
390     ffm_close(s);
391     return -1;
392 }
393
394 /* return < 0 if eof */
395 static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
396 {
397     int size;
398     FFMContext *ffm = s->priv_data;
399     int duration, ret;
400
401     switch(ffm->read_state) {
402     case READ_HEADER:
403         if ((ret = ffm_is_avail_data(s, FRAME_HEADER_SIZE+4)) < 0)
404             return ret;
405
406         av_dlog(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
407                avio_tell(s->pb), s->pb->pos, ffm->write_index, ffm->file_size);
408         if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
409             FRAME_HEADER_SIZE)
410             return -1;
411         if (ffm->header[1] & FLAG_DTS)
412             if (ffm_read_data(s, ffm->header+16, 4, 1) != 4)
413                 return -1;
414         ffm->read_state = READ_DATA;
415         /* fall thru */
416     case READ_DATA:
417         size = AV_RB24(ffm->header + 2);
418         if ((ret = ffm_is_avail_data(s, size)) < 0)
419             return ret;
420
421         duration = AV_RB24(ffm->header + 5);
422
423         av_new_packet(pkt, size);
424         pkt->stream_index = ffm->header[0];
425         if ((unsigned)pkt->stream_index >= s->nb_streams) {
426             av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index);
427             av_free_packet(pkt);
428             ffm->read_state = READ_HEADER;
429             return -1;
430         }
431         pkt->pos = avio_tell(s->pb);
432         if (ffm->header[1] & FLAG_KEY_FRAME)
433             pkt->flags |= AV_PKT_FLAG_KEY;
434
435         ffm->read_state = READ_HEADER;
436         if (ffm_read_data(s, pkt->data, size, 0) != size) {
437             /* bad case: desynchronized packet. we cancel all the packet loading */
438             av_free_packet(pkt);
439             return -1;
440         }
441         pkt->pts = AV_RB64(ffm->header+8);
442         if (ffm->header[1] & FLAG_DTS)
443             pkt->dts = pkt->pts - AV_RB32(ffm->header+16);
444         else
445             pkt->dts = pkt->pts;
446         pkt->duration = duration;
447         break;
448     }
449     return 0;
450 }
451
452 /* seek to a given time in the file. The file read pointer is
453    positioned at or before pts. XXX: the following code is quite
454    approximative */
455 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
456 {
457     FFMContext *ffm = s->priv_data;
458     int64_t pos_min, pos_max, pos;
459     int64_t pts_min, pts_max, pts;
460     double pos1;
461
462     av_dlog(s, "wanted_pts=%0.6f\n", wanted_pts / 1000000.0);
463     /* find the position using linear interpolation (better than
464        dichotomy in typical cases) */
465     pos_min = FFM_PACKET_SIZE;
466     pos_max = ffm->file_size - FFM_PACKET_SIZE;
467     while (pos_min <= pos_max) {
468         pts_min = get_dts(s, pos_min);
469         pts_max = get_dts(s, pos_max);
470         /* linear interpolation */
471         pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) /
472             (double)(pts_max - pts_min);
473         pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE;
474         if (pos <= pos_min)
475             pos = pos_min;
476         else if (pos >= pos_max)
477             pos = pos_max;
478         pts = get_dts(s, pos);
479         /* check if we are lucky */
480         if (pts == wanted_pts) {
481             goto found;
482         } else if (pts > wanted_pts) {
483             pos_max = pos - FFM_PACKET_SIZE;
484         } else {
485             pos_min = pos + FFM_PACKET_SIZE;
486         }
487     }
488     pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max;
489
490  found:
491     ffm_seek1(s, pos);
492
493     /* reset read state */
494     ffm->read_state = READ_HEADER;
495     ffm->packet_ptr = ffm->packet;
496     ffm->packet_end = ffm->packet;
497     ffm->first_packet = 1;
498
499     return 0;
500 }
501
502 static int ffm_probe(AVProbeData *p)
503 {
504     if (
505         p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' &&
506         p->buf[3] == '1')
507         return AVPROBE_SCORE_MAX + 1;
508     return 0;
509 }
510
511 AVInputFormat ff_ffm_demuxer = {
512     "ffm",
513     NULL_IF_CONFIG_SMALL("FFM (FFserver live feed) format"),
514     sizeof(FFMContext),
515     ffm_probe,
516     ffm_read_header,
517     ffm_read_packet,
518     ffm_close,
519     ffm_seek,
520 };