FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ffmdec.c
Go to the documentation of this file.
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 <stdint.h>
23 
24 #include "libavutil/internal.h"
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/intfloat.h"
27 #include "libavutil/opt.h"
28 #include "libavutil/avassert.h"
29 #include "libavutil/avstring.h"
30 #include "avformat.h"
31 #include "internal.h"
32 #include "ffm.h"
33 #include "avio_internal.h"
34 
36 {
37  FFMContext *ffm = s->priv_data;
38  int64_t pos, avail_size;
39  ptrdiff_t len;
40 
41  len = ffm->packet_end - ffm->packet_ptr;
42  if (size <= len)
43  return 1;
44  pos = avio_tell(s->pb);
45  if (!ffm->write_index) {
46  if (pos == ffm->file_size)
47  return AVERROR_EOF;
48  avail_size = ffm->file_size - pos;
49  } else {
50  if (pos == ffm->write_index) {
51  /* exactly at the end of stream */
52  if (ffm->server_attached)
53  return AVERROR(EAGAIN);
54  else
55  return AVERROR_INVALIDDATA;
56  } else if (pos < ffm->write_index) {
57  avail_size = ffm->write_index - pos;
58  } else {
59  avail_size = (ffm->file_size - pos) + (ffm->write_index - FFM_PACKET_SIZE);
60  }
61  }
62  avail_size = (avail_size / ffm->packet_size) * (ffm->packet_size - FFM_HEADER_SIZE) + len;
63  if (size <= avail_size)
64  return 1;
65  else if (ffm->server_attached)
66  return AVERROR(EAGAIN);
67  else
68  return AVERROR_INVALIDDATA;
69 }
70 
71 static int ffm_resync(AVFormatContext *s, uint32_t state)
72 {
73  av_log(s, AV_LOG_ERROR, "resyncing\n");
74  while (state != PACKET_ID) {
75  if (avio_feof(s->pb)) {
76  av_log(s, AV_LOG_ERROR, "cannot find FFM syncword\n");
77  return -1;
78  }
79  state = (state << 8) | avio_r8(s->pb);
80  }
81  return 0;
82 }
83 
84 /* first is true if we read the frame header */
86  uint8_t *buf, int size, int header)
87 {
88  FFMContext *ffm = s->priv_data;
89  AVIOContext *pb = s->pb;
90  int fill_size, size1, frame_offset;
91  uint32_t id;
92  ptrdiff_t len;
93  int64_t last_pos = -1;
94 
95  size1 = size;
96  while (size > 0) {
97  redo:
98  len = ffm->packet_end - ffm->packet_ptr;
99  if (len < 0)
100  return -1;
101  if (len > size)
102  len = size;
103  if (len == 0) {
104  if (avio_tell(pb) == ffm->file_size) {
105  if (ffm->server_attached) {
106  avio_seek(pb, ffm->packet_size, SEEK_SET);
107  } else
108  return AVERROR_EOF;
109  }
110  retry_read:
111  if (pb->buffer_size != ffm->packet_size) {
112  int64_t tell = avio_tell(pb);
113  int ret = ffio_set_buf_size(pb, ffm->packet_size);
114  if (ret < 0)
115  return ret;
116  avio_seek(pb, tell, SEEK_SET);
117  }
118  id = avio_rb16(pb); /* PACKET_ID */
119  if (id != PACKET_ID) {
120  if (ffm_resync(s, id) < 0)
121  return -1;
122  last_pos = avio_tell(pb);
123  }
124  fill_size = avio_rb16(pb);
125  ffm->dts = avio_rb64(pb);
126  frame_offset = avio_rb16(pb);
127  avio_read(pb, ffm->packet, ffm->packet_size - FFM_HEADER_SIZE);
128  if (ffm->packet_size < FFM_HEADER_SIZE + fill_size || frame_offset < 0) {
129  return -1;
130  }
131  ffm->packet_end = ffm->packet + (ffm->packet_size - FFM_HEADER_SIZE - fill_size);
132  /* if first packet or resynchronization packet, we must
133  handle it specifically */
134  if (ffm->first_packet || (frame_offset & 0x8000)) {
135  if (!frame_offset) {
136  /* This packet has no frame headers in it */
137  if (avio_tell(pb) >= ffm->packet_size * 3LL) {
138  int64_t seekback = FFMIN(ffm->packet_size * 2LL, avio_tell(pb) - last_pos);
139  seekback = FFMAX(seekback, 0);
140  avio_seek(pb, -seekback, 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  ffm->packet_end = ffm->packet_ptr;
149  return -1;
150  }
151  ffm->packet_ptr = ffm->packet + (frame_offset & 0x7fff) - FFM_HEADER_SIZE;
152  if (!header)
153  break;
154  } else {
155  ffm->packet_ptr = ffm->packet;
156  }
157  goto redo;
158  }
159  memcpy(buf, ffm->packet_ptr, len);
160  buf += len;
161  ffm->packet_ptr += len;
162  size -= len;
163  header = 0;
164  }
165  return size1 - size;
166 }
167 
168 /* ensure that actual seeking happens between FFM_PACKET_SIZE
169  and file_size - FFM_PACKET_SIZE */
170 static int64_t ffm_seek1(AVFormatContext *s, int64_t pos1)
171 {
172  FFMContext *ffm = s->priv_data;
173  AVIOContext *pb = s->pb;
174  int64_t pos;
175 
176  pos = FFMIN(pos1, ffm->file_size - FFM_PACKET_SIZE);
177  pos = FFMAX(pos, FFM_PACKET_SIZE);
178  ff_dlog(s, "seek to %"PRIx64" -> %"PRIx64"\n", pos1, pos);
179  return avio_seek(pb, pos, SEEK_SET);
180 }
181 
182 static int64_t get_dts(AVFormatContext *s, int64_t pos)
183 {
184  AVIOContext *pb = s->pb;
185  int64_t dts;
186 
187  ffm_seek1(s, pos);
188  avio_skip(pb, 4);
189  dts = avio_rb64(pb);
190  ff_dlog(s, "dts=%0.6f\n", dts / 1000000.0);
191  return dts;
192 }
193 
195 {
196  FFMContext *ffm = s->priv_data;
197  AVIOContext *pb = s->pb;
198  int64_t pts;
199  //int64_t orig_write_index = ffm->write_index;
200  int64_t pos_min, pos_max;
201  int64_t pts_start;
202  int64_t ptr = avio_tell(pb);
203 
204 
205  pos_min = 0;
206  pos_max = ffm->file_size - 2 * FFM_PACKET_SIZE;
207 
208  pts_start = get_dts(s, pos_min);
209 
210  pts = get_dts(s, pos_max);
211 
212  if (pts - 100000 > pts_start)
213  goto end;
214 
216 
217  pts_start = get_dts(s, pos_min);
218 
219  pts = get_dts(s, pos_max);
220 
221  if (pts - 100000 <= pts_start) {
222  while (1) {
223  int64_t newpos;
224  int64_t newpts;
225 
226  newpos = ((pos_max + pos_min) / (2 * FFM_PACKET_SIZE)) * FFM_PACKET_SIZE;
227 
228  if (newpos == pos_min)
229  break;
230 
231  newpts = get_dts(s, newpos);
232 
233  if (newpts - 100000 <= pts) {
234  pos_max = newpos;
235  pts = newpts;
236  } else {
237  pos_min = newpos;
238  }
239  }
240  ffm->write_index += pos_max;
241  }
242 
243  end:
244  avio_seek(pb, ptr, SEEK_SET);
245 }
246 
247 
249 {
250  int i;
251 
252  for (i = 0; i < s->nb_streams; i++)
253  av_freep(&s->streams[i]->codec->rc_eq);
254 
255  return 0;
256 }
257 
258 static int ffm_append_recommended_configuration(AVStream *st, char **conf)
259 {
260  int ret;
261  size_t newsize;
262  av_assert0(conf && st);
263  if (!*conf)
264  return 0;
267  *conf = 0;
268  return 0;
269  }
270  newsize = strlen(*conf) + strlen(st->recommended_encoder_configuration) + 2;
271  if ((ret = av_reallocp(&st->recommended_encoder_configuration, newsize)) < 0)
272  return ret;
274  av_strlcat(st->recommended_encoder_configuration, *conf, newsize);
275  av_freep(conf);
276  return 0;
277 }
278 
280 {
281  FFMContext *ffm = s->priv_data;
282  AVStream *st;
283  AVIOContext *pb = s->pb;
284  AVCodecContext *codec;
285  const AVCodecDescriptor *codec_desc;
286  int ret;
287  int f_main = 0, f_cprv = -1, f_stvi = -1, f_stau = -1;
288  AVCodec *enc;
289  char *buffer;
290 
291  ffm->packet_size = avio_rb32(pb);
292  if (ffm->packet_size != FFM_PACKET_SIZE) {
293  av_log(s, AV_LOG_ERROR, "Invalid packet size %d, expected size was %d\n",
295  ret = AVERROR_INVALIDDATA;
296  goto fail;
297  }
298 
299  ffm->write_index = avio_rb64(pb);
300  /* get also filesize */
301  if (pb->seekable) {
302  ffm->file_size = avio_size(pb);
303  if (ffm->write_index && 0)
305  } else {
306  ffm->file_size = (UINT64_C(1) << 63) - 1;
307  }
308 
309  while(!avio_feof(pb)) {
310  unsigned id = avio_rb32(pb);
311  unsigned size = avio_rb32(pb);
312  int64_t next = avio_tell(pb) + size;
313  char rc_eq_buf[128];
314 
315  if(!id)
316  break;
317 
318  switch(id) {
319  case MKBETAG('M', 'A', 'I', 'N'):
320  if (f_main++) {
321  ret = AVERROR(EINVAL);
322  goto fail;
323  }
324  avio_rb32(pb); /* nb_streams */
325  avio_rb32(pb); /* total bitrate */
326  break;
327  case MKBETAG('C', 'O', 'M', 'M'):
328  f_cprv = f_stvi = f_stau = 0;
329  st = avformat_new_stream(s, NULL);
330  if (!st) {
331  ret = AVERROR(ENOMEM);
332  goto fail;
333  }
334 
335  avpriv_set_pts_info(st, 64, 1, 1000000);
336 
337  codec = st->codec;
338  /* generic info */
339  codec->codec_id = avio_rb32(pb);
340  codec_desc = avcodec_descriptor_get(codec->codec_id);
341  if (!codec_desc) {
342  av_log(s, AV_LOG_ERROR, "Invalid codec id: %d\n", codec->codec_id);
343  codec->codec_id = AV_CODEC_ID_NONE;
344  goto fail;
345  }
346  codec->codec_type = avio_r8(pb);
347  if (codec->codec_type != codec_desc->type) {
348  av_log(s, AV_LOG_ERROR, "Codec type mismatch: expected %d, found %d\n",
349  codec_desc->type, codec->codec_type);
350  codec->codec_id = AV_CODEC_ID_NONE;
352  goto fail;
353  }
354  codec->bit_rate = avio_rb32(pb);
355  codec->flags = avio_rb32(pb);
356  codec->flags2 = avio_rb32(pb);
357  codec->debug = avio_rb32(pb);
358  if (codec->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
359  if (ff_get_extradata(codec, pb, avio_rb32(pb)) < 0)
360  return AVERROR(ENOMEM);
361  }
362  break;
363  case MKBETAG('S', 'T', 'V', 'I'):
364  if (f_stvi++) {
365  ret = AVERROR(EINVAL);
366  goto fail;
367  }
368  codec->time_base.num = avio_rb32(pb);
369  codec->time_base.den = avio_rb32(pb);
370  if (codec->time_base.num <= 0 || codec->time_base.den <= 0) {
371  av_log(s, AV_LOG_ERROR, "Invalid time base %d/%d\n",
372  codec->time_base.num, codec->time_base.den);
373  ret = AVERROR_INVALIDDATA;
374  goto fail;
375  }
376  codec->width = avio_rb16(pb);
377  codec->height = avio_rb16(pb);
378  codec->gop_size = avio_rb16(pb);
379  codec->pix_fmt = avio_rb32(pb);
380  codec->qmin = avio_r8(pb);
381  codec->qmax = avio_r8(pb);
382  codec->max_qdiff = avio_r8(pb);
383  codec->qcompress = avio_rb16(pb) / 10000.0;
384  codec->qblur = avio_rb16(pb) / 10000.0;
385  codec->bit_rate_tolerance = avio_rb32(pb);
386  avio_get_str(pb, INT_MAX, rc_eq_buf, sizeof(rc_eq_buf));
387  codec->rc_eq = av_strdup(rc_eq_buf);
388  codec->rc_max_rate = avio_rb32(pb);
389  codec->rc_min_rate = avio_rb32(pb);
390  codec->rc_buffer_size = avio_rb32(pb);
391  codec->i_quant_factor = av_int2double(avio_rb64(pb));
392  codec->b_quant_factor = av_int2double(avio_rb64(pb));
393  codec->i_quant_offset = av_int2double(avio_rb64(pb));
394  codec->b_quant_offset = av_int2double(avio_rb64(pb));
395  codec->dct_algo = avio_rb32(pb);
396  codec->strict_std_compliance = avio_rb32(pb);
397  codec->max_b_frames = avio_rb32(pb);
398  codec->mpeg_quant = avio_rb32(pb);
399  codec->intra_dc_precision = avio_rb32(pb);
400  codec->me_method = avio_rb32(pb);
401  codec->mb_decision = avio_rb32(pb);
402  codec->nsse_weight = avio_rb32(pb);
403  codec->frame_skip_cmp = avio_rb32(pb);
405  codec->codec_tag = avio_rb32(pb);
406  codec->thread_count = avio_r8(pb);
407  codec->coder_type = avio_rb32(pb);
408  codec->me_cmp = avio_rb32(pb);
409  codec->me_subpel_quality = avio_rb32(pb);
410  codec->me_range = avio_rb32(pb);
411  codec->keyint_min = avio_rb32(pb);
412  codec->scenechange_threshold = avio_rb32(pb);
413  codec->b_frame_strategy = avio_rb32(pb);
414  codec->qcompress = av_int2double(avio_rb64(pb));
415  codec->qblur = av_int2double(avio_rb64(pb));
416  codec->max_qdiff = avio_rb32(pb);
417  codec->refs = avio_rb32(pb);
418  break;
419  case MKBETAG('S', 'T', 'A', 'U'):
420  if (f_stau++) {
421  ret = AVERROR(EINVAL);
422  goto fail;
423  }
424  codec->sample_rate = avio_rb32(pb);
425  codec->channels = avio_rl16(pb);
426  codec->frame_size = avio_rl16(pb);
427  break;
428  case MKBETAG('C', 'P', 'R', 'V'):
429  if (f_cprv++) {
430  ret = AVERROR(EINVAL);
431  goto fail;
432  }
433  enc = avcodec_find_encoder(codec->codec_id);
434  if (enc && enc->priv_data_size && enc->priv_class) {
435  buffer = av_malloc(size + 1);
436  if (!buffer) {
437  ret = AVERROR(ENOMEM);
438  goto fail;
439  }
440  avio_get_str(pb, size, buffer, size + 1);
441  if ((ret = ffm_append_recommended_configuration(st, &buffer)) < 0)
442  goto fail;
443  }
444  break;
445  case MKBETAG('S', '2', 'V', 'I'):
446  if (f_stvi++ || !size) {
447  ret = AVERROR(EINVAL);
448  goto fail;
449  }
450  buffer = av_malloc(size);
451  if (!buffer) {
452  ret = AVERROR(ENOMEM);
453  goto fail;
454  }
455  avio_get_str(pb, INT_MAX, buffer, size);
456  av_set_options_string(codec, buffer, "=", ",");
457  if ((ret = ffm_append_recommended_configuration(st, &buffer)) < 0)
458  goto fail;
459  break;
460  case MKBETAG('S', '2', 'A', 'U'):
461  if (f_stau++ || !size) {
462  ret = AVERROR(EINVAL);
463  goto fail;
464  }
465  buffer = av_malloc(size);
466  if (!buffer) {
467  ret = AVERROR(ENOMEM);
468  goto fail;
469  }
470  avio_get_str(pb, INT_MAX, buffer, size);
471  av_set_options_string(codec, buffer, "=", ",");
472  if ((ret = ffm_append_recommended_configuration(st, &buffer)) < 0)
473  goto fail;
474  break;
475  }
476  avio_seek(pb, next, SEEK_SET);
477  }
478 
479  /* get until end of block reached */
480  while ((avio_tell(pb) % ffm->packet_size) != 0 && !pb->eof_reached)
481  avio_r8(pb);
482 
483  /* init packet demux */
484  ffm->packet_ptr = ffm->packet;
485  ffm->packet_end = ffm->packet;
486  ffm->frame_offset = 0;
487  ffm->dts = 0;
488  ffm->read_state = READ_HEADER;
489  ffm->first_packet = 1;
490  return 0;
491  fail:
492  ffm_close(s);
493  return ret;
494 }
495 
497 {
498  FFMContext *ffm = s->priv_data;
499  AVStream *st;
500  AVIOContext *pb = s->pb;
501  AVCodecContext *codec;
502  const AVCodecDescriptor *codec_desc;
503  int i, nb_streams;
504  uint32_t tag;
505 
506  /* header */
507  tag = avio_rl32(pb);
508  if (tag == MKTAG('F', 'F', 'M', '2'))
509  return ffm2_read_header(s);
510  if (tag != MKTAG('F', 'F', 'M', '1'))
511  goto fail;
512  ffm->packet_size = avio_rb32(pb);
513  if (ffm->packet_size != FFM_PACKET_SIZE)
514  goto fail;
515  ffm->write_index = avio_rb64(pb);
516  /* get also filesize */
517  if (pb->seekable) {
518  ffm->file_size = avio_size(pb);
519  if (ffm->write_index && 0)
521  } else {
522  ffm->file_size = (UINT64_C(1) << 63) - 1;
523  }
524 
525  nb_streams = avio_rb32(pb);
526  avio_rb32(pb); /* total bitrate */
527  /* read each stream */
528  for(i=0;i<nb_streams;i++) {
529  char rc_eq_buf[128];
530 
531  st = avformat_new_stream(s, NULL);
532  if (!st)
533  goto fail;
534 
535  avpriv_set_pts_info(st, 64, 1, 1000000);
536 
537  codec = st->codec;
538  /* generic info */
539  codec->codec_id = avio_rb32(pb);
540  codec_desc = avcodec_descriptor_get(codec->codec_id);
541  if (!codec_desc) {
542  av_log(s, AV_LOG_ERROR, "Invalid codec id: %d\n", codec->codec_id);
543  codec->codec_id = AV_CODEC_ID_NONE;
544  goto fail;
545  }
546  codec->codec_type = avio_r8(pb); /* codec_type */
547  if (codec->codec_type != codec_desc->type) {
548  av_log(s, AV_LOG_ERROR, "Codec type mismatch: expected %d, found %d\n",
549  codec_desc->type, codec->codec_type);
550  codec->codec_id = AV_CODEC_ID_NONE;
552  goto fail;
553  }
554  codec->bit_rate = avio_rb32(pb);
555  codec->flags = avio_rb32(pb);
556  codec->flags2 = avio_rb32(pb);
557  codec->debug = avio_rb32(pb);
558  /* specific info */
559  switch(codec->codec_type) {
560  case AVMEDIA_TYPE_VIDEO:
561  codec->time_base.num = avio_rb32(pb);
562  codec->time_base.den = avio_rb32(pb);
563  if (codec->time_base.num <= 0 || codec->time_base.den <= 0) {
564  av_log(s, AV_LOG_ERROR, "Invalid time base %d/%d\n",
565  codec->time_base.num, codec->time_base.den);
566  goto fail;
567  }
568  codec->width = avio_rb16(pb);
569  codec->height = avio_rb16(pb);
570  codec->gop_size = avio_rb16(pb);
571  codec->pix_fmt = avio_rb32(pb);
572  codec->qmin = avio_r8(pb);
573  codec->qmax = avio_r8(pb);
574  codec->max_qdiff = avio_r8(pb);
575  codec->qcompress = avio_rb16(pb) / 10000.0;
576  codec->qblur = avio_rb16(pb) / 10000.0;
577  codec->bit_rate_tolerance = avio_rb32(pb);
578  avio_get_str(pb, INT_MAX, rc_eq_buf, sizeof(rc_eq_buf));
579  codec->rc_eq = av_strdup(rc_eq_buf);
580  codec->rc_max_rate = avio_rb32(pb);
581  codec->rc_min_rate = avio_rb32(pb);
582  codec->rc_buffer_size = avio_rb32(pb);
583  codec->i_quant_factor = av_int2double(avio_rb64(pb));
584  codec->b_quant_factor = av_int2double(avio_rb64(pb));
585  codec->i_quant_offset = av_int2double(avio_rb64(pb));
586  codec->b_quant_offset = av_int2double(avio_rb64(pb));
587  codec->dct_algo = avio_rb32(pb);
588  codec->strict_std_compliance = avio_rb32(pb);
589  codec->max_b_frames = avio_rb32(pb);
590  codec->mpeg_quant = avio_rb32(pb);
591  codec->intra_dc_precision = avio_rb32(pb);
592  codec->me_method = avio_rb32(pb);
593  codec->mb_decision = avio_rb32(pb);
594  codec->nsse_weight = avio_rb32(pb);
595  codec->frame_skip_cmp = avio_rb32(pb);
597  codec->codec_tag = avio_rb32(pb);
598  codec->thread_count = avio_r8(pb);
599  codec->coder_type = avio_rb32(pb);
600  codec->me_cmp = avio_rb32(pb);
601  codec->me_subpel_quality = avio_rb32(pb);
602  codec->me_range = avio_rb32(pb);
603  codec->keyint_min = avio_rb32(pb);
604  codec->scenechange_threshold = avio_rb32(pb);
605  codec->b_frame_strategy = avio_rb32(pb);
606  codec->qcompress = av_int2double(avio_rb64(pb));
607  codec->qblur = av_int2double(avio_rb64(pb));
608  codec->max_qdiff = avio_rb32(pb);
609  codec->refs = avio_rb32(pb);
610  break;
611  case AVMEDIA_TYPE_AUDIO:
612  codec->sample_rate = avio_rb32(pb);
613  codec->channels = avio_rl16(pb);
614  codec->frame_size = avio_rl16(pb);
615  break;
616  default:
617  goto fail;
618  }
619  if (codec->flags & AV_CODEC_FLAG_GLOBAL_HEADER) {
620  if (ff_get_extradata(codec, pb, avio_rb32(pb)) < 0)
621  return AVERROR(ENOMEM);
622  }
623  }
624 
625  /* get until end of block reached */
626  while ((avio_tell(pb) % ffm->packet_size) != 0 && !pb->eof_reached)
627  avio_r8(pb);
628 
629  /* init packet demux */
630  ffm->packet_ptr = ffm->packet;
631  ffm->packet_end = ffm->packet;
632  ffm->frame_offset = 0;
633  ffm->dts = 0;
634  ffm->read_state = READ_HEADER;
635  ffm->first_packet = 1;
636  return 0;
637  fail:
638  ffm_close(s);
639  return -1;
640 }
641 
642 /* return < 0 if eof */
644 {
645  int size;
646  FFMContext *ffm = s->priv_data;
647  int duration, ret;
648 
649  switch(ffm->read_state) {
650  case READ_HEADER:
651  if ((ret = ffm_is_avail_data(s, FRAME_HEADER_SIZE+4)) < 0)
652  return ret;
653 
654  ff_dlog(s, "pos=%08"PRIx64" spos=%"PRIx64", write_index=%"PRIx64" size=%"PRIx64"\n",
655  avio_tell(s->pb), s->pb->pos, ffm->write_index, ffm->file_size);
656  if (ffm_read_data(s, ffm->header, FRAME_HEADER_SIZE, 1) !=
658  return -1;
659  if (ffm->header[1] & FLAG_DTS)
660  if (ffm_read_data(s, ffm->header+16, 4, 1) != 4)
661  return -1;
662  ffm->read_state = READ_DATA;
663  /* fall through */
664  case READ_DATA:
665  size = AV_RB24(ffm->header + 2);
666  if ((ret = ffm_is_avail_data(s, size)) < 0)
667  return ret;
668 
669  duration = AV_RB24(ffm->header + 5);
670 
671  if (av_new_packet(pkt, size) < 0) {
672  return AVERROR(ENOMEM);
673  }
674  pkt->stream_index = ffm->header[0];
675  if ((unsigned)pkt->stream_index >= s->nb_streams) {
676  av_log(s, AV_LOG_ERROR, "invalid stream index %d\n", pkt->stream_index);
677  av_packet_unref(pkt);
678  ffm->read_state = READ_HEADER;
679  return -1;
680  }
681  pkt->pos = avio_tell(s->pb);
682  if (ffm->header[1] & FLAG_KEY_FRAME)
683  pkt->flags |= AV_PKT_FLAG_KEY;
684 
685  ffm->read_state = READ_HEADER;
686  if (ffm_read_data(s, pkt->data, size, 0) != size) {
687  /* bad case: desynchronized packet. we cancel all the packet loading */
688  av_packet_unref(pkt);
689  return -1;
690  }
691  pkt->pts = AV_RB64(ffm->header+8);
692  if (ffm->header[1] & FLAG_DTS)
693  pkt->dts = pkt->pts - AV_RB32(ffm->header+16);
694  else
695  pkt->dts = pkt->pts;
696  pkt->duration = duration;
697  break;
698  }
699  return 0;
700 }
701 
702 /* seek to a given time in the file. The file read pointer is
703  positioned at or before pts. XXX: the following code is quite
704  approximative */
705 static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
706 {
707  FFMContext *ffm = s->priv_data;
708  int64_t pos_min, pos_max, pos;
709  int64_t pts_min, pts_max, pts;
710  double pos1;
711 
712  ff_dlog(s, "wanted_pts=%0.6f\n", wanted_pts / 1000000.0);
713  /* find the position using linear interpolation (better than
714  dichotomy in typical cases) */
715  if (ffm->write_index && ffm->write_index < ffm->file_size) {
716  if (get_dts(s, FFM_PACKET_SIZE) < wanted_pts) {
717  pos_min = FFM_PACKET_SIZE;
718  pos_max = ffm->write_index - FFM_PACKET_SIZE;
719  } else {
720  pos_min = ffm->write_index;
721  pos_max = ffm->file_size - FFM_PACKET_SIZE;
722  }
723  } else {
724  pos_min = FFM_PACKET_SIZE;
725  pos_max = ffm->file_size - FFM_PACKET_SIZE;
726  }
727  while (pos_min <= pos_max) {
728  pts_min = get_dts(s, pos_min);
729  pts_max = get_dts(s, pos_max);
730  if (pts_min > wanted_pts || pts_max <= wanted_pts) {
731  pos = pts_min > wanted_pts ? pos_min : pos_max;
732  goto found;
733  }
734  /* linear interpolation */
735  pos1 = (double)(pos_max - pos_min) * (double)(wanted_pts - pts_min) /
736  (double)(pts_max - pts_min);
737  pos = (((int64_t)pos1) / FFM_PACKET_SIZE) * FFM_PACKET_SIZE;
738  if (pos <= pos_min)
739  pos = pos_min;
740  else if (pos >= pos_max)
741  pos = pos_max;
742  pts = get_dts(s, pos);
743  /* check if we are lucky */
744  if (pts == wanted_pts) {
745  goto found;
746  } else if (pts > wanted_pts) {
747  pos_max = pos - FFM_PACKET_SIZE;
748  } else {
749  pos_min = pos + FFM_PACKET_SIZE;
750  }
751  }
752  pos = (flags & AVSEEK_FLAG_BACKWARD) ? pos_min : pos_max;
753 
754  found:
755  if (ffm_seek1(s, pos) < 0)
756  return -1;
757 
758  /* reset read state */
759  ffm->read_state = READ_HEADER;
760  ffm->packet_ptr = ffm->packet;
761  ffm->packet_end = ffm->packet;
762  ffm->first_packet = 1;
763 
764  return 0;
765 }
766 
767 static int ffm_probe(AVProbeData *p)
768 {
769  if (
770  p->buf[0] == 'F' && p->buf[1] == 'F' && p->buf[2] == 'M' &&
771  (p->buf[3] == '1' || p->buf[3] == '2'))
772  return AVPROBE_SCORE_MAX + 1;
773  return 0;
774 }
775 
776 static const AVOption options[] = {
777  {"server_attached", NULL, offsetof(FFMContext, server_attached), AV_OPT_TYPE_BOOL, {.i64 = 0}, 0, 1, AV_OPT_FLAG_EXPORT },
778  {"ffm_write_index", NULL, offsetof(FFMContext, write_index), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, 1, AV_OPT_FLAG_EXPORT },
779  {"ffm_file_size", NULL, offsetof(FFMContext, file_size), AV_OPT_TYPE_INT64, {.i64 = 0}, 0, 1, AV_OPT_FLAG_EXPORT },
780  { NULL },
781 };
782 
783 static const AVClass ffm_class = {
784  .class_name = "ffm demuxer",
785  .item_name = av_default_item_name,
786  .option = options,
787  .version = LIBAVUTIL_VERSION_INT,
788 };
790  .name = "ffm",
791  .long_name = NULL_IF_CONFIG_SMALL("FFM (FFserver live feed)"),
792  .priv_data_size = sizeof(FFMContext),
797  .read_seek = ffm_seek,
798  .priv_class = &ffm_class,
799 };
#define AVSEEK_FLAG_BACKWARD
Definition: avformat.h:2348
#define NULL
Definition: coverity.c:32
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define PACKET_ID
Definition: ffm.h:32
int64_t avio_size(AVIOContext *s)
Get the filesize.
Definition: aviobuf.c:287
int64_t dts
Definition: ffm.h:55
static const AVOption options[]
Definition: ffmdec.c:776
char * recommended_encoder_configuration
String containing paris of key and values describing recommended encoder configuration.
Definition: avformat.h:1208
AVCodec * avcodec_find_encoder(enum AVCodecID id)
Find a registered encoder with a matching codec ID.
Definition: utils.c:2610
int dct_algo
DCT algorithm, see FF_DCT_* below.
Definition: avcodec.h:2869
AVOption.
Definition: opt.h:245
#define AV_OPT_FLAG_EXPORT
The option is inteded for exporting values to the caller.
Definition: opt.h:286
enum AVCodecID id
Definition: mxfenc.c:104
int frame_offset
Definition: ffm.h:54
float qblur
amount of qscale smoothing over time (0.0-1.0)
Definition: avcodec.h:2459
int64_t bit_rate
the average bitrate
Definition: avcodec.h:1597
#define LIBAVUTIL_VERSION_INT
Definition: version.h:70
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1487
void avpriv_set_pts_info(AVStream *s, int pts_wrap_bits, unsigned int pts_num, unsigned int pts_den)
Set the time base and wrapping info for a given stream.
Definition: utils.c:4149
int ff_get_extradata(AVCodecContext *avctx, AVIOContext *pb, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0 and f...
Definition: utils.c:3000
int max_b_frames
maximum number of B-frames between non-B-frames Note: The output will be delayed by max_b_frames+1 re...
Definition: avcodec.h:1810
static int read_seek(AVFormatContext *ctx, int stream_index, int64_t timestamp, int flags)
Definition: libcdio.c:153
attribute_deprecated int frame_skip_cmp
Definition: avcodec.h:2614
int num
numerator
Definition: rational.h:44
int av_set_options_string(void *ctx, const char *opts, const char *key_val_sep, const char *pairs_sep)
Parse the key/value pairs list in opts.
Definition: opt.c:1315
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:208
enum AVPixelFormat pix_fmt
Pixel format, see AV_PIX_FMT_xxx.
Definition: avcodec.h:1752
static int ffm_append_recommended_configuration(AVStream *st, char **conf)
Definition: ffmdec.c:258
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:282
static AVPacket pkt
#define FLAG_DTS
Definition: ffm.h:37
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:683
static int ffm_resync(AVFormatContext *s, uint32_t state)
Definition: ffmdec.c:71
AVCodec.
Definition: avcodec.h:3392
static int ffm_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: ffmdec.c:643
static int ffm_read_data(AVFormatContext *s, uint8_t *buf, int size, int header)
Definition: ffmdec.c:85
float i_quant_offset
qscale offset between P and I-frames
Definition: avcodec.h:1868
attribute_deprecated int me_method
This option does nothing.
Definition: avcodec.h:1759
#define FFM_HEADER_SIZE
Definition: ffm.h:30
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
Definition: avcodec.h:1661
Format I/O context.
Definition: avformat.h:1314
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
Definition: log.h:72
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
int64_t file_size
Definition: ffm.h:47
int bit_rate_tolerance
number of bits the bitstream is allowed to diverge from the reference.
Definition: avcodec.h:1605
attribute_deprecated float rc_buffer_aggressivity
Definition: avcodec.h:2537
static av_always_inline double av_int2double(uint64_t i)
Reinterpret a 64-bit integer as a double.
Definition: intfloat.h:60
attribute_deprecated const char * rc_eq
Definition: avcodec.h:2515
uint8_t
static int nb_streams
Definition: ffprobe.c:240
#define av_malloc(s)
static int64_t get_dts(AVFormatContext *s, int64_t pos)
Definition: ffmdec.c:182
AVOptions.
#define FRAME_HEADER_SIZE
Definition: cpia.c:30
int me_range
maximum motion estimation search range in subpel units If 0 then no limit.
Definition: avcodec.h:2046
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:698
static av_cold int end(AVCodecContext *avctx)
Definition: avrndec.c:90
int64_t duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1485
float b_quant_factor
qscale factor between IP and B-frames If > 0 then the last P-frame quantizer will be used (q= lastp_q...
Definition: avcodec.h:1819
Definition: ffm.h:41
uint8_t * packet_end
Definition: ffm.h:56
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3805
int me_cmp
motion estimation comparison function
Definition: avcodec.h:1942
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_RB32
Definition: bytestream.h:87
AVStream ** streams
A list of all streams in the file.
Definition: avformat.h:1382
static int ffm_is_avail_data(AVFormatContext *s, int size)
Definition: ffmdec.c:35
uint8_t * data
Definition: avcodec.h:1467
uint32_t tag
Definition: movenc.c:1348
#define ff_dlog(a,...)
#define AVERROR_EOF
End of file.
Definition: error.h:55
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
ptrdiff_t size
Definition: opengl_enc.c:101
uint64_t avio_rb64(AVIOContext *s)
Definition: aviobuf.c:765
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:442
static const uint8_t header[24]
Definition: sdr2.c:67
#define av_log(a,...)
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:545
static int ffm2_read_header(AVFormatContext *s)
Definition: ffmdec.c:279
#define AV_PKT_FLAG_KEY
The packet contains a keyframe.
Definition: avcodec.h:1499
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:86
uint8_t * packet_ptr
Definition: ffm.h:56
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
static void adjust_write_index(AVFormatContext *s)
Definition: ffmdec.c:194
av_default_item_name
unsigned int avio_rl32(AVIOContext *s)
Definition: aviobuf.c:667
#define AVERROR(e)
Definition: error.h:43
int ffio_set_buf_size(AVIOContext *s, int buf_size)
Definition: aviobuf.c:852
int qmax
maximum quantizer
Definition: avcodec.h:2473
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:176
static const AVClass ffm_class
Definition: ffmdec.c:783
int flags
AV_CODEC_FLAG_*.
Definition: avcodec.h:1627
simple assert() macros that are a bit more flexible than ISO C assert().
float i_quant_factor
qscale factor between P and I-frames If > 0 then the last p frame quantizer will be used (q= lastp_q*...
Definition: avcodec.h:1861
static int ffm_probe(AVProbeData *p)
Definition: ffmdec.c:767
#define FFMAX(a, b)
Definition: common.h:94
#define fail()
Definition: checkasm.h:80
int first_packet
Definition: ffm.h:52
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1473
const AVCodecDescriptor * avcodec_descriptor_get(enum AVCodecID id)
Definition: codec_desc.c:2900
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:536
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:896
int rc_buffer_size
decoder bitstream buffer size
Definition: avcodec.h:2500
int intra_dc_precision
precision of the intra DC coefficient - 8
Definition: avcodec.h:2134
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:462
int64_t rc_min_rate
minimum bitrate
Definition: avcodec.h:2530
common internal API header
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1370
int server_attached
Definition: ffm.h:59
int refs
number of reference frames
Definition: avcodec.h:2205
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:207
#define FFMIN(a, b)
Definition: common.h:96
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
int width
picture width / height.
Definition: avcodec.h:1711
int priv_data_size
Definition: avcodec.h:3428
int64_t duration
Definition: movenc-test.c:63
uint8_t header[FRAME_HEADER_SIZE+4]
Definition: ffm.h:49
int mb_decision
macroblock decision mode
Definition: avcodec.h:2086
Usually treated as AVMEDIA_TYPE_DATA.
Definition: avutil.h:192
int max_qdiff
maximum quantizer difference between frames
Definition: avcodec.h:2480
int packet_size
Definition: ffm.h:53
int buffer_size
Maximum buffer size.
Definition: avio.h:173
attribute_deprecated int coder_type
Definition: avcodec.h:2576
int thread_count
thread count is used to decide how many independent tasks should be passed to execute() ...
Definition: avcodec.h:2954
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:638
Stream structure.
Definition: avformat.h:877
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
Definition: avio_reading.c:42
int frame_size
Number of samples per channel in an audio frame.
Definition: avcodec.h:2307
static int ffm_close(AVFormatContext *s)
Definition: ffmdec.c:248
enum AVMediaType codec_type
Definition: avcodec.h:1540
attribute_deprecated int mpeg_quant
Definition: avcodec.h:1851
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_WB64 unsigned int_TMPL AV_WB32 unsigned int_TMPL AV_RB24
Definition: bytestream.h:87
attribute_deprecated int scenechange_threshold
Definition: avcodec.h:2108
enum AVCodecID codec_id
Definition: avcodec.h:1549
char * av_strdup(const char *s)
Duplicate the string s.
Definition: mem.c:267
int sample_rate
samples per second
Definition: avcodec.h:2287
AVIOContext * pb
I/O context.
Definition: avformat.h:1356
attribute_deprecated int b_frame_strategy
Definition: avcodec.h:1830
int debug
debug
Definition: avcodec.h:2763
Definition: ffm.h:44
main external API structure.
Definition: avcodec.h:1532
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
Definition: avpacket.c:545
int qmin
minimum quantizer
Definition: avcodec.h:2466
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1564
static int write_index(NUTContext *nut, AVIOContext *bc)
Definition: nutenc.c:578
void * buf
Definition: avisynth_c.h:553
Describe the class of an AVClass context structure.
Definition: log.h:67
static int ffm_read_header(AVFormatContext *s)
Definition: ffmdec.c:496
float b_quant_offset
qscale offset between IP and B-frames
Definition: avcodec.h:1838
This structure contains the data a format has to probe a file.
Definition: avformat.h:460
float qcompress
amount of qscale change between easy & hard scenes (0.0-1.0)
Definition: avcodec.h:2458
size_t av_strlcat(char *dst, const char *src, size_t size)
Append the string src to the string dst, but to a total length of no more than size - 1 bytes...
Definition: avstring.c:93
This struct describes the properties of a single codec described by an AVCodecID. ...
Definition: avcodec.h:561
static int64_t pts
Global timestamp for the audio frames.
static int flags
Definition: cpu.c:47
const AVClass * priv_class
AVClass for the private context.
Definition: avcodec.h:3418
#define AV_CODEC_FLAG_GLOBAL_HEADER
Place global headers in extradata instead of every keyframe.
Definition: avcodec.h:783
AVInputFormat ff_ffm_demuxer
Definition: ffmdec.c:789
static int64_t ffm_seek1(AVFormatContext *s, int64_t pos1)
Definition: ffmdec.c:170
int gop_size
the number of pictures in a group of pictures, or 0 for intra_only
Definition: avcodec.h:1737
enum AVMediaType type
Definition: avcodec.h:563
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:472
unsigned int avio_rl16(AVIOContext *s)
Definition: aviobuf.c:651
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_WL32 unsigned int_TMPL AV_WL24 unsigned int_TMPL AV_WL16 uint64_t_TMPL AV_RB64
Definition: bytestream.h:87
Main libavformat public API header.
uint8_t packet[FFM_PACKET_SIZE]
Definition: ffm.h:57
int nsse_weight
noise vs.
Definition: avcodec.h:3021
int av_reallocp(void *ptr, size_t size)
Allocate or reallocate a block of memory.
Definition: mem.c:187
int64_t pos
position in the file of the current buffer
Definition: avio.h:184
static int ffm_seek(AVFormatContext *s, int stream_index, int64_t wanted_pts, int flags)
Definition: ffmdec.c:705
int den
denominator
Definition: rational.h:45
#define MKBETAG(a, b, c, d)
Definition: common.h:343
int eof_reached
true if eof reached
Definition: avio.h:186
int len
int channels
number of audio channels
Definition: avcodec.h:2288
void * priv_data
Format private data.
Definition: avformat.h:1342
int read_state
Definition: ffm.h:48
int flags2
AV_CODEC_FLAG2_*.
Definition: avcodec.h:1634
int64_t write_index
Definition: ffm.h:47
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1466
static struct @205 state
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:661
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
Definition: aviobuf.c:723
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:306
int stream_index
Definition: avcodec.h:1469
#define MKTAG(a, b, c, d)
Definition: common.h:342
This structure stores compressed data.
Definition: avcodec.h:1444
int me_subpel_quality
subpel ME quality
Definition: avcodec.h:2017
#define FLAG_KEY_FRAME
Definition: ffm.h:36
int strict_std_compliance
strictly follow the standard (MPEG4, ...).
Definition: avcodec.h:2741
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1460
GLuint buffer
Definition: opengl_enc.c:102
#define FFM_PACKET_SIZE
Definition: ffm.h:31
int64_t rc_max_rate
maximum bitrate
Definition: avcodec.h:2523
int keyint_min
minimum GOP size
Definition: avcodec.h:2198