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