2 * FFM (ffserver live feed) demuxer
3 * Copyright (c) 2001 Fabrice Bellard.
5 * This file is part of FFmpeg.
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.
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.
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
26 static int ffm_is_avail_data(AVFormatContext *s, int size)
28 FFMContext *ffm = s->priv_data;
29 offset_t pos, avail_size;
32 len = ffm->packet_end - ffm->packet_ptr;
35 pos = url_ftell(s->pb);
36 if (pos == ffm->write_index) {
37 /* exactly at the end of stream */
39 } else if (pos < ffm->write_index) {
40 avail_size = ffm->write_index - pos;
42 avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE);
44 avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len;
45 if (size <= avail_size)
51 /* first is true if we read the frame header */
52 static int ffm_read_data(AVFormatContext *s,
53 uint8_t *buf, int size, int first)
55 FFMContext *ffm = s->priv_data;
56 ByteIOContext *pb = s->pb;
57 int len, fill_size, size1, frame_offset;
62 len = ffm->packet_end - ffm->packet_ptr;
66 if (url_ftell(pb) == ffm->file_size)
67 url_fseek(pb, ffm->packet_size, SEEK_SET);
69 get_be16(pb); /* PACKET_ID */
70 fill_size = get_be16(pb);
71 ffm->pts = get_be64(pb);
72 ffm->first_frame_in_packet = 1;
73 frame_offset = get_be16(pb);
74 get_buffer(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE);
75 ffm->packet_end = ffm->packet + (ffm->packet_size - FFM_HEADER_SIZE - fill_size);
76 if (ffm->packet_end < ffm->packet)
78 /* if first packet or resynchronization packet, we must
79 handle it specifically */
80 if (ffm->first_packet || (frame_offset & 0x8000)) {
82 /* This packet has no frame headers in it */
83 if (url_ftell(pb) >= ffm->packet_size * 3) {
84 url_fseek(pb, -ffm->packet_size * 2, SEEK_CUR);
87 /* This is bad, we cannot find a valid frame header */
90 ffm->first_packet = 0;
91 if ((frame_offset & 0x7ffff) < FFM_HEADER_SIZE)
93 ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
97 ffm->packet_ptr = ffm->packet;
101 memcpy(buf, ffm->packet_ptr, len);
103 ffm->packet_ptr += len;
110 static int64_t get_pts(AVFormatContext *s, offset_t pos)
112 ByteIOContext *pb = s->pb;
119 printf("pts=%0.6f\n", pts / 1000000.0);
124 static void adjust_write_index(AVFormatContext *s)
126 FFMContext *ffm = s->priv_data;
127 ByteIOContext *pb = s->pb;
129 //offset_t orig_write_index = ffm->write_index;
130 offset_t pos_min, pos_max;
132 offset_t ptr = url_ftell(pb);
136 pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
138 pts_start = get_pts(s, pos_min);
140 pts = get_pts(s, pos_max);
142 if (pts - 100000 > pts_start)
145 ffm->write_index = FFM_PACKET_SIZE;
147 pts_start = get_pts(s, pos_min);
149 pts = get_pts(s, pos_max);
151 if (pts - 100000 <= pts_start) {
156 newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE;
158 if (newpos == pos_min)
161 newpts = get_pts(s, newpos);
163 if (newpts - 100000 <= pts) {
170 ffm->write_index += pos_max;
173 //printf("Adjusted write index from %"PRId64" to %"PRId64": pts=%0.6f\n", orig_write_index, ffm->write_index, pts / 1000000.);
174 //printf("pts range %0.6f - %0.6f\n", get_pts(s, 0) / 1000000. , get_pts(s, ffm->file_size - 2 * FFM_PACKET_SIZE) / 1000000. );
177 url_fseek(pb, ptr, SEEK_SET);
181 static int ffm_read_header(AVFormatContext *s, AVFormatParameters *ap)
183 FFMContext *ffm = s->priv_data;
186 ByteIOContext *pb = s->pb;
187 AVCodecContext *codec;
193 if (tag != MKTAG('F', 'F', 'M', '1'))
195 ffm->packet_size = get_be32(pb);
196 if (ffm->packet_size != FFM_PACKET_SIZE)
198 ffm->write_index = get_be64(pb);
199 /* get also filesize */
200 if (!url_is_streamed(pb)) {
201 ffm->file_size = url_fsize(pb);
202 adjust_write_index(s);
204 ffm->file_size = (UINT64_C(1) << 63) - 1;
207 nb_streams = get_be32(pb);
208 get_be32(pb); /* total bitrate */
209 /* read each stream */
210 for(i=0;i<nb_streams;i++) {
213 st = av_new_stream(s, 0);
216 fst = av_mallocz(sizeof(FFMStream));
221 av_set_pts_info(st, 64, 1, 1000000);
227 codec->codec_id = get_be32(pb);
228 codec->codec_type = get_byte(pb); /* codec_type */
229 codec->bit_rate = get_be32(pb);
230 st->quality = get_be32(pb);
231 codec->flags = get_be32(pb);
232 codec->flags2 = get_be32(pb);
233 codec->debug = get_be32(pb);
235 switch(codec->codec_type) {
236 case CODEC_TYPE_VIDEO:
237 codec->time_base.num = get_be32(pb);
238 codec->time_base.den = get_be32(pb);
239 codec->width = get_be16(pb);
240 codec->height = get_be16(pb);
241 codec->gop_size = get_be16(pb);
242 codec->pix_fmt = get_be32(pb);
243 codec->qmin = get_byte(pb);
244 codec->qmax = get_byte(pb);
245 codec->max_qdiff = get_byte(pb);
246 codec->qcompress = get_be16(pb) / 10000.0;
247 codec->qblur = get_be16(pb) / 10000.0;
248 codec->bit_rate_tolerance = get_be32(pb);
249 codec->rc_eq = av_strdup(get_strz(pb, rc_eq_buf, sizeof(rc_eq_buf)));
250 codec->rc_max_rate = get_be32(pb);
251 codec->rc_min_rate = get_be32(pb);
252 codec->rc_buffer_size = get_be32(pb);
253 codec->i_quant_factor = av_int2dbl(get_be64(pb));
254 codec->b_quant_factor = av_int2dbl(get_be64(pb));
255 codec->i_quant_offset = av_int2dbl(get_be64(pb));
256 codec->b_quant_offset = av_int2dbl(get_be64(pb));
257 codec->dct_algo = get_be32(pb);
258 codec->strict_std_compliance = get_be32(pb);
259 codec->max_b_frames = get_be32(pb);
260 codec->luma_elim_threshold = get_be32(pb);
261 codec->chroma_elim_threshold = get_be32(pb);
262 codec->mpeg_quant = get_be32(pb);
263 codec->intra_dc_precision = get_be32(pb);
264 codec->me_method = get_be32(pb);
265 codec->mb_decision = get_be32(pb);
266 codec->nsse_weight = get_be32(pb);
267 codec->frame_skip_cmp = get_be32(pb);
268 codec->rc_buffer_aggressivity = av_int2dbl(get_be64(pb));
269 codec->codec_tag = get_be32(pb);
271 case CODEC_TYPE_AUDIO:
272 codec->sample_rate = get_be32(pb);
273 codec->channels = get_le16(pb);
274 codec->frame_size = get_le16(pb);
282 /* get until end of block reached */
283 while ((url_ftell(pb) % ffm->packet_size) != 0)
286 /* init packet demux */
287 ffm->packet_ptr = ffm->packet;
288 ffm->packet_end = ffm->packet;
289 ffm->frame_offset = 0;
291 ffm->read_state = READ_HEADER;
292 ffm->first_packet = 1;
295 for(i=0;i<s->nb_streams;i++) {
298 av_freep(&st->priv_data);
305 /* return < 0 if eof */
306 static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
309 FFMContext *ffm = s->priv_data;
312 switch(ffm->read_state) {
314 if (!ffm_is_avail_data(s, FRAME_HEADER_SIZE)) {
315 return AVERROR(EAGAIN);
318 printf("pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
319 url_ftell(s->pb), s->pb.pos, ffm->write_index, ffm->file_size);
321 if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
323 return AVERROR(EAGAIN);
327 for(i=0;i<FRAME_HEADER_SIZE;i++)
328 printf("%02x ", ffm->header[i]);
332 ffm->read_state = READ_DATA;
335 size = AV_RB24(ffm->header + 2);
336 if (!ffm_is_avail_data(s, size)) {
337 return AVERROR(EAGAIN);
340 duration = AV_RB24(ffm->header + 5);
342 av_new_packet(pkt, size);
343 pkt->stream_index = ffm->header[0];
344 if ((unsigned)pkt->stream_index >= s->nb_streams) {
345 av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index);
347 ffm->read_state = READ_HEADER;
348 return AVERROR(EAGAIN);
350 pkt->pos = url_ftell(s->pb);
351 if (ffm->header[1] & FLAG_KEY_FRAME)
352 pkt->flags |= PKT_FLAG_KEY;
354 ffm->read_state = READ_HEADER;
355 if (ffm_read_data(s, pkt->data, size, 0) != size) {
356 /* bad case: desynchronized packet. we cancel all the packet loading */
358 return AVERROR(EAGAIN);
360 if (ffm->first_frame_in_packet)
363 ffm->first_frame_in_packet = 0;
365 pkt->duration = duration;
373 /* pos is between 0 and file_size - FFM_PACKET_SIZE. It is translated
374 by the write position inside this function */
375 static void ffm_seek1(AVFormatContext *s, offset_t pos1)
377 FFMContext *ffm = s->priv_data;
378 ByteIOContext *pb = s->pb;
381 pos = pos1 + ffm->write_index;
382 if (pos >= ffm->file_size)
383 pos -= (ffm->file_size - FFM_PACKET_SIZE);
385 printf("seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos);
387 url_fseek(pb, pos, SEEK_SET);
390 /* seek to a given time in the file. The file read pointer is
391 positioned at or before pts. XXX: the following code is quite
393 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
395 FFMContext *ffm = s->priv_data;
396 offset_t pos_min, pos_max, pos;
397 int64_t pts_min, pts_max, pts;
401 printf("wanted_pts=%0.6f\n", wanted_pts / 1000000.0);
403 /* find the position using linear interpolation (better than
404 dichotomy in typical cases) */
406 pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
407 while (pos_min <= pos_max) {
408 pts_min = get_pts(s, pos_min);
409 pts_max = get_pts(s, pos_max);
410 /* linear interpolation */
411 pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) /
412 (double)(pts_max - pts_min);
413 pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE;
416 else if (pos >= pos_max)
418 pts = get_pts(s, pos);
419 /* check if we are lucky */
420 if (pts == wanted_pts) {
422 } else if (pts > wanted_pts) {
423 pos_max = pos - FFM_PACKET_SIZE;
425 pos_min = pos + FFM_PACKET_SIZE;
428 pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max;
430 pos -= FFM_PACKET_SIZE;
436 #ifdef CONFIG_FFSERVER
437 offset_t ffm_read_write_index(int fd)
441 lseek(fd, 8, SEEK_SET);
446 void ffm_write_write_index(int fd, offset_t pos)
452 buf[i] = (pos >> (56 - i * 8)) & 0xff;
453 lseek(fd, 8, SEEK_SET);
457 void ffm_set_write_index(AVFormatContext *s, offset_t pos, offset_t file_size)
459 FFMContext *ffm = s->priv_data;
460 ffm->write_index = pos;
461 ffm->file_size = file_size;
463 #endif // CONFIG_FFSERVER
465 static int ffm_read_close(AVFormatContext *s)
470 for(i=0;i<s->nb_streams;i++) {
472 av_freep(&st->priv_data);
477 static int ffm_probe(AVProbeData *p)
480 p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' &&
482 return AVPROBE_SCORE_MAX + 1;
486 AVInputFormat ffm_demuxer = {