FFmpeg
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
mpegts.c
Go to the documentation of this file.
1 /*
2  * MPEG2 transport stream (aka DVB) demuxer
3  * Copyright (c) 2002-2003 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/buffer.h"
23 #include "libavutil/crc.h"
24 #include "libavutil/internal.h"
25 #include "libavutil/intreadwrite.h"
26 #include "libavutil/log.h"
27 #include "libavutil/dict.h"
28 #include "libavutil/mathematics.h"
29 #include "libavutil/opt.h"
30 #include "libavutil/avassert.h"
31 #include "libavcodec/bytestream.h"
32 #include "libavcodec/get_bits.h"
33 #include "libavcodec/opus.h"
34 #include "avformat.h"
35 #include "mpegts.h"
36 #include "internal.h"
37 #include "avio_internal.h"
38 #include "mpeg.h"
39 #include "isom.h"
40 
41 /* maximum size in which we look for synchronisation if
42  * synchronisation is lost */
43 #define MAX_RESYNC_SIZE 65536
44 
45 #define MAX_PES_PAYLOAD 200 * 1024
46 
47 #define MAX_MP4_DESCR_COUNT 16
48 
49 #define MOD_UNLIKELY(modulus, dividend, divisor, prev_dividend) \
50  do { \
51  if ((prev_dividend) == 0 || (dividend) - (prev_dividend) != (divisor)) \
52  (modulus) = (dividend) % (divisor); \
53  (prev_dividend) = (dividend); \
54  } while (0)
55 
60 };
61 
62 typedef struct MpegTSFilter MpegTSFilter;
63 
64 typedef int PESCallback (MpegTSFilter *f, const uint8_t *buf, int len,
65  int is_start, int64_t pos);
66 
67 typedef struct MpegTSPESFilter {
69  void *opaque;
71 
72 typedef void SectionCallback (MpegTSFilter *f, const uint8_t *buf, int len);
73 
74 typedef void SetServiceCallback (void *opaque, int ret);
75 
76 typedef struct MpegTSSectionFilter {
79  int last_ver;
80  unsigned crc;
81  unsigned last_crc;
83  unsigned int check_crc : 1;
84  unsigned int end_of_section_reached : 1;
86  void *opaque;
88 
89 struct MpegTSFilter {
90  int pid;
91  int es_id;
92  int last_cc; /* last cc code (-1 if first packet) */
93  int64_t last_pcr;
95  union {
98  } u;
99 };
100 
101 #define MAX_PIDS_PER_PROGRAM 64
102 struct Program {
103  unsigned int id; // program id/service id
104  unsigned int nb_pids;
105  unsigned int pids[MAX_PIDS_PER_PROGRAM];
106 
107  /** have we found pmt for this program */
109 };
110 
112  const AVClass *class;
113  /* user data */
115  /** raw packet size, including FEC if present */
117 
118  int size_stat[3];
120 #define SIZE_STAT_THRESHOLD 10
121 
122  int64_t pos47_full;
123 
124  /** if true, all pids are analyzed to find streams */
126 
127  /** compute exact PCR for each transport stream packet */
129 
130  /** fix dvb teletext pts */
132 
133  int64_t cur_pcr; /**< used to estimate the exact PCR */
134  int pcr_incr; /**< used to estimate the exact PCR */
135 
136  /* data needed to handle file based ts */
137  /** stop parsing loop */
139  /** packet containing Audio/Video data */
141  /** to detect seek */
142  int64_t last_pos;
143 
146 
148 
150 
151  /******************************************/
152  /* private mpegts data */
153  /* scan context */
154  /** structure to keep track of Program->pids mapping */
155  unsigned int nb_prg;
156  struct Program *prg;
157 
159  /** filters for various streams specified by PMT + for the PAT and PMT */
162 };
163 
164 #define MPEGTS_OPTIONS \
165  { "resync_size", "set size limit for looking up a new synchronization", offsetof(MpegTSContext, resync_size), AV_OPT_TYPE_INT, { .i64 = MAX_RESYNC_SIZE}, 0, INT_MAX, AV_OPT_FLAG_DECODING_PARAM }
166 
167 static const AVOption options[] = {
169  {"fix_teletext_pts", "try to fix pts values of dvb teletext streams", offsetof(MpegTSContext, fix_teletext_pts), AV_OPT_TYPE_INT,
170  {.i64 = 1}, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
171  {"ts_packetsize", "output option carrying the raw packet size", offsetof(MpegTSContext, raw_packet_size), AV_OPT_TYPE_INT,
173  {"scan_all_pmts", "scan and combine all PMTs", offsetof(MpegTSContext, scan_all_pmts), AV_OPT_TYPE_INT,
174  { .i64 = -1}, -1, 1, AV_OPT_FLAG_DECODING_PARAM },
175  {"skip_changes", "skip changing / adding streams / programs", offsetof(MpegTSContext, skip_changes), AV_OPT_TYPE_INT,
176  {.i64 = 0}, 0, 1, 0 },
177  {"skip_clear", "skip clearing programs", offsetof(MpegTSContext, skip_clear), AV_OPT_TYPE_INT,
178  {.i64 = 0}, 0, 1, 0 },
179  { NULL },
180 };
181 
182 static const AVClass mpegts_class = {
183  .class_name = "mpegts demuxer",
184  .item_name = av_default_item_name,
185  .option = options,
186  .version = LIBAVUTIL_VERSION_INT,
187 };
188 
189 static const AVOption raw_options[] = {
191  { "compute_pcr", "compute exact PCR for each transport stream packet",
192  offsetof(MpegTSContext, mpeg2ts_compute_pcr), AV_OPT_TYPE_INT,
193  { .i64 = 0 }, 0, 1, AV_OPT_FLAG_DECODING_PARAM },
194  { "ts_packetsize", "output option carrying the raw packet size",
195  offsetof(MpegTSContext, raw_packet_size), AV_OPT_TYPE_INT,
196  { .i64 = 0 }, 0, 0,
198  { NULL },
199 };
200 
201 static const AVClass mpegtsraw_class = {
202  .class_name = "mpegtsraw demuxer",
203  .item_name = av_default_item_name,
204  .option = raw_options,
205  .version = LIBAVUTIL_VERSION_INT,
206 };
207 
208 /* TS stream handling */
209 
216 };
217 
218 /* enough for PES header + length */
219 #define PES_START_SIZE 6
220 #define PES_HEADER_SIZE 9
221 #define MAX_PES_HEADER_SIZE (9 + 255)
222 
223 typedef struct PESContext {
224  int pid;
225  int pcr_pid; /**< if -1 then all packets containing PCR are considered */
230  AVStream *sub_st; /**< stream for the embedded AC3 stream in HDMV TrueHD */
232  /* used to get the format */
234  int flags; /**< copied to the AVPacket flags */
238  int64_t pts, dts;
239  int64_t ts_packet_pos; /**< position of first TS packet of this PES packet */
243 } PESContext;
244 
246 
247 static struct Program * get_program(MpegTSContext *ts, unsigned int programid)
248 {
249  int i;
250  for (i = 0; i < ts->nb_prg; i++) {
251  if (ts->prg[i].id == programid) {
252  return &ts->prg[i];
253  }
254  }
255  return NULL;
256 }
257 
258 static void clear_avprogram(MpegTSContext *ts, unsigned int programid)
259 {
260  AVProgram *prg = NULL;
261  int i;
262 
263  for (i = 0; i < ts->stream->nb_programs; i++)
264  if (ts->stream->programs[i]->id == programid) {
265  prg = ts->stream->programs[i];
266  break;
267  }
268  if (!prg)
269  return;
270  prg->nb_stream_indexes = 0;
271 }
272 
273 static void clear_program(MpegTSContext *ts, unsigned int programid)
274 {
275  int i;
276 
277  clear_avprogram(ts, programid);
278  for (i = 0; i < ts->nb_prg; i++)
279  if (ts->prg[i].id == programid) {
280  ts->prg[i].nb_pids = 0;
281  ts->prg[i].pmt_found = 0;
282  }
283 }
284 
286 {
287  av_freep(&ts->prg);
288  ts->nb_prg = 0;
289 }
290 
291 static void add_pat_entry(MpegTSContext *ts, unsigned int programid)
292 {
293  struct Program *p;
294  if (av_reallocp_array(&ts->prg, ts->nb_prg + 1, sizeof(*ts->prg)) < 0) {
295  ts->nb_prg = 0;
296  return;
297  }
298  p = &ts->prg[ts->nb_prg];
299  p->id = programid;
300  p->nb_pids = 0;
301  p->pmt_found = 0;
302  ts->nb_prg++;
303 }
304 
305 static void add_pid_to_pmt(MpegTSContext *ts, unsigned int programid,
306  unsigned int pid)
307 {
308  struct Program *p = get_program(ts, programid);
309  int i;
310  if (!p)
311  return;
312 
313  if (p->nb_pids >= MAX_PIDS_PER_PROGRAM)
314  return;
315 
316  for (i = 0; i < p->nb_pids; i++)
317  if (p->pids[i] == pid)
318  return;
319 
320  p->pids[p->nb_pids++] = pid;
321 }
322 
323 static void set_pmt_found(MpegTSContext *ts, unsigned int programid)
324 {
325  struct Program *p = get_program(ts, programid);
326  if (!p)
327  return;
328 
329  p->pmt_found = 1;
330 }
331 
332 static void set_pcr_pid(AVFormatContext *s, unsigned int programid, unsigned int pid)
333 {
334  int i;
335  for (i = 0; i < s->nb_programs; i++) {
336  if (s->programs[i]->id == programid) {
337  s->programs[i]->pcr_pid = pid;
338  break;
339  }
340  }
341 }
342 
343 /**
344  * @brief discard_pid() decides if the pid is to be discarded according
345  * to caller's programs selection
346  * @param ts : - TS context
347  * @param pid : - pid
348  * @return 1 if the pid is only comprised in programs that have .discard=AVDISCARD_ALL
349  * 0 otherwise
350  */
351 static int discard_pid(MpegTSContext *ts, unsigned int pid)
352 {
353  int i, j, k;
354  int used = 0, discarded = 0;
355  struct Program *p;
356 
357  /* If none of the programs have .discard=AVDISCARD_ALL then there's
358  * no way we have to discard this packet */
359  for (k = 0; k < ts->stream->nb_programs; k++)
360  if (ts->stream->programs[k]->discard == AVDISCARD_ALL)
361  break;
362  if (k == ts->stream->nb_programs)
363  return 0;
364 
365  for (i = 0; i < ts->nb_prg; i++) {
366  p = &ts->prg[i];
367  for (j = 0; j < p->nb_pids; j++) {
368  if (p->pids[j] != pid)
369  continue;
370  // is program with id p->id set to be discarded?
371  for (k = 0; k < ts->stream->nb_programs; k++) {
372  if (ts->stream->programs[k]->id == p->id) {
373  if (ts->stream->programs[k]->discard == AVDISCARD_ALL)
374  discarded++;
375  else
376  used++;
377  }
378  }
379  }
380  }
381 
382  return !used && discarded;
383 }
384 
385 /**
386  * Assemble PES packets out of TS packets, and then call the "section_cb"
387  * function when they are complete.
388  */
390  const uint8_t *buf, int buf_size, int is_start)
391 {
392  MpegTSSectionFilter *tss = &tss1->u.section_filter;
393  int len;
394 
395  if (is_start) {
396  memcpy(tss->section_buf, buf, buf_size);
397  tss->section_index = buf_size;
398  tss->section_h_size = -1;
399  tss->end_of_section_reached = 0;
400  } else {
401  if (tss->end_of_section_reached)
402  return;
403  len = 4096 - tss->section_index;
404  if (buf_size < len)
405  len = buf_size;
406  memcpy(tss->section_buf + tss->section_index, buf, len);
407  tss->section_index += len;
408  }
409 
410  /* compute section length if possible */
411  if (tss->section_h_size == -1 && tss->section_index >= 3) {
412  len = (AV_RB16(tss->section_buf + 1) & 0xfff) + 3;
413  if (len > 4096)
414  return;
415  tss->section_h_size = len;
416  }
417 
418  if (tss->section_h_size != -1 &&
419  tss->section_index >= tss->section_h_size) {
420  int crc_valid = 1;
421  tss->end_of_section_reached = 1;
422 
423  if (tss->check_crc) {
424  crc_valid = !av_crc(av_crc_get_table(AV_CRC_32_IEEE), -1, tss->section_buf, tss->section_h_size);
425  if (tss->section_h_size >= 4)
426  tss->crc = AV_RB32(tss->section_buf + tss->section_h_size - 4);
427 
428  if (crc_valid) {
429  ts->crc_validity[ tss1->pid ] = 100;
430  }else if (ts->crc_validity[ tss1->pid ] > -10) {
431  ts->crc_validity[ tss1->pid ]--;
432  }else
433  crc_valid = 2;
434  }
435  if (crc_valid) {
436  tss->section_cb(tss1, tss->section_buf, tss->section_h_size);
437  if (crc_valid != 1)
438  tss->last_ver = -1;
439  }
440  }
441 }
442 
443 static MpegTSFilter *mpegts_open_filter(MpegTSContext *ts, unsigned int pid,
444  enum MpegTSFilterType type)
445 {
447 
448  av_log(ts->stream, AV_LOG_TRACE, "Filter: pid=0x%x\n", pid);
449 
450  if (pid >= NB_PID_MAX || ts->pids[pid])
451  return NULL;
452  filter = av_mallocz(sizeof(MpegTSFilter));
453  if (!filter)
454  return NULL;
455  ts->pids[pid] = filter;
456 
457  filter->type = type;
458  filter->pid = pid;
459  filter->es_id = -1;
460  filter->last_cc = -1;
461  filter->last_pcr= -1;
462 
463  return filter;
464 }
465 
467  unsigned int pid,
468  SectionCallback *section_cb,
469  void *opaque,
470  int check_crc)
471 {
473  MpegTSSectionFilter *sec;
474 
475  if (!(filter = mpegts_open_filter(ts, pid, MPEGTS_SECTION)))
476  return NULL;
477  sec = &filter->u.section_filter;
478  sec->section_cb = section_cb;
479  sec->opaque = opaque;
481  sec->check_crc = check_crc;
482  sec->last_ver = -1;
483 
484  if (!sec->section_buf) {
485  av_free(filter);
486  return NULL;
487  }
488  return filter;
489 }
490 
491 static MpegTSFilter *mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid,
492  PESCallback *pes_cb,
493  void *opaque)
494 {
496  MpegTSPESFilter *pes;
497 
498  if (!(filter = mpegts_open_filter(ts, pid, MPEGTS_PES)))
499  return NULL;
500 
501  pes = &filter->u.pes_filter;
502  pes->pes_cb = pes_cb;
503  pes->opaque = opaque;
504  return filter;
505 }
506 
507 static MpegTSFilter *mpegts_open_pcr_filter(MpegTSContext *ts, unsigned int pid)
508 {
509  return mpegts_open_filter(ts, pid, MPEGTS_PCR);
510 }
511 
513 {
514  int pid;
515 
516  pid = filter->pid;
517  if (filter->type == MPEGTS_SECTION)
519  else if (filter->type == MPEGTS_PES) {
520  PESContext *pes = filter->u.pes_filter.opaque;
521  av_buffer_unref(&pes->buffer);
522  /* referenced private data will be freed later in
523  * avformat_close_input */
524  if (!((PESContext *)filter->u.pes_filter.opaque)->st) {
525  av_freep(&filter->u.pes_filter.opaque);
526  }
527  }
528 
529  av_free(filter);
530  ts->pids[pid] = NULL;
531 }
532 
533 static int analyze(const uint8_t *buf, int size, int packet_size, int *index,
534  int probe)
535 {
536  int stat[TS_MAX_PACKET_SIZE];
537  int stat_all = 0;
538  int i;
539  int best_score = 0;
540 
541  memset(stat, 0, packet_size * sizeof(*stat));
542 
543  for (i = 0; i < size - 3; i++) {
544  if (buf[i] == 0x47 &&
545  (!probe || (!(buf[i + 1] & 0x80) && buf[i + 3] != 0x47))) {
546  int x = i % packet_size;
547  stat[x]++;
548  stat_all++;
549  if (stat[x] > best_score) {
550  best_score = stat[x];
551  if (index)
552  *index = x;
553  }
554  }
555  }
556 
557  return best_score - FFMAX(stat_all - 10*best_score, 0)/10;
558 }
559 
560 /* autodetect fec presence. Must have at least 1024 bytes */
561 static int get_packet_size(const uint8_t *buf, int size)
562 {
563  int score, fec_score, dvhs_score;
564 
565  if (size < (TS_FEC_PACKET_SIZE * 5 + 1))
566  return AVERROR_INVALIDDATA;
567 
568  score = analyze(buf, size, TS_PACKET_SIZE, NULL, 0);
569  dvhs_score = analyze(buf, size, TS_DVHS_PACKET_SIZE, NULL, 0);
570  fec_score = analyze(buf, size, TS_FEC_PACKET_SIZE, NULL, 0);
571  av_log(NULL, AV_LOG_TRACE, "score: %d, dvhs_score: %d, fec_score: %d \n",
572  score, dvhs_score, fec_score);
573 
574  if (score > fec_score && score > dvhs_score)
575  return TS_PACKET_SIZE;
576  else if (dvhs_score > score && dvhs_score > fec_score)
577  return TS_DVHS_PACKET_SIZE;
578  else if (score < fec_score && dvhs_score < fec_score)
579  return TS_FEC_PACKET_SIZE;
580  else
581  return AVERROR_INVALIDDATA;
582 }
583 
584 typedef struct SectionHeader {
586  uint16_t id;
590 } SectionHeader;
591 
593 {
594  if (h->version == tssf->last_ver && tssf->last_crc == tssf->crc)
595  return 1;
596 
597  tssf->last_ver = h->version;
598  tssf->last_crc = tssf->crc;
599 
600  return 0;
601 }
602 
603 static inline int get8(const uint8_t **pp, const uint8_t *p_end)
604 {
605  const uint8_t *p;
606  int c;
607 
608  p = *pp;
609  if (p >= p_end)
610  return AVERROR_INVALIDDATA;
611  c = *p++;
612  *pp = p;
613  return c;
614 }
615 
616 static inline int get16(const uint8_t **pp, const uint8_t *p_end)
617 {
618  const uint8_t *p;
619  int c;
620 
621  p = *pp;
622  if (1 >= p_end - p)
623  return AVERROR_INVALIDDATA;
624  c = AV_RB16(p);
625  p += 2;
626  *pp = p;
627  return c;
628 }
629 
630 /* read and allocate a DVB string preceded by its length */
631 static char *getstr8(const uint8_t **pp, const uint8_t *p_end)
632 {
633  int len;
634  const uint8_t *p;
635  char *str;
636 
637  p = *pp;
638  len = get8(&p, p_end);
639  if (len < 0)
640  return NULL;
641  if (len > p_end - p)
642  return NULL;
643  str = av_malloc(len + 1);
644  if (!str)
645  return NULL;
646  memcpy(str, p, len);
647  str[len] = '\0';
648  p += len;
649  *pp = p;
650  return str;
651 }
652 
654  const uint8_t **pp, const uint8_t *p_end)
655 {
656  int val;
657 
658  val = get8(pp, p_end);
659  if (val < 0)
660  return val;
661  h->tid = val;
662  *pp += 2;
663  val = get16(pp, p_end);
664  if (val < 0)
665  return val;
666  h->id = val;
667  val = get8(pp, p_end);
668  if (val < 0)
669  return val;
670  h->version = (val >> 1) & 0x1f;
671  val = get8(pp, p_end);
672  if (val < 0)
673  return val;
674  h->sec_num = val;
675  val = get8(pp, p_end);
676  if (val < 0)
677  return val;
678  h->last_sec_num = val;
679  return 0;
680 }
681 
682 typedef struct StreamType {
683  uint32_t stream_type;
686 } StreamType;
687 
688 static const StreamType ISO_types[] = {
695  /* Makito encoder sets stream type 0x11 for AAC,
696  * so auto-detect LOAS/LATM instead of hardcoding it. */
697 #if !CONFIG_LOAS_DEMUXER
698  { 0x11, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AAC_LATM }, /* LATM syntax */
699 #endif
707  { 0 },
708 };
709 
710 static const StreamType HDMV_types[] = {
716  { 0x85, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, /* DTS HD */
717  { 0x86, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, /* DTS HD MASTER*/
718  { 0xa1, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_EAC3 }, /* E-AC3 Secondary Audio */
719  { 0xa2, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS }, /* DTS Express Secondary Audio */
722  { 0 },
723 };
724 
725 /* ATSC ? */
726 static const StreamType MISC_types[] = {
729  { 0 },
730 };
731 
732 static const StreamType REGD_types[] = {
733  { MKTAG('d', 'r', 'a', 'c'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_DIRAC },
734  { MKTAG('A', 'C', '-', '3'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AC3 },
735  { MKTAG('B', 'S', 'S', 'D'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_S302M },
736  { MKTAG('D', 'T', 'S', '1'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },
737  { MKTAG('D', 'T', 'S', '2'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },
738  { MKTAG('D', 'T', 'S', '3'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_DTS },
739  { MKTAG('H', 'E', 'V', 'C'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_HEVC },
740  { MKTAG('K', 'L', 'V', 'A'), AVMEDIA_TYPE_DATA, AV_CODEC_ID_SMPTE_KLV },
741  { MKTAG('V', 'C', '-', '1'), AVMEDIA_TYPE_VIDEO, AV_CODEC_ID_VC1 },
742  { MKTAG('O', 'p', 'u', 's'), AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_OPUS },
743  { 0 },
744 };
745 
746 static const StreamType METADATA_types[] = {
747  { MKTAG('K','L','V','A'), AVMEDIA_TYPE_DATA, AV_CODEC_ID_SMPTE_KLV },
748  { MKTAG('I','D','3',' '), AVMEDIA_TYPE_DATA, AV_CODEC_ID_TIMED_ID3 },
749  { 0 },
750 };
751 
752 /* descriptor present */
753 static const StreamType DESC_types[] = {
754  { 0x6a, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_AC3 }, /* AC-3 descriptor */
755  { 0x7a, AVMEDIA_TYPE_AUDIO, AV_CODEC_ID_EAC3 }, /* E-AC-3 descriptor */
758  { 0x59, AVMEDIA_TYPE_SUBTITLE, AV_CODEC_ID_DVB_SUBTITLE }, /* subtitling descriptor */
759  { 0 },
760 };
761 
763  uint32_t stream_type,
764  const StreamType *types)
765 {
766  if (avcodec_is_open(st->codec)) {
767  av_log(NULL, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
768  return;
769  }
770 
771  for (; types->stream_type; types++)
772  if (stream_type == types->stream_type) {
773  st->codec->codec_type = types->codec_type;
774  st->codec->codec_id = types->codec_id;
775  st->request_probe = 0;
776  return;
777  }
778 }
779 
781  uint32_t stream_type, uint32_t prog_reg_desc)
782 {
783  int old_codec_type = st->codec->codec_type;
784  int old_codec_id = st->codec->codec_id;
785 
786  if (avcodec_is_open(st->codec)) {
787  av_log(pes->stream, AV_LOG_DEBUG, "cannot set stream info, codec is open\n");
788  return 0;
789  }
790 
791  avpriv_set_pts_info(st, 33, 1, 90000);
792  st->priv_data = pes;
796  pes->st = st;
797  pes->stream_type = stream_type;
798 
799  av_log(pes->stream, AV_LOG_DEBUG,
800  "stream=%d stream_type=%x pid=%x prog_reg_desc=%.4s\n",
801  st->index, pes->stream_type, pes->pid, (char *)&prog_reg_desc);
802 
803  st->codec->codec_tag = pes->stream_type;
804 
805  mpegts_find_stream_type(st, pes->stream_type, ISO_types);
806  if ((prog_reg_desc == AV_RL32("HDMV") ||
807  prog_reg_desc == AV_RL32("HDPR")) &&
808  st->codec->codec_id == AV_CODEC_ID_NONE) {
809  mpegts_find_stream_type(st, pes->stream_type, HDMV_types);
810  if (pes->stream_type == 0x83) {
811  // HDMV TrueHD streams also contain an AC3 coded version of the
812  // audio track - add a second stream for this
813  AVStream *sub_st;
814  // priv_data cannot be shared between streams
815  PESContext *sub_pes = av_malloc(sizeof(*sub_pes));
816  if (!sub_pes)
817  return AVERROR(ENOMEM);
818  memcpy(sub_pes, pes, sizeof(*sub_pes));
819 
820  sub_st = avformat_new_stream(pes->stream, NULL);
821  if (!sub_st) {
822  av_free(sub_pes);
823  return AVERROR(ENOMEM);
824  }
825 
826  sub_st->id = pes->pid;
827  avpriv_set_pts_info(sub_st, 33, 1, 90000);
828  sub_st->priv_data = sub_pes;
830  sub_st->codec->codec_id = AV_CODEC_ID_AC3;
832  sub_pes->sub_st = pes->sub_st = sub_st;
833  }
834  }
835  if (st->codec->codec_id == AV_CODEC_ID_NONE)
836  mpegts_find_stream_type(st, pes->stream_type, MISC_types);
837  if (st->codec->codec_id == AV_CODEC_ID_NONE) {
838  st->codec->codec_id = old_codec_id;
839  st->codec->codec_type = old_codec_type;
840  }
841  if ((st->codec->codec_id == AV_CODEC_ID_NONE ||
842  (st->request_probe > 0 && st->request_probe < AVPROBE_SCORE_STREAM_RETRY / 5)) &&
843  !avcodec_is_open(st->codec) &&
844  stream_type == STREAM_TYPE_PRIVATE_DATA) {
848  }
849 
850  return 0;
851 }
852 
854 {
855  pes->pts = AV_NOPTS_VALUE;
856  pes->dts = AV_NOPTS_VALUE;
857  pes->data_index = 0;
858  pes->flags = 0;
859  av_buffer_unref(&pes->buffer);
860 }
861 
863 {
864  av_init_packet(pkt);
865 
866  pkt->buf = pes->buffer;
867  pkt->data = pes->buffer->data;
868  pkt->size = pes->data_index;
869 
870  if (pes->total_size != MAX_PES_PAYLOAD &&
871  pes->pes_header_size + pes->data_index != pes->total_size +
872  PES_START_SIZE) {
873  av_log(pes->stream, AV_LOG_WARNING, "PES packet size mismatch\n");
874  pes->flags |= AV_PKT_FLAG_CORRUPT;
875  }
876  memset(pkt->data + pkt->size, 0, AV_INPUT_BUFFER_PADDING_SIZE);
877 
878  // Separate out the AC3 substream from an HDMV combined TrueHD/AC3 PID
879  if (pes->sub_st && pes->stream_type == 0x83 && pes->extended_stream_id == 0x76)
880  pkt->stream_index = pes->sub_st->index;
881  else
882  pkt->stream_index = pes->st->index;
883  pkt->pts = pes->pts;
884  pkt->dts = pes->dts;
885  /* store position of first TS packet of this PES packet */
886  pkt->pos = pes->ts_packet_pos;
887  pkt->flags = pes->flags;
888 
889  pes->buffer = NULL;
891 }
892 
893 static uint64_t get_ts64(GetBitContext *gb, int bits)
894 {
895  if (get_bits_left(gb) < bits)
896  return AV_NOPTS_VALUE;
897  return get_bits64(gb, bits);
898 }
899 
901  const uint8_t *buf, int buf_size)
902 {
903  GetBitContext gb;
904  int au_start_flag = 0, au_end_flag = 0, ocr_flag = 0, idle_flag = 0;
905  int padding_flag = 0, padding_bits = 0, inst_bitrate_flag = 0;
906  int dts_flag = -1, cts_flag = -1;
907  int64_t dts = AV_NOPTS_VALUE, cts = AV_NOPTS_VALUE;
908  uint8_t buf_padded[128 + AV_INPUT_BUFFER_PADDING_SIZE];
909  int buf_padded_size = FFMIN(buf_size, sizeof(buf_padded) - AV_INPUT_BUFFER_PADDING_SIZE);
910 
911  memcpy(buf_padded, buf, buf_padded_size);
912 
913  init_get_bits(&gb, buf_padded, buf_padded_size * 8);
914 
915  if (sl->use_au_start)
916  au_start_flag = get_bits1(&gb);
917  if (sl->use_au_end)
918  au_end_flag = get_bits1(&gb);
919  if (!sl->use_au_start && !sl->use_au_end)
920  au_start_flag = au_end_flag = 1;
921  if (sl->ocr_len > 0)
922  ocr_flag = get_bits1(&gb);
923  if (sl->use_idle)
924  idle_flag = get_bits1(&gb);
925  if (sl->use_padding)
926  padding_flag = get_bits1(&gb);
927  if (padding_flag)
928  padding_bits = get_bits(&gb, 3);
929 
930  if (!idle_flag && (!padding_flag || padding_bits != 0)) {
931  if (sl->packet_seq_num_len)
933  if (sl->degr_prior_len)
934  if (get_bits1(&gb))
935  skip_bits(&gb, sl->degr_prior_len);
936  if (ocr_flag)
937  skip_bits_long(&gb, sl->ocr_len);
938  if (au_start_flag) {
939  if (sl->use_rand_acc_pt)
940  get_bits1(&gb);
941  if (sl->au_seq_num_len > 0)
942  skip_bits_long(&gb, sl->au_seq_num_len);
943  if (sl->use_timestamps) {
944  dts_flag = get_bits1(&gb);
945  cts_flag = get_bits1(&gb);
946  }
947  }
948  if (sl->inst_bitrate_len)
949  inst_bitrate_flag = get_bits1(&gb);
950  if (dts_flag == 1)
951  dts = get_ts64(&gb, sl->timestamp_len);
952  if (cts_flag == 1)
953  cts = get_ts64(&gb, sl->timestamp_len);
954  if (sl->au_len > 0)
955  skip_bits_long(&gb, sl->au_len);
956  if (inst_bitrate_flag)
958  }
959 
960  if (dts != AV_NOPTS_VALUE)
961  pes->dts = dts;
962  if (cts != AV_NOPTS_VALUE)
963  pes->pts = cts;
964 
965  if (sl->timestamp_len && sl->timestamp_res)
967 
968  return (get_bits_count(&gb) + 7) >> 3;
969 }
970 
971 /* return non zero if a packet could be constructed */
973  const uint8_t *buf, int buf_size, int is_start,
974  int64_t pos)
975 {
976  PESContext *pes = filter->u.pes_filter.opaque;
977  MpegTSContext *ts = pes->ts;
978  const uint8_t *p;
979  int len, code;
980 
981  if (!ts->pkt)
982  return 0;
983 
984  if (is_start) {
985  if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
986  new_pes_packet(pes, ts->pkt);
987  ts->stop_parse = 1;
988  } else {
990  }
991  pes->state = MPEGTS_HEADER;
992  pes->ts_packet_pos = pos;
993  }
994  p = buf;
995  while (buf_size > 0) {
996  switch (pes->state) {
997  case MPEGTS_HEADER:
998  len = PES_START_SIZE - pes->data_index;
999  if (len > buf_size)
1000  len = buf_size;
1001  memcpy(pes->header + pes->data_index, p, len);
1002  pes->data_index += len;
1003  p += len;
1004  buf_size -= len;
1005  if (pes->data_index == PES_START_SIZE) {
1006  /* we got all the PES or section header. We can now
1007  * decide */
1008  if (pes->header[0] == 0x00 && pes->header[1] == 0x00 &&
1009  pes->header[2] == 0x01) {
1010  /* it must be an mpeg2 PES stream */
1011  code = pes->header[3] | 0x100;
1012  av_log(pes->stream, AV_LOG_TRACE, "pid=%x pes_code=%#x\n", pes->pid,
1013  code);
1014 
1015  if ((pes->st && pes->st->discard == AVDISCARD_ALL &&
1016  (!pes->sub_st ||
1017  pes->sub_st->discard == AVDISCARD_ALL)) ||
1018  code == 0x1be) /* padding_stream */
1019  goto skip;
1020 
1021  /* stream not present in PMT */
1022  if (!pes->st) {
1023  if (ts->skip_changes)
1024  goto skip;
1025 
1026  pes->st = avformat_new_stream(ts->stream, NULL);
1027  if (!pes->st)
1028  return AVERROR(ENOMEM);
1029  pes->st->id = pes->pid;
1030  mpegts_set_stream_info(pes->st, pes, 0, 0);
1031  }
1032 
1033  pes->total_size = AV_RB16(pes->header + 4);
1034  /* NOTE: a zero total size means the PES size is
1035  * unbounded */
1036  if (!pes->total_size)
1037  pes->total_size = MAX_PES_PAYLOAD;
1038 
1039  /* allocate pes buffer */
1040  pes->buffer = av_buffer_alloc(pes->total_size +
1042  if (!pes->buffer)
1043  return AVERROR(ENOMEM);
1044 
1045  if (code != 0x1bc && code != 0x1bf && /* program_stream_map, private_stream_2 */
1046  code != 0x1f0 && code != 0x1f1 && /* ECM, EMM */
1047  code != 0x1ff && code != 0x1f2 && /* program_stream_directory, DSMCC_stream */
1048  code != 0x1f8) { /* ITU-T Rec. H.222.1 type E stream */
1049  pes->state = MPEGTS_PESHEADER;
1050  if (pes->st->codec->codec_id == AV_CODEC_ID_NONE && !pes->st->request_probe) {
1051  av_log(pes->stream, AV_LOG_TRACE,
1052  "pid=%x stream_type=%x probing\n",
1053  pes->pid,
1054  pes->stream_type);
1055  pes->st->request_probe = 1;
1056  }
1057  } else {
1058  pes->pes_header_size = 6;
1059  pes->state = MPEGTS_PAYLOAD;
1060  pes->data_index = 0;
1061  }
1062  } else {
1063  /* otherwise, it should be a table */
1064  /* skip packet */
1065 skip:
1066  pes->state = MPEGTS_SKIP;
1067  continue;
1068  }
1069  }
1070  break;
1071  /**********************************************/
1072  /* PES packing parsing */
1073  case MPEGTS_PESHEADER:
1074  len = PES_HEADER_SIZE - pes->data_index;
1075  if (len < 0)
1076  return AVERROR_INVALIDDATA;
1077  if (len > buf_size)
1078  len = buf_size;
1079  memcpy(pes->header + pes->data_index, p, len);
1080  pes->data_index += len;
1081  p += len;
1082  buf_size -= len;
1083  if (pes->data_index == PES_HEADER_SIZE) {
1084  pes->pes_header_size = pes->header[8] + 9;
1086  }
1087  break;
1088  case MPEGTS_PESHEADER_FILL:
1089  len = pes->pes_header_size - pes->data_index;
1090  if (len < 0)
1091  return AVERROR_INVALIDDATA;
1092  if (len > buf_size)
1093  len = buf_size;
1094  memcpy(pes->header + pes->data_index, p, len);
1095  pes->data_index += len;
1096  p += len;
1097  buf_size -= len;
1098  if (pes->data_index == pes->pes_header_size) {
1099  const uint8_t *r;
1100  unsigned int flags, pes_ext, skip;
1101 
1102  flags = pes->header[7];
1103  r = pes->header + 9;
1104  pes->pts = AV_NOPTS_VALUE;
1105  pes->dts = AV_NOPTS_VALUE;
1106  if ((flags & 0xc0) == 0x80) {
1107  pes->dts = pes->pts = ff_parse_pes_pts(r);
1108  r += 5;
1109  } else if ((flags & 0xc0) == 0xc0) {
1110  pes->pts = ff_parse_pes_pts(r);
1111  r += 5;
1112  pes->dts = ff_parse_pes_pts(r);
1113  r += 5;
1114  }
1115  pes->extended_stream_id = -1;
1116  if (flags & 0x01) { /* PES extension */
1117  pes_ext = *r++;
1118  /* Skip PES private data, program packet sequence counter and P-STD buffer */
1119  skip = (pes_ext >> 4) & 0xb;
1120  skip += skip & 0x9;
1121  r += skip;
1122  if ((pes_ext & 0x41) == 0x01 &&
1123  (r + 2) <= (pes->header + pes->pes_header_size)) {
1124  /* PES extension 2 */
1125  if ((r[0] & 0x7f) > 0 && (r[1] & 0x80) == 0)
1126  pes->extended_stream_id = r[1];
1127  }
1128  }
1129 
1130  /* we got the full header. We parse it and get the payload */
1131  pes->state = MPEGTS_PAYLOAD;
1132  pes->data_index = 0;
1133  if (pes->stream_type == 0x12 && buf_size > 0) {
1134  int sl_header_bytes = read_sl_header(pes, &pes->sl, p,
1135  buf_size);
1136  pes->pes_header_size += sl_header_bytes;
1137  p += sl_header_bytes;
1138  buf_size -= sl_header_bytes;
1139  }
1140  if (pes->stream_type == 0x15 && buf_size >= 5) {
1141  /* skip metadata access unit header */
1142  pes->pes_header_size += 5;
1143  p += 5;
1144  buf_size -= 5;
1145  }
1146  if ( pes->ts->fix_teletext_pts
1147  && ( pes->st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT
1149  ) {
1150  AVProgram *p = NULL;
1151  while ((p = av_find_program_from_stream(pes->stream, p, pes->st->index))) {
1152  if (p->pcr_pid != -1 && p->discard != AVDISCARD_ALL) {
1153  MpegTSFilter *f = pes->ts->pids[p->pcr_pid];
1154  if (f) {
1155  AVStream *st = NULL;
1156  if (f->type == MPEGTS_PES) {
1157  PESContext *pcrpes = f->u.pes_filter.opaque;
1158  if (pcrpes)
1159  st = pcrpes->st;
1160  } else if (f->type == MPEGTS_PCR) {
1161  int i;
1162  for (i = 0; i < p->nb_stream_indexes; i++) {
1163  AVStream *pst = pes->stream->streams[p->stream_index[i]];
1164  if (pst->codec->codec_type == AVMEDIA_TYPE_VIDEO)
1165  st = pst;
1166  }
1167  }
1168  if (f->last_pcr != -1 && st && st->discard != AVDISCARD_ALL) {
1169  // teletext packets do not always have correct timestamps,
1170  // the standard says they should be handled after 40.6 ms at most,
1171  // and the pcr error to this packet should be no more than 100 ms.
1172  // TODO: we should interpolate the PCR, not just use the last one
1173  int64_t pcr = f->last_pcr / 300;
1176  if (pes->dts == AV_NOPTS_VALUE || pes->dts < pcr) {
1177  pes->pts = pes->dts = pcr;
1178  } else if (pes->st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT &&
1179  pes->dts > pcr + 3654 + 9000) {
1180  pes->pts = pes->dts = pcr + 3654 + 9000;
1181  } else if (pes->st->codec->codec_id == AV_CODEC_ID_DVB_SUBTITLE &&
1182  pes->dts > pcr + 10*90000) { //10sec
1183  pes->pts = pes->dts = pcr + 3654 + 9000;
1184  }
1185  break;
1186  }
1187  }
1188  }
1189  }
1190  }
1191  }
1192  break;
1193  case MPEGTS_PAYLOAD:
1194  if (pes->buffer) {
1195  if (pes->data_index > 0 &&
1196  pes->data_index + buf_size > pes->total_size) {
1197  new_pes_packet(pes, ts->pkt);
1198  pes->total_size = MAX_PES_PAYLOAD;
1199  pes->buffer = av_buffer_alloc(pes->total_size +
1201  if (!pes->buffer)
1202  return AVERROR(ENOMEM);
1203  ts->stop_parse = 1;
1204  } else if (pes->data_index == 0 &&
1205  buf_size > pes->total_size) {
1206  // pes packet size is < ts size packet and pes data is padded with 0xff
1207  // not sure if this is legal in ts but see issue #2392
1208  buf_size = pes->total_size;
1209  }
1210  memcpy(pes->buffer->data + pes->data_index, p, buf_size);
1211  pes->data_index += buf_size;
1212  /* emit complete packets with known packet size
1213  * decreases demuxer delay for infrequent packets like subtitles from
1214  * a couple of seconds to milliseconds for properly muxed files.
1215  * total_size is the number of bytes following pes_packet_length
1216  * in the pes header, i.e. not counting the first PES_START_SIZE bytes */
1217  if (!ts->stop_parse && pes->total_size < MAX_PES_PAYLOAD &&
1218  pes->pes_header_size + pes->data_index == pes->total_size + PES_START_SIZE) {
1219  ts->stop_parse = 1;
1220  new_pes_packet(pes, ts->pkt);
1221  }
1222  }
1223  buf_size = 0;
1224  break;
1225  case MPEGTS_SKIP:
1226  buf_size = 0;
1227  break;
1228  }
1229  }
1230 
1231  return 0;
1232 }
1233 
1234 static PESContext *add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
1235 {
1236  MpegTSFilter *tss;
1237  PESContext *pes;
1238 
1239  /* if no pid found, then add a pid context */
1240  pes = av_mallocz(sizeof(PESContext));
1241  if (!pes)
1242  return 0;
1243  pes->ts = ts;
1244  pes->stream = ts->stream;
1245  pes->pid = pid;
1246  pes->pcr_pid = pcr_pid;
1247  pes->state = MPEGTS_SKIP;
1248  pes->pts = AV_NOPTS_VALUE;
1249  pes->dts = AV_NOPTS_VALUE;
1250  tss = mpegts_open_pes_filter(ts, pid, mpegts_push_data, pes);
1251  if (!tss) {
1252  av_free(pes);
1253  return 0;
1254  }
1255  return pes;
1256 }
1257 
1258 #define MAX_LEVEL 4
1259 typedef struct MP4DescrParseContext {
1266  int level;
1269 
1271  const uint8_t *buf, unsigned size,
1272  Mp4Descr *descr, int max_descr_count)
1273 {
1274  int ret;
1275  if (size > (1 << 30))
1276  return AVERROR_INVALIDDATA;
1277 
1278  if ((ret = ffio_init_context(&d->pb, (unsigned char *)buf, size, 0,
1279  NULL, NULL, NULL, NULL)) < 0)
1280  return ret;
1281 
1282  d->s = s;
1283  d->level = 0;
1284  d->descr_count = 0;
1285  d->descr = descr;
1286  d->active_descr = NULL;
1287  d->max_descr_count = max_descr_count;
1288 
1289  return 0;
1290 }
1291 
1292 static void update_offsets(AVIOContext *pb, int64_t *off, int *len)
1293 {
1294  int64_t new_off = avio_tell(pb);
1295  (*len) -= new_off - *off;
1296  *off = new_off;
1297 }
1298 
1299 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1300  int target_tag);
1301 
1302 static int parse_mp4_descr_arr(MP4DescrParseContext *d, int64_t off, int len)
1303 {
1304  while (len > 0) {
1305  int ret = parse_mp4_descr(d, off, len, 0);
1306  if (ret < 0)
1307  return ret;
1308  update_offsets(&d->pb, &off, &len);
1309  }
1310  return 0;
1311 }
1312 
1313 static int parse_MP4IODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1314 {
1315  avio_rb16(&d->pb); // ID
1316  avio_r8(&d->pb);
1317  avio_r8(&d->pb);
1318  avio_r8(&d->pb);
1319  avio_r8(&d->pb);
1320  avio_r8(&d->pb);
1321  update_offsets(&d->pb, &off, &len);
1322  return parse_mp4_descr_arr(d, off, len);
1323 }
1324 
1325 static int parse_MP4ODescrTag(MP4DescrParseContext *d, int64_t off, int len)
1326 {
1327  int id_flags;
1328  if (len < 2)
1329  return 0;
1330  id_flags = avio_rb16(&d->pb);
1331  if (!(id_flags & 0x0020)) { // URL_Flag
1332  update_offsets(&d->pb, &off, &len);
1333  return parse_mp4_descr_arr(d, off, len); // ES_Descriptor[]
1334  } else {
1335  return 0;
1336  }
1337 }
1338 
1339 static int parse_MP4ESDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1340 {
1341  int es_id = 0;
1342  if (d->descr_count >= d->max_descr_count)
1343  return AVERROR_INVALIDDATA;
1344  ff_mp4_parse_es_descr(&d->pb, &es_id);
1345  d->active_descr = d->descr + (d->descr_count++);
1346 
1347  d->active_descr->es_id = es_id;
1348  update_offsets(&d->pb, &off, &len);
1349  parse_mp4_descr(d, off, len, MP4DecConfigDescrTag);
1350  update_offsets(&d->pb, &off, &len);
1351  if (len > 0)
1352  parse_mp4_descr(d, off, len, MP4SLDescrTag);
1353  d->active_descr = NULL;
1354  return 0;
1355 }
1356 
1358  int len)
1359 {
1360  Mp4Descr *descr = d->active_descr;
1361  if (!descr)
1362  return AVERROR_INVALIDDATA;
1364  if (!descr->dec_config_descr)
1365  return AVERROR(ENOMEM);
1366  descr->dec_config_descr_len = len;
1367  avio_read(&d->pb, descr->dec_config_descr, len);
1368  return 0;
1369 }
1370 
1371 static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len)
1372 {
1373  Mp4Descr *descr = d->active_descr;
1374  int predefined;
1375  if (!descr)
1376  return AVERROR_INVALIDDATA;
1377 
1378  predefined = avio_r8(&d->pb);
1379  if (!predefined) {
1380  int lengths;
1381  int flags = avio_r8(&d->pb);
1382  descr->sl.use_au_start = !!(flags & 0x80);
1383  descr->sl.use_au_end = !!(flags & 0x40);
1384  descr->sl.use_rand_acc_pt = !!(flags & 0x20);
1385  descr->sl.use_padding = !!(flags & 0x08);
1386  descr->sl.use_timestamps = !!(flags & 0x04);
1387  descr->sl.use_idle = !!(flags & 0x02);
1388  descr->sl.timestamp_res = avio_rb32(&d->pb);
1389  avio_rb32(&d->pb);
1390  descr->sl.timestamp_len = avio_r8(&d->pb);
1391  if (descr->sl.timestamp_len > 64) {
1392  avpriv_request_sample(NULL, "timestamp_len > 64");
1393  descr->sl.timestamp_len = 64;
1394  return AVERROR_PATCHWELCOME;
1395  }
1396  descr->sl.ocr_len = avio_r8(&d->pb);
1397  descr->sl.au_len = avio_r8(&d->pb);
1398  descr->sl.inst_bitrate_len = avio_r8(&d->pb);
1399  lengths = avio_rb16(&d->pb);
1400  descr->sl.degr_prior_len = lengths >> 12;
1401  descr->sl.au_seq_num_len = (lengths >> 7) & 0x1f;
1402  descr->sl.packet_seq_num_len = (lengths >> 2) & 0x1f;
1403  } else if (!d->predefined_SLConfigDescriptor_seen){
1404  avpriv_report_missing_feature(d->s, "Predefined SLConfigDescriptor");
1406  }
1407  return 0;
1408 }
1409 
1410 static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len,
1411  int target_tag)
1412 {
1413  int tag;
1414  int len1 = ff_mp4_read_descr(d->s, &d->pb, &tag);
1415  update_offsets(&d->pb, &off, &len);
1416  if (len < 0 || len1 > len || len1 <= 0) {
1417  av_log(d->s, AV_LOG_ERROR,
1418  "Tag %x length violation new length %d bytes remaining %d\n",
1419  tag, len1, len);
1420  return AVERROR_INVALIDDATA;
1421  }
1422 
1423  if (d->level++ >= MAX_LEVEL) {
1424  av_log(d->s, AV_LOG_ERROR, "Maximum MP4 descriptor level exceeded\n");
1425  goto done;
1426  }
1427 
1428  if (target_tag && tag != target_tag) {
1429  av_log(d->s, AV_LOG_ERROR, "Found tag %x expected %x\n", tag,
1430  target_tag);
1431  goto done;
1432  }
1433 
1434  switch (tag) {
1435  case MP4IODescrTag:
1436  parse_MP4IODescrTag(d, off, len1);
1437  break;
1438  case MP4ODescrTag:
1439  parse_MP4ODescrTag(d, off, len1);
1440  break;
1441  case MP4ESDescrTag:
1442  parse_MP4ESDescrTag(d, off, len1);
1443  break;
1444  case MP4DecConfigDescrTag:
1445  parse_MP4DecConfigDescrTag(d, off, len1);
1446  break;
1447  case MP4SLDescrTag:
1448  parse_MP4SLDescrTag(d, off, len1);
1449  break;
1450  }
1451 
1452 
1453 done:
1454  d->level--;
1455  avio_seek(&d->pb, off + len1, SEEK_SET);
1456  return 0;
1457 }
1458 
1459 static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size,
1460  Mp4Descr *descr, int *descr_count, int max_descr_count)
1461 {
1463  int ret;
1464 
1465  ret = init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count);
1466  if (ret < 0)
1467  return ret;
1468 
1469  ret = parse_mp4_descr(&d, avio_tell(&d.pb), size, MP4IODescrTag);
1470 
1471  *descr_count = d.descr_count;
1472  return ret;
1473 }
1474 
1475 static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size,
1476  Mp4Descr *descr, int *descr_count, int max_descr_count)
1477 {
1479  int ret;
1480 
1481  ret = init_MP4DescrParseContext(&d, s, buf, size, descr, max_descr_count);
1482  if (ret < 0)
1483  return ret;
1484 
1485  ret = parse_mp4_descr_arr(&d, avio_tell(&d.pb), size);
1486 
1487  *descr_count = d.descr_count;
1488  return ret;
1489 }
1490 
1492  int section_len)
1493 {
1494  MpegTSContext *ts = filter->u.section_filter.opaque;
1495  MpegTSSectionFilter *tssf = &filter->u.section_filter;
1496  SectionHeader h;
1497  const uint8_t *p, *p_end;
1498  AVIOContext pb;
1499  int mp4_descr_count = 0;
1500  Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = { { 0 } };
1501  int i, pid;
1502  AVFormatContext *s = ts->stream;
1503 
1504  p_end = section + section_len - 4;
1505  p = section;
1506  if (parse_section_header(&h, &p, p_end) < 0)
1507  return;
1508  if (h.tid != M4OD_TID)
1509  return;
1510  if (skip_identical(&h, tssf))
1511  return;
1512 
1513  mp4_read_od(s, p, (unsigned) (p_end - p), mp4_descr, &mp4_descr_count,
1515 
1516  for (pid = 0; pid < NB_PID_MAX; pid++) {
1517  if (!ts->pids[pid])
1518  continue;
1519  for (i = 0; i < mp4_descr_count; i++) {
1520  PESContext *pes;
1521  AVStream *st;
1522  if (ts->pids[pid]->es_id != mp4_descr[i].es_id)
1523  continue;
1524  if (ts->pids[pid]->type != MPEGTS_PES) {
1525  av_log(s, AV_LOG_ERROR, "pid %x is not PES\n", pid);
1526  continue;
1527  }
1528  pes = ts->pids[pid]->u.pes_filter.opaque;
1529  st = pes->st;
1530  if (!st)
1531  continue;
1532 
1533  pes->sl = mp4_descr[i].sl;
1534 
1535  ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1536  mp4_descr[i].dec_config_descr_len, 0,
1537  NULL, NULL, NULL, NULL);
1538  ff_mp4_read_dec_config_descr(s, st, &pb);
1539  if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1540  st->codec->extradata_size > 0)
1541  st->need_parsing = 0;
1542  if (st->codec->codec_id == AV_CODEC_ID_H264 &&
1543  st->codec->extradata_size > 0)
1544  st->need_parsing = 0;
1545 
1546  if (st->codec->codec_id <= AV_CODEC_ID_NONE) {
1547  // do nothing
1548  } else if (st->codec->codec_id < AV_CODEC_ID_FIRST_AUDIO)
1550  else if (st->codec->codec_id < AV_CODEC_ID_FIRST_SUBTITLE)
1552  else if (st->codec->codec_id < AV_CODEC_ID_FIRST_UNKNOWN)
1554  }
1555  }
1556  for (i = 0; i < mp4_descr_count; i++)
1557  av_free(mp4_descr[i].dec_config_descr);
1558 }
1559 
1561  1, 0, 1, 1, 2, 2, 2, 3, 3
1562 };
1563 
1564 static const uint8_t opus_stream_cnt[9] = {
1565  1, 1, 1, 2, 2, 3, 4, 4, 5,
1566 };
1567 
1568 static const uint8_t opus_channel_map[8][8] = {
1569  { 0 },
1570  { 0,1 },
1571  { 0,2,1 },
1572  { 0,1,2,3 },
1573  { 0,4,1,2,3 },
1574  { 0,4,1,2,3,5 },
1575  { 0,4,1,2,3,5,6 },
1576  { 0,6,1,2,3,4,5,7 },
1577 };
1578 
1580  const uint8_t **pp, const uint8_t *desc_list_end,
1581  Mp4Descr *mp4_descr, int mp4_descr_count, int pid,
1582  MpegTSContext *ts)
1583 {
1584  const uint8_t *desc_end;
1585  int desc_len, desc_tag, desc_es_id, ext_desc_tag, channels, channel_config_code;
1586  char language[252];
1587  int i;
1588 
1589  desc_tag = get8(pp, desc_list_end);
1590  if (desc_tag < 0)
1591  return AVERROR_INVALIDDATA;
1592  desc_len = get8(pp, desc_list_end);
1593  if (desc_len < 0)
1594  return AVERROR_INVALIDDATA;
1595  desc_end = *pp + desc_len;
1596  if (desc_end > desc_list_end)
1597  return AVERROR_INVALIDDATA;
1598 
1599  av_log(fc, AV_LOG_TRACE, "tag: 0x%02x len=%d\n", desc_tag, desc_len);
1600 
1601  if ((st->codec->codec_id == AV_CODEC_ID_NONE || st->request_probe > 0) &&
1602  stream_type == STREAM_TYPE_PRIVATE_DATA)
1603  mpegts_find_stream_type(st, desc_tag, DESC_types);
1604 
1605  switch (desc_tag) {
1606  case 0x1E: /* SL descriptor */
1607  desc_es_id = get16(pp, desc_end);
1608  if (desc_es_id < 0)
1609  break;
1610  if (ts && ts->pids[pid])
1611  ts->pids[pid]->es_id = desc_es_id;
1612  for (i = 0; i < mp4_descr_count; i++)
1613  if (mp4_descr[i].dec_config_descr_len &&
1614  mp4_descr[i].es_id == desc_es_id) {
1615  AVIOContext pb;
1616  ffio_init_context(&pb, mp4_descr[i].dec_config_descr,
1617  mp4_descr[i].dec_config_descr_len, 0,
1618  NULL, NULL, NULL, NULL);
1619  ff_mp4_read_dec_config_descr(fc, st, &pb);
1620  if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1621  st->codec->extradata_size > 0)
1622  st->need_parsing = 0;
1624  mpegts_open_section_filter(ts, pid, m4sl_cb, ts, 1);
1625  }
1626  break;
1627  case 0x1F: /* FMC descriptor */
1628  if (get16(pp, desc_end) < 0)
1629  break;
1630  if (mp4_descr_count > 0 &&
1631  (st->codec->codec_id == AV_CODEC_ID_AAC_LATM ||
1632  (st->request_probe == 0 && st->codec->codec_id == AV_CODEC_ID_NONE) ||
1633  st->request_probe > 0) &&
1634  mp4_descr->dec_config_descr_len && mp4_descr->es_id == pid) {
1635  AVIOContext pb;
1636  ffio_init_context(&pb, mp4_descr->dec_config_descr,
1637  mp4_descr->dec_config_descr_len, 0,
1638  NULL, NULL, NULL, NULL);
1639  ff_mp4_read_dec_config_descr(fc, st, &pb);
1640  if (st->codec->codec_id == AV_CODEC_ID_AAC &&
1641  st->codec->extradata_size > 0) {
1642  st->request_probe = st->need_parsing = 0;
1644  }
1645  }
1646  break;
1647  case 0x56: /* DVB teletext descriptor */
1648  {
1649  uint8_t *extradata = NULL;
1650  int language_count = desc_len / 5;
1651 
1652  if (desc_len > 0 && desc_len % 5 != 0)
1653  return AVERROR_INVALIDDATA;
1654 
1655  if (language_count > 0) {
1656  /* 4 bytes per language code (3 bytes) with comma or NUL byte should fit language buffer */
1657  av_assert0(language_count <= sizeof(language) / 4);
1658 
1659  if (st->codec->extradata == NULL) {
1660  if (ff_alloc_extradata(st->codec, language_count * 2)) {
1661  return AVERROR(ENOMEM);
1662  }
1663  }
1664 
1665  if (st->codec->extradata_size < language_count * 2)
1666  return AVERROR_INVALIDDATA;
1667 
1668  extradata = st->codec->extradata;
1669 
1670  for (i = 0; i < language_count; i++) {
1671  language[i * 4 + 0] = get8(pp, desc_end);
1672  language[i * 4 + 1] = get8(pp, desc_end);
1673  language[i * 4 + 2] = get8(pp, desc_end);
1674  language[i * 4 + 3] = ',';
1675 
1676  memcpy(extradata, *pp, 2);
1677  extradata += 2;
1678 
1679  *pp += 2;
1680  }
1681 
1682  language[i * 4 - 1] = 0;
1683  av_dict_set(&st->metadata, "language", language, 0);
1684  }
1685  }
1686  break;
1687  case 0x59: /* subtitling descriptor */
1688  {
1689  /* 8 bytes per DVB subtitle substream data:
1690  * ISO_639_language_code (3 bytes),
1691  * subtitling_type (1 byte),
1692  * composition_page_id (2 bytes),
1693  * ancillary_page_id (2 bytes) */
1694  int language_count = desc_len / 8;
1695 
1696  if (desc_len > 0 && desc_len % 8 != 0)
1697  return AVERROR_INVALIDDATA;
1698 
1699  if (language_count > 1) {
1700  avpriv_request_sample(fc, "DVB subtitles with multiple languages");
1701  }
1702 
1703  if (language_count > 0) {
1704  uint8_t *extradata;
1705 
1706  /* 4 bytes per language code (3 bytes) with comma or NUL byte should fit language buffer */
1707  av_assert0(language_count <= sizeof(language) / 4);
1708 
1709  if (st->codec->extradata == NULL) {
1710  if (ff_alloc_extradata(st->codec, language_count * 5)) {
1711  return AVERROR(ENOMEM);
1712  }
1713  }
1714 
1715  if (st->codec->extradata_size < language_count * 5)
1716  return AVERROR_INVALIDDATA;
1717 
1718  extradata = st->codec->extradata;
1719 
1720  for (i = 0; i < language_count; i++) {
1721  language[i * 4 + 0] = get8(pp, desc_end);
1722  language[i * 4 + 1] = get8(pp, desc_end);
1723  language[i * 4 + 2] = get8(pp, desc_end);
1724  language[i * 4 + 3] = ',';
1725 
1726  /* hearing impaired subtitles detection using subtitling_type */
1727  switch (*pp[0]) {
1728  case 0x20: /* DVB subtitles (for the hard of hearing) with no monitor aspect ratio criticality */
1729  case 0x21: /* DVB subtitles (for the hard of hearing) for display on 4:3 aspect ratio monitor */
1730  case 0x22: /* DVB subtitles (for the hard of hearing) for display on 16:9 aspect ratio monitor */
1731  case 0x23: /* DVB subtitles (for the hard of hearing) for display on 2.21:1 aspect ratio monitor */
1732  case 0x24: /* DVB subtitles (for the hard of hearing) for display on a high definition monitor */
1733  case 0x25: /* DVB subtitles (for the hard of hearing) with plano-stereoscopic disparity for display on a high definition monitor */
1735  break;
1736  }
1737 
1738  extradata[4] = get8(pp, desc_end); /* subtitling_type */
1739  memcpy(extradata, *pp, 4); /* composition_page_id and ancillary_page_id */
1740  extradata += 5;
1741 
1742  *pp += 4;
1743  }
1744 
1745  language[i * 4 - 1] = 0;
1746  av_dict_set(&st->metadata, "language", language, 0);
1747  }
1748  }
1749  break;
1750  case 0x0a: /* ISO 639 language descriptor */
1751  for (i = 0; i + 4 <= desc_len; i += 4) {
1752  language[i + 0] = get8(pp, desc_end);
1753  language[i + 1] = get8(pp, desc_end);
1754  language[i + 2] = get8(pp, desc_end);
1755  language[i + 3] = ',';
1756  switch (get8(pp, desc_end)) {
1757  case 0x01:
1759  break;
1760  case 0x02:
1762  break;
1763  case 0x03:
1765  break;
1766  }
1767  }
1768  if (i && language[0]) {
1769  language[i - 1] = 0;
1770  av_dict_set(&st->metadata, "language", language, 0);
1771  }
1772  break;
1773  case 0x05: /* registration descriptor */
1774  st->codec->codec_tag = bytestream_get_le32(pp);
1775  av_log(fc, AV_LOG_TRACE, "reg_desc=%.4s\n", (char *)&st->codec->codec_tag);
1776  if (st->codec->codec_id == AV_CODEC_ID_NONE || st->request_probe > 0)
1777  mpegts_find_stream_type(st, st->codec->codec_tag, REGD_types);
1778  break;
1779  case 0x52: /* stream identifier descriptor */
1780  st->stream_identifier = 1 + get8(pp, desc_end);
1781  break;
1782  case 0x26: /* metadata descriptor */
1783  if (get16(pp, desc_end) == 0xFFFF)
1784  *pp += 4;
1785  if (get8(pp, desc_end) == 0xFF) {
1786  st->codec->codec_tag = bytestream_get_le32(pp);
1787  if (st->codec->codec_id == AV_CODEC_ID_NONE)
1788  mpegts_find_stream_type(st, st->codec->codec_tag, METADATA_types);
1789  }
1790  break;
1791  case 0x7f: /* DVB extension descriptor */
1792  ext_desc_tag = get8(pp, desc_end);
1793  if (ext_desc_tag < 0)
1794  return AVERROR_INVALIDDATA;
1795  if (st->codec->codec_id == AV_CODEC_ID_OPUS &&
1796  ext_desc_tag == 0x80) { /* User defined (provisional Opus) */
1797  if (!st->codec->extradata) {
1800  if (!st->codec->extradata)
1801  return AVERROR(ENOMEM);
1802 
1805 
1806  channel_config_code = get8(pp, desc_end);
1807  if (channel_config_code < 0)
1808  return AVERROR_INVALIDDATA;
1809  if (channel_config_code <= 0x8) {
1810  st->codec->extradata[9] = channels = channel_config_code ? channel_config_code : 2;
1811  st->codec->extradata[18] = channel_config_code ? (channels > 2) : /* Dual Mono */ 255;
1812  st->codec->extradata[19] = opus_stream_cnt[channel_config_code];
1813  st->codec->extradata[20] = opus_coupled_stream_cnt[channel_config_code];
1814  memcpy(&st->codec->extradata[21], opus_channel_map[channels - 1], channels);
1815  } else {
1816  avpriv_request_sample(fc, "Opus in MPEG-TS - channel_config_code > 0x8");
1817  }
1819  }
1820  }
1821  break;
1822  default:
1823  break;
1824  }
1825  *pp = desc_end;
1826  return 0;
1827 }
1828 
1829 static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
1830 {
1831  MpegTSContext *ts = filter->u.section_filter.opaque;
1832  MpegTSSectionFilter *tssf = &filter->u.section_filter;
1833  SectionHeader h1, *h = &h1;
1834  PESContext *pes;
1835  AVStream *st;
1836  const uint8_t *p, *p_end, *desc_list_end;
1837  int program_info_length, pcr_pid, pid, stream_type;
1838  int desc_list_len;
1839  uint32_t prog_reg_desc = 0; /* registration descriptor */
1840 
1841  int mp4_descr_count = 0;
1842  Mp4Descr mp4_descr[MAX_MP4_DESCR_COUNT] = { { 0 } };
1843  int i;
1844 
1845  av_log(ts->stream, AV_LOG_TRACE, "PMT: len %i\n", section_len);
1846  hex_dump_debug(ts->stream, section, section_len);
1847 
1848  p_end = section + section_len - 4;
1849  p = section;
1850  if (parse_section_header(h, &p, p_end) < 0)
1851  return;
1852  if (skip_identical(h, tssf))
1853  return;
1854 
1855  av_log(ts->stream, AV_LOG_TRACE, "sid=0x%x sec_num=%d/%d version=%d\n",
1856  h->id, h->sec_num, h->last_sec_num, h->version);
1857 
1858  if (h->tid != PMT_TID)
1859  return;
1860  if (!ts->scan_all_pmts && ts->skip_changes)
1861  return;
1862 
1863  if (!ts->skip_clear)
1864  clear_program(ts, h->id);
1865 
1866  pcr_pid = get16(&p, p_end);
1867  if (pcr_pid < 0)
1868  return;
1869  pcr_pid &= 0x1fff;
1870  add_pid_to_pmt(ts, h->id, pcr_pid);
1871  set_pcr_pid(ts->stream, h->id, pcr_pid);
1872 
1873  av_log(ts->stream, AV_LOG_TRACE, "pcr_pid=0x%x\n", pcr_pid);
1874 
1875  program_info_length = get16(&p, p_end);
1876  if (program_info_length < 0)
1877  return;
1878  program_info_length &= 0xfff;
1879  while (program_info_length >= 2) {
1880  uint8_t tag, len;
1881  tag = get8(&p, p_end);
1882  len = get8(&p, p_end);
1883 
1884  av_log(ts->stream, AV_LOG_TRACE, "program tag: 0x%02x len=%d\n", tag, len);
1885 
1886  if (len > program_info_length - 2)
1887  // something else is broken, exit the program_descriptors_loop
1888  break;
1889  program_info_length -= len + 2;
1890  if (tag == 0x1d) { // IOD descriptor
1891  get8(&p, p_end); // scope
1892  get8(&p, p_end); // label
1893  len -= 2;
1894  mp4_read_iods(ts->stream, p, len, mp4_descr + mp4_descr_count,
1895  &mp4_descr_count, MAX_MP4_DESCR_COUNT);
1896  } else if (tag == 0x05 && len >= 4) { // registration descriptor
1897  prog_reg_desc = bytestream_get_le32(&p);
1898  len -= 4;
1899  }
1900  p += len;
1901  }
1902  p += program_info_length;
1903  if (p >= p_end)
1904  goto out;
1905 
1906  // stop parsing after pmt, we found header
1907  if (!ts->stream->nb_streams)
1908  ts->stop_parse = 2;
1909 
1910  set_pmt_found(ts, h->id);
1911 
1912 
1913  for (;;) {
1914  st = 0;
1915  pes = NULL;
1916  stream_type = get8(&p, p_end);
1917  if (stream_type < 0)
1918  break;
1919  pid = get16(&p, p_end);
1920  if (pid < 0)
1921  goto out;
1922  pid &= 0x1fff;
1923  if (pid == ts->current_pid)
1924  goto out;
1925 
1926  /* now create stream */
1927  if (ts->pids[pid] && ts->pids[pid]->type == MPEGTS_PES) {
1928  pes = ts->pids[pid]->u.pes_filter.opaque;
1929  if (!pes->st) {
1930  pes->st = avformat_new_stream(pes->stream, NULL);
1931  if (!pes->st)
1932  goto out;
1933  pes->st->id = pes->pid;
1934  }
1935  st = pes->st;
1936  } else if (stream_type != 0x13) {
1937  if (ts->pids[pid])
1938  mpegts_close_filter(ts, ts->pids[pid]); // wrongly added sdt filter probably
1939  pes = add_pes_stream(ts, pid, pcr_pid);
1940  if (pes) {
1941  st = avformat_new_stream(pes->stream, NULL);
1942  if (!st)
1943  goto out;
1944  st->id = pes->pid;
1945  }
1946  } else {
1947  int idx = ff_find_stream_index(ts->stream, pid);
1948  if (idx >= 0) {
1949  st = ts->stream->streams[idx];
1950  } else {
1951  st = avformat_new_stream(ts->stream, NULL);
1952  if (!st)
1953  goto out;
1954  st->id = pid;
1956  }
1957  }
1958 
1959  if (!st)
1960  goto out;
1961 
1962  if (pes && !pes->stream_type)
1963  mpegts_set_stream_info(st, pes, stream_type, prog_reg_desc);
1964 
1965  add_pid_to_pmt(ts, h->id, pid);
1966 
1968 
1969  desc_list_len = get16(&p, p_end);
1970  if (desc_list_len < 0)
1971  goto out;
1972  desc_list_len &= 0xfff;
1973  desc_list_end = p + desc_list_len;
1974  if (desc_list_end > p_end)
1975  goto out;
1976  for (;;) {
1977  if (ff_parse_mpeg2_descriptor(ts->stream, st, stream_type, &p,
1978  desc_list_end, mp4_descr,
1979  mp4_descr_count, pid, ts) < 0)
1980  break;
1981 
1982  if (pes && prog_reg_desc == AV_RL32("HDMV") &&
1983  stream_type == 0x83 && pes->sub_st) {
1985  pes->sub_st->index);
1986  pes->sub_st->codec->codec_tag = st->codec->codec_tag;
1987  }
1988  }
1989  p = desc_list_end;
1990  }
1991 
1992  if (!ts->pids[pcr_pid])
1993  mpegts_open_pcr_filter(ts, pcr_pid);
1994 
1995 out:
1996  for (i = 0; i < mp4_descr_count; i++)
1997  av_free(mp4_descr[i].dec_config_descr);
1998 }
1999 
2000 static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
2001 {
2002  MpegTSContext *ts = filter->u.section_filter.opaque;
2003  MpegTSSectionFilter *tssf = &filter->u.section_filter;
2004  SectionHeader h1, *h = &h1;
2005  const uint8_t *p, *p_end;
2006  int sid, pmt_pid;
2007  AVProgram *program;
2008 
2009  av_log(ts->stream, AV_LOG_TRACE, "PAT:\n");
2010  hex_dump_debug(ts->stream, section, section_len);
2011 
2012  p_end = section + section_len - 4;
2013  p = section;
2014  if (parse_section_header(h, &p, p_end) < 0)
2015  return;
2016  if (h->tid != PAT_TID)
2017  return;
2018  if (ts->skip_changes)
2019  return;
2020 
2021  if (skip_identical(h, tssf))
2022  return;
2023  ts->stream->ts_id = h->id;
2024 
2025  clear_programs(ts);
2026  for (;;) {
2027  sid = get16(&p, p_end);
2028  if (sid < 0)
2029  break;
2030  pmt_pid = get16(&p, p_end);
2031  if (pmt_pid < 0)
2032  break;
2033  pmt_pid &= 0x1fff;
2034 
2035  if (pmt_pid == ts->current_pid)
2036  break;
2037 
2038  av_log(ts->stream, AV_LOG_TRACE, "sid=0x%x pid=0x%x\n", sid, pmt_pid);
2039 
2040  if (sid == 0x0000) {
2041  /* NIT info */
2042  } else {
2043  MpegTSFilter *fil = ts->pids[pmt_pid];
2044  program = av_new_program(ts->stream, sid);
2045  if (program) {
2046  program->program_num = sid;
2047  program->pmt_pid = pmt_pid;
2048  }
2049  if (fil)
2050  if ( fil->type != MPEGTS_SECTION
2051  || fil->pid != pmt_pid
2052  || fil->u.section_filter.section_cb != pmt_cb)
2053  mpegts_close_filter(ts, ts->pids[pmt_pid]);
2054 
2055  if (!ts->pids[pmt_pid])
2056  mpegts_open_section_filter(ts, pmt_pid, pmt_cb, ts, 1);
2057  add_pat_entry(ts, sid);
2058  add_pid_to_pmt(ts, sid, 0); // add pat pid to program
2059  add_pid_to_pmt(ts, sid, pmt_pid);
2060  }
2061  }
2062 
2063  if (sid < 0) {
2064  int i,j;
2065  for (j=0; j<ts->stream->nb_programs; j++) {
2066  for (i = 0; i < ts->nb_prg; i++)
2067  if (ts->prg[i].id == ts->stream->programs[j]->id)
2068  break;
2069  if (i==ts->nb_prg && !ts->skip_clear)
2070  clear_avprogram(ts, ts->stream->programs[j]->id);
2071  }
2072  }
2073 }
2074 
2075 static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
2076 {
2077  MpegTSContext *ts = filter->u.section_filter.opaque;
2078  MpegTSSectionFilter *tssf = &filter->u.section_filter;
2079  SectionHeader h1, *h = &h1;
2080  const uint8_t *p, *p_end, *desc_list_end, *desc_end;
2081  int onid, val, sid, desc_list_len, desc_tag, desc_len, service_type;
2082  char *name, *provider_name;
2083 
2084  av_log(ts->stream, AV_LOG_TRACE, "SDT:\n");
2085  hex_dump_debug(ts->stream, section, section_len);
2086 
2087  p_end = section + section_len - 4;
2088  p = section;
2089  if (parse_section_header(h, &p, p_end) < 0)
2090  return;
2091  if (h->tid != SDT_TID)
2092  return;
2093  if (ts->skip_changes)
2094  return;
2095  if (skip_identical(h, tssf))
2096  return;
2097 
2098  onid = get16(&p, p_end);
2099  if (onid < 0)
2100  return;
2101  val = get8(&p, p_end);
2102  if (val < 0)
2103  return;
2104  for (;;) {
2105  sid = get16(&p, p_end);
2106  if (sid < 0)
2107  break;
2108  val = get8(&p, p_end);
2109  if (val < 0)
2110  break;
2111  desc_list_len = get16(&p, p_end);
2112  if (desc_list_len < 0)
2113  break;
2114  desc_list_len &= 0xfff;
2115  desc_list_end = p + desc_list_len;
2116  if (desc_list_end > p_end)
2117  break;
2118  for (;;) {
2119  desc_tag = get8(&p, desc_list_end);
2120  if (desc_tag < 0)
2121  break;
2122  desc_len = get8(&p, desc_list_end);
2123  desc_end = p + desc_len;
2124  if (desc_len < 0 || desc_end > desc_list_end)
2125  break;
2126 
2127  av_log(ts->stream, AV_LOG_TRACE, "tag: 0x%02x len=%d\n",
2128  desc_tag, desc_len);
2129 
2130  switch (desc_tag) {
2131  case 0x48:
2132  service_type = get8(&p, p_end);
2133  if (service_type < 0)
2134  break;
2135  provider_name = getstr8(&p, p_end);
2136  if (!provider_name)
2137  break;
2138  name = getstr8(&p, p_end);
2139  if (name) {
2140  AVProgram *program = av_new_program(ts->stream, sid);
2141  if (program) {
2142  av_dict_set(&program->metadata, "service_name", name, 0);
2143  av_dict_set(&program->metadata, "service_provider",
2144  provider_name, 0);
2145  }
2146  }
2147  av_free(name);
2148  av_free(provider_name);
2149  break;
2150  default:
2151  break;
2152  }
2153  p = desc_end;
2154  }
2155  p = desc_list_end;
2156  }
2157 }
2158 
2159 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low,
2160  const uint8_t *packet);
2161 
2162 /* handle one TS packet */
2163 static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
2164 {
2165  MpegTSFilter *tss;
2166  int len, pid, cc, expected_cc, cc_ok, afc, is_start, is_discontinuity,
2167  has_adaptation, has_payload;
2168  const uint8_t *p, *p_end;
2169  int64_t pos;
2170 
2171  pid = AV_RB16(packet + 1) & 0x1fff;
2172  if (pid && discard_pid(ts, pid))
2173  return 0;
2174  is_start = packet[1] & 0x40;
2175  tss = ts->pids[pid];
2176  if (ts->auto_guess && !tss && is_start) {
2177  add_pes_stream(ts, pid, -1);
2178  tss = ts->pids[pid];
2179  }
2180  if (!tss)
2181  return 0;
2182  ts->current_pid = pid;
2183 
2184  afc = (packet[3] >> 4) & 3;
2185  if (afc == 0) /* reserved value */
2186  return 0;
2187  has_adaptation = afc & 2;
2188  has_payload = afc & 1;
2189  is_discontinuity = has_adaptation &&
2190  packet[4] != 0 && /* with length > 0 */
2191  (packet[5] & 0x80); /* and discontinuity indicated */
2192 
2193  /* continuity check (currently not used) */
2194  cc = (packet[3] & 0xf);
2195  expected_cc = has_payload ? (tss->last_cc + 1) & 0x0f : tss->last_cc;
2196  cc_ok = pid == 0x1FFF || // null packet PID
2197  is_discontinuity ||
2198  tss->last_cc < 0 ||
2199  expected_cc == cc;
2200 
2201  tss->last_cc = cc;
2202  if (!cc_ok) {
2203  av_log(ts->stream, AV_LOG_DEBUG,
2204  "Continuity check failed for pid %d expected %d got %d\n",
2205  pid, expected_cc, cc);
2206  if (tss->type == MPEGTS_PES) {
2207  PESContext *pc = tss->u.pes_filter.opaque;
2208  pc->flags |= AV_PKT_FLAG_CORRUPT;
2209  }
2210  }
2211 
2212  p = packet + 4;
2213  if (has_adaptation) {
2214  int64_t pcr_h;
2215  int pcr_l;
2216  if (parse_pcr(&pcr_h, &pcr_l, packet) == 0)
2217  tss->last_pcr = pcr_h * 300 + pcr_l;
2218  /* skip adaptation field */
2219  p += p[0] + 1;
2220  }
2221  /* if past the end of packet, ignore */
2222  p_end = packet + TS_PACKET_SIZE;
2223  if (p >= p_end || !has_payload)
2224  return 0;
2225 
2226  pos = avio_tell(ts->stream->pb);
2227  if (pos >= 0) {
2228  av_assert0(pos >= TS_PACKET_SIZE);
2229  ts->pos47_full = pos - TS_PACKET_SIZE;
2230  }
2231 
2232  if (tss->type == MPEGTS_SECTION) {
2233  if (is_start) {
2234  /* pointer field present */
2235  len = *p++;
2236  if (len > p_end - p)
2237  return 0;
2238  if (len && cc_ok) {
2239  /* write remaining section bytes */
2240  write_section_data(ts, tss,
2241  p, len, 0);
2242  /* check whether filter has been closed */
2243  if (!ts->pids[pid])
2244  return 0;
2245  }
2246  p += len;
2247  if (p < p_end) {
2248  write_section_data(ts, tss,
2249  p, p_end - p, 1);
2250  }
2251  } else {
2252  if (cc_ok) {
2253  write_section_data(ts, tss,
2254  p, p_end - p, 0);
2255  }
2256  }
2257 
2258  // stop find_stream_info from waiting for more streams
2259  // when all programs have received a PMT
2260  if (ts->stream->ctx_flags & AVFMTCTX_NOHEADER && ts->scan_all_pmts <= 0) {
2261  int i;
2262  for (i = 0; i < ts->nb_prg; i++) {
2263  if (!ts->prg[i].pmt_found)
2264  break;
2265  }
2266  if (i == ts->nb_prg && ts->nb_prg > 0) {
2267  int types = 0;
2268  for (i = 0; i < ts->stream->nb_streams; i++) {
2269  AVStream *st = ts->stream->streams[i];
2270  types |= 1<<st->codec->codec_type;
2271  }
2272  if ((types & (1<<AVMEDIA_TYPE_AUDIO) && types & (1<<AVMEDIA_TYPE_VIDEO)) || pos > 100000) {
2273  av_log(ts->stream, AV_LOG_DEBUG, "All programs have pmt, headers found\n");
2275  }
2276  }
2277  }
2278 
2279  } else {
2280  int ret;
2281  // Note: The position here points actually behind the current packet.
2282  if (tss->type == MPEGTS_PES) {
2283  if ((ret = tss->u.pes_filter.pes_cb(tss, p, p_end - p, is_start,
2284  pos - ts->raw_packet_size)) < 0)
2285  return ret;
2286  }
2287  }
2288 
2289  return 0;
2290 }
2291 
2292 static void reanalyze(MpegTSContext *ts) {
2293  AVIOContext *pb = ts->stream->pb;
2294  int64_t pos = avio_tell(pb);
2295  if (pos < 0)
2296  return;
2297  pos -= ts->pos47_full;
2298  if (pos == TS_PACKET_SIZE) {
2299  ts->size_stat[0] ++;
2300  } else if (pos == TS_DVHS_PACKET_SIZE) {
2301  ts->size_stat[1] ++;
2302  } else if (pos == TS_FEC_PACKET_SIZE) {
2303  ts->size_stat[2] ++;
2304  }
2305 
2306  ts->size_stat_count ++;
2308  int newsize = 0;
2309  if (ts->size_stat[0] > SIZE_STAT_THRESHOLD) {
2310  newsize = TS_PACKET_SIZE;
2311  } else if (ts->size_stat[1] > SIZE_STAT_THRESHOLD) {
2312  newsize = TS_DVHS_PACKET_SIZE;
2313  } else if (ts->size_stat[2] > SIZE_STAT_THRESHOLD) {
2314  newsize = TS_FEC_PACKET_SIZE;
2315  }
2316  if (newsize && newsize != ts->raw_packet_size) {
2317  av_log(ts->stream, AV_LOG_WARNING, "changing packet size to %d\n", newsize);
2318  ts->raw_packet_size = newsize;
2319  }
2320  ts->size_stat_count = 0;
2321  memset(ts->size_stat, 0, sizeof(ts->size_stat));
2322  }
2323 }
2324 
2325 /* XXX: try to find a better synchro over several packets (use
2326  * get_packet_size() ?) */
2328 {
2329  MpegTSContext *ts = s->priv_data;
2330  AVIOContext *pb = s->pb;
2331  int c, i;
2332 
2333  for (i = 0; i < ts->resync_size; i++) {
2334  c = avio_r8(pb);
2335  if (avio_feof(pb))
2336  return AVERROR_EOF;
2337  if (c == 0x47) {
2338  avio_seek(pb, -1, SEEK_CUR);
2339  reanalyze(s->priv_data);
2340  return 0;
2341  }
2342  }
2343  av_log(s, AV_LOG_ERROR,
2344  "max resync size reached, could not find sync byte\n");
2345  /* no sync found */
2346  return AVERROR_INVALIDDATA;
2347 }
2348 
2349 /* return AVERROR_something if error or EOF. Return 0 if OK. */
2350 static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size,
2351  const uint8_t **data)
2352 {
2353  AVIOContext *pb = s->pb;
2354  int len;
2355 
2356  for (;;) {
2357  len = ffio_read_indirect(pb, buf, TS_PACKET_SIZE, data);
2358  if (len != TS_PACKET_SIZE)
2359  return len < 0 ? len : AVERROR_EOF;
2360  /* check packet sync byte */
2361  if ((*data)[0] != 0x47) {
2362  /* find a new packet start */
2363  uint64_t pos = avio_tell(pb);
2364  avio_seek(pb, -FFMIN(raw_packet_size, pos), SEEK_CUR);
2365 
2366  if (mpegts_resync(s) < 0)
2367  return AVERROR(EAGAIN);
2368  else
2369  continue;
2370  } else {
2371  break;
2372  }
2373  }
2374  return 0;
2375 }
2376 
2377 static void finished_reading_packet(AVFormatContext *s, int raw_packet_size)
2378 {
2379  AVIOContext *pb = s->pb;
2380  int skip = raw_packet_size - TS_PACKET_SIZE;
2381  if (skip > 0)
2382  avio_skip(pb, skip);
2383 }
2384 
2385 static int handle_packets(MpegTSContext *ts, int64_t nb_packets)
2386 {
2387  AVFormatContext *s = ts->stream;
2389  const uint8_t *data;
2390  int64_t packet_num;
2391  int ret = 0;
2392 
2393  if (avio_tell(s->pb) != ts->last_pos) {
2394  int i;
2395  av_log(ts->stream, AV_LOG_TRACE, "Skipping after seek\n");
2396  /* seek detected, flush pes buffer */
2397  for (i = 0; i < NB_PID_MAX; i++) {
2398  if (ts->pids[i]) {
2399  if (ts->pids[i]->type == MPEGTS_PES) {
2400  PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2401  av_buffer_unref(&pes->buffer);
2402  pes->data_index = 0;
2403  pes->state = MPEGTS_SKIP; /* skip until pes header */
2404  } else if (ts->pids[i]->type == MPEGTS_SECTION) {
2405  ts->pids[i]->u.section_filter.last_ver = -1;
2406  }
2407  ts->pids[i]->last_cc = -1;
2408  ts->pids[i]->last_pcr = -1;
2409  }
2410  }
2411  }
2412 
2413  ts->stop_parse = 0;
2414  packet_num = 0;
2415  memset(packet + TS_PACKET_SIZE, 0, AV_INPUT_BUFFER_PADDING_SIZE);
2416  for (;;) {
2417  packet_num++;
2418  if (nb_packets != 0 && packet_num >= nb_packets ||
2419  ts->stop_parse > 1) {
2420  ret = AVERROR(EAGAIN);
2421  break;
2422  }
2423  if (ts->stop_parse > 0)
2424  break;
2425 
2426  ret = read_packet(s, packet, ts->raw_packet_size, &data);
2427  if (ret != 0)
2428  break;
2429  ret = handle_packet(ts, data);
2431  if (ret != 0)
2432  break;
2433  }
2434  ts->last_pos = avio_tell(s->pb);
2435  return ret;
2436 }
2437 
2439 {
2440  const int size = p->buf_size;
2441  int maxscore = 0;
2442  int sumscore = 0;
2443  int i;
2444  int check_count = size / TS_FEC_PACKET_SIZE;
2445 #define CHECK_COUNT 10
2446 #define CHECK_BLOCK 100
2447 
2448  if (check_count < CHECK_COUNT)
2449  return 0;
2450 
2451  for (i = 0; i<check_count; i+=CHECK_BLOCK) {
2452  int left = FFMIN(check_count - i, CHECK_BLOCK);
2453  int score = analyze(p->buf + TS_PACKET_SIZE *i, TS_PACKET_SIZE *left, TS_PACKET_SIZE , NULL, 1);
2454  int dvhs_score = analyze(p->buf + TS_DVHS_PACKET_SIZE*i, TS_DVHS_PACKET_SIZE*left, TS_DVHS_PACKET_SIZE, NULL, 1);
2455  int fec_score = analyze(p->buf + TS_FEC_PACKET_SIZE *i, TS_FEC_PACKET_SIZE *left, TS_FEC_PACKET_SIZE , NULL, 1);
2456  score = FFMAX3(score, dvhs_score, fec_score);
2457  sumscore += score;
2458  maxscore = FFMAX(maxscore, score);
2459  }
2460 
2461  sumscore = sumscore * CHECK_COUNT / check_count;
2462  maxscore = maxscore * CHECK_COUNT / CHECK_BLOCK;
2463 
2464  ff_dlog(0, "TS score: %d %d\n", sumscore, maxscore);
2465 
2466  if (sumscore > 6) return AVPROBE_SCORE_MAX + sumscore - CHECK_COUNT;
2467  else if (maxscore > 6) return AVPROBE_SCORE_MAX/2 + sumscore - CHECK_COUNT;
2468  else
2469  return 0;
2470 }
2471 
2472 /* return the 90kHz PCR and the extension for the 27MHz PCR. return
2473  * (-1) if not available */
2474 static int parse_pcr(int64_t *ppcr_high, int *ppcr_low, const uint8_t *packet)
2475 {
2476  int afc, len, flags;
2477  const uint8_t *p;
2478  unsigned int v;
2479 
2480  afc = (packet[3] >> 4) & 3;
2481  if (afc <= 1)
2482  return AVERROR_INVALIDDATA;
2483  p = packet + 4;
2484  len = p[0];
2485  p++;
2486  if (len == 0)
2487  return AVERROR_INVALIDDATA;
2488  flags = *p++;
2489  len--;
2490  if (!(flags & 0x10))
2491  return AVERROR_INVALIDDATA;
2492  if (len < 6)
2493  return AVERROR_INVALIDDATA;
2494  v = AV_RB32(p);
2495  *ppcr_high = ((int64_t) v << 1) | (p[4] >> 7);
2496  *ppcr_low = ((p[4] & 1) << 8) | p[5];
2497  return 0;
2498 }
2499 
2500 static void seek_back(AVFormatContext *s, AVIOContext *pb, int64_t pos) {
2501 
2502  /* NOTE: We attempt to seek on non-seekable files as well, as the
2503  * probe buffer usually is big enough. Only warn if the seek failed
2504  * on files where the seek should work. */
2505  if (avio_seek(pb, pos, SEEK_SET) < 0)
2506  av_log(s, pb->seekable ? AV_LOG_ERROR : AV_LOG_INFO, "Unable to seek back to the start\n");
2507 }
2508 
2510 {
2511  MpegTSContext *ts = s->priv_data;
2512  AVIOContext *pb = s->pb;
2513  uint8_t buf[8 * 1024] = {0};
2514  int len;
2515  int64_t pos, probesize =
2516 #if FF_API_PROBESIZE_32
2517  s->probesize ? s->probesize : s->probesize2;
2518 #else
2519  s->probesize;
2520 #endif
2521 
2522  if (ffio_ensure_seekback(pb, probesize) < 0)
2523  av_log(s, AV_LOG_WARNING, "Failed to allocate buffers for seekback\n");
2524 
2525  /* read the first 8192 bytes to get packet size */
2526  pos = avio_tell(pb);
2527  len = avio_read(pb, buf, sizeof(buf));
2528  ts->raw_packet_size = get_packet_size(buf, len);
2529  if (ts->raw_packet_size <= 0) {
2530  av_log(s, AV_LOG_WARNING, "Could not detect TS packet size, defaulting to non-FEC/DVHS\n");
2532  }
2533  ts->stream = s;
2534  ts->auto_guess = 0;
2535 
2536  if (s->iformat == &ff_mpegts_demuxer) {
2537  /* normal demux */
2538 
2539  /* first do a scan to get all the services */
2540  seek_back(s, pb, pos);
2541 
2543 
2545 
2546  handle_packets(ts, probesize / ts->raw_packet_size);
2547  /* if could not find service, enable auto_guess */
2548 
2549  ts->auto_guess = 1;
2550 
2551  av_log(ts->stream, AV_LOG_TRACE, "tuning done\n");
2552 
2554  } else {
2555  AVStream *st;
2556  int pcr_pid, pid, nb_packets, nb_pcrs, ret, pcr_l;
2557  int64_t pcrs[2], pcr_h;
2558  int packet_count[2];
2559  uint8_t packet[TS_PACKET_SIZE];
2560  const uint8_t *data;
2561 
2562  /* only read packets */
2563 
2564  st = avformat_new_stream(s, NULL);
2565  if (!st)
2566  return AVERROR(ENOMEM);
2567  avpriv_set_pts_info(st, 60, 1, 27000000);
2570 
2571  /* we iterate until we find two PCRs to estimate the bitrate */
2572  pcr_pid = -1;
2573  nb_pcrs = 0;
2574  nb_packets = 0;
2575  for (;;) {
2576  ret = read_packet(s, packet, ts->raw_packet_size, &data);
2577  if (ret < 0)
2578  return ret;
2579  pid = AV_RB16(data + 1) & 0x1fff;
2580  if ((pcr_pid == -1 || pcr_pid == pid) &&
2581  parse_pcr(&pcr_h, &pcr_l, data) == 0) {
2583  pcr_pid = pid;
2584  packet_count[nb_pcrs] = nb_packets;
2585  pcrs[nb_pcrs] = pcr_h * 300 + pcr_l;
2586  nb_pcrs++;
2587  if (nb_pcrs >= 2)
2588  break;
2589  } else {
2591  }
2592  nb_packets++;
2593  }
2594 
2595  /* NOTE1: the bitrate is computed without the FEC */
2596  /* NOTE2: it is only the bitrate of the start of the stream */
2597  ts->pcr_incr = (pcrs[1] - pcrs[0]) / (packet_count[1] - packet_count[0]);
2598  ts->cur_pcr = pcrs[0] - ts->pcr_incr * packet_count[0];
2599  s->bit_rate = TS_PACKET_SIZE * 8 * 27000000LL / ts->pcr_incr;
2600  st->codec->bit_rate = s->bit_rate;
2601  st->start_time = ts->cur_pcr;
2602  av_log(ts->stream, AV_LOG_TRACE, "start=%0.3f pcr=%0.3f incr=%d\n",
2603  st->start_time / 1000000.0, pcrs[0] / 27e6, ts->pcr_incr);
2604  }
2605 
2606  seek_back(s, pb, pos);
2607  return 0;
2608 }
2609 
2610 #define MAX_PACKET_READAHEAD ((128 * 1024) / 188)
2611 
2613 {
2614  MpegTSContext *ts = s->priv_data;
2615  int ret, i;
2616  int64_t pcr_h, next_pcr_h, pos;
2617  int pcr_l, next_pcr_l;
2618  uint8_t pcr_buf[12];
2619  const uint8_t *data;
2620 
2621  if (av_new_packet(pkt, TS_PACKET_SIZE) < 0)
2622  return AVERROR(ENOMEM);
2623  ret = read_packet(s, pkt->data, ts->raw_packet_size, &data);
2624  pkt->pos = avio_tell(s->pb);
2625  if (ret < 0) {
2626  av_free_packet(pkt);
2627  return ret;
2628  }
2629  if (data != pkt->data)
2630  memcpy(pkt->data, data, ts->raw_packet_size);
2632  if (ts->mpeg2ts_compute_pcr) {
2633  /* compute exact PCR for each packet */
2634  if (parse_pcr(&pcr_h, &pcr_l, pkt->data) == 0) {
2635  /* we read the next PCR (XXX: optimize it by using a bigger buffer */
2636  pos = avio_tell(s->pb);
2637  for (i = 0; i < MAX_PACKET_READAHEAD; i++) {
2638  avio_seek(s->pb, pos + i * ts->raw_packet_size, SEEK_SET);
2639  avio_read(s->pb, pcr_buf, 12);
2640  if (parse_pcr(&next_pcr_h, &next_pcr_l, pcr_buf) == 0) {
2641  /* XXX: not precise enough */
2642  ts->pcr_incr =
2643  ((next_pcr_h - pcr_h) * 300 + (next_pcr_l - pcr_l)) /
2644  (i + 1);
2645  break;
2646  }
2647  }
2648  avio_seek(s->pb, pos, SEEK_SET);
2649  /* no next PCR found: we use previous increment */
2650  ts->cur_pcr = pcr_h * 300 + pcr_l;
2651  }
2652  pkt->pts = ts->cur_pcr;
2653  pkt->duration = ts->pcr_incr;
2654  ts->cur_pcr += ts->pcr_incr;
2655  }
2656  pkt->stream_index = 0;
2657  return 0;
2658 }
2659 
2661 {
2662  MpegTSContext *ts = s->priv_data;
2663  int ret, i;
2664 
2665  pkt->size = -1;
2666  ts->pkt = pkt;
2667  ret = handle_packets(ts, 0);
2668  if (ret < 0) {
2669  av_free_packet(ts->pkt);
2670  /* flush pes data left */
2671  for (i = 0; i < NB_PID_MAX; i++)
2672  if (ts->pids[i] && ts->pids[i]->type == MPEGTS_PES) {
2673  PESContext *pes = ts->pids[i]->u.pes_filter.opaque;
2674  if (pes->state == MPEGTS_PAYLOAD && pes->data_index > 0) {
2675  new_pes_packet(pes, pkt);
2676  pes->state = MPEGTS_SKIP;
2677  ret = 0;
2678  break;
2679  }
2680  }
2681  }
2682 
2683  if (!ret && pkt->size < 0)
2684  ret = AVERROR(EINTR);
2685  return ret;
2686 }
2687 
2688 static void mpegts_free(MpegTSContext *ts)
2689 {
2690  int i;
2691 
2692  clear_programs(ts);
2693 
2694  for (i = 0; i < NB_PID_MAX; i++)
2695  if (ts->pids[i])
2696  mpegts_close_filter(ts, ts->pids[i]);
2697 }
2698 
2700 {
2701  MpegTSContext *ts = s->priv_data;
2702  mpegts_free(ts);
2703  return 0;
2704 }
2705 
2706 static av_unused int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index,
2707  int64_t *ppos, int64_t pos_limit)
2708 {
2709  MpegTSContext *ts = s->priv_data;
2710  int64_t pos, timestamp;
2712  int pcr_l, pcr_pid =
2713  ((PESContext *)s->streams[stream_index]->priv_data)->pcr_pid;
2714  int pos47 = ts->pos47_full % ts->raw_packet_size;
2715  pos =
2716  ((*ppos + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) *
2717  ts->raw_packet_size + pos47;
2718  while(pos < pos_limit) {
2719  if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2720  return AV_NOPTS_VALUE;
2721  if (avio_read(s->pb, buf, TS_PACKET_SIZE) != TS_PACKET_SIZE)
2722  return AV_NOPTS_VALUE;
2723  if (buf[0] != 0x47) {
2724  avio_seek(s->pb, -TS_PACKET_SIZE, SEEK_CUR);
2725  if (mpegts_resync(s) < 0)
2726  return AV_NOPTS_VALUE;
2727  pos = avio_tell(s->pb);
2728  continue;
2729  }
2730  if ((pcr_pid < 0 || (AV_RB16(buf + 1) & 0x1fff) == pcr_pid) &&
2731  parse_pcr(&timestamp, &pcr_l, buf) == 0) {
2732  *ppos = pos;
2733  return timestamp;
2734  }
2735  pos += ts->raw_packet_size;
2736  }
2737 
2738  return AV_NOPTS_VALUE;
2739 }
2740 
2741 static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index,
2742  int64_t *ppos, int64_t pos_limit)
2743 {
2744  MpegTSContext *ts = s->priv_data;
2745  int64_t pos;
2746  int pos47 = ts->pos47_full % ts->raw_packet_size;
2747  pos = ((*ppos + ts->raw_packet_size - 1 - pos47) / ts->raw_packet_size) * ts->raw_packet_size + pos47;
2749  if (avio_seek(s->pb, pos, SEEK_SET) < 0)
2750  return AV_NOPTS_VALUE;
2751  while(pos < pos_limit) {
2752  int ret;
2753  AVPacket pkt;
2754  av_init_packet(&pkt);
2755  ret = av_read_frame(s, &pkt);
2756  if (ret < 0)
2757  return AV_NOPTS_VALUE;
2758  av_free_packet(&pkt);
2759  if (pkt.dts != AV_NOPTS_VALUE && pkt.pos >= 0) {
2760  ff_reduce_index(s, pkt.stream_index);
2761  av_add_index_entry(s->streams[pkt.stream_index], pkt.pos, pkt.dts, 0, 0, AVINDEX_KEYFRAME /* FIXME keyframe? */);
2762  if (pkt.stream_index == stream_index && pkt.pos >= *ppos) {
2763  *ppos = pkt.pos;
2764  return pkt.dts;
2765  }
2766  }
2767  pos = pkt.pos;
2768  }
2769 
2770  return AV_NOPTS_VALUE;
2771 }
2772 
2773 /**************************************************************/
2774 /* parsing functions - called from other demuxers such as RTP */
2775 
2777 {
2778  MpegTSContext *ts;
2779 
2780  ts = av_mallocz(sizeof(MpegTSContext));
2781  if (!ts)
2782  return NULL;
2783  /* no stream case, currently used by RTP */
2785  ts->stream = s;
2786  ts->auto_guess = 1;
2789 
2790  return ts;
2791 }
2792 
2793 /* return the consumed length if a packet was output, or -1 if no
2794  * packet is output */
2796  const uint8_t *buf, int len)
2797 {
2798  int len1;
2799 
2800  len1 = len;
2801  ts->pkt = pkt;
2802  for (;;) {
2803  ts->stop_parse = 0;
2804  if (len < TS_PACKET_SIZE)
2805  return AVERROR_INVALIDDATA;
2806  if (buf[0] != 0x47) {
2807  buf++;
2808  len--;
2809  } else {
2810  handle_packet(ts, buf);
2811  buf += TS_PACKET_SIZE;
2812  len -= TS_PACKET_SIZE;
2813  if (ts->stop_parse == 1)
2814  break;
2815  }
2816  }
2817  return len1 - len;
2818 }
2819 
2821 {
2822  mpegts_free(ts);
2823  av_free(ts);
2824 }
2825 
2826 AVInputFormat ff_mpegts_demuxer = {
2827  .name = "mpegts",
2828  .long_name = NULL_IF_CONFIG_SMALL("MPEG-TS (MPEG-2 Transport Stream)"),
2829  .priv_data_size = sizeof(MpegTSContext),
2834  .read_timestamp = mpegts_get_dts,
2836  .priv_class = &mpegts_class,
2837 };
2838 
2840  .name = "mpegtsraw",
2841  .long_name = NULL_IF_CONFIG_SMALL("raw MPEG-TS (MPEG-2 Transport Stream)"),
2842  .priv_data_size = sizeof(MpegTSContext),
2846  .read_timestamp = mpegts_get_dts,
2848  .priv_class = &mpegtsraw_class,
2849 };
static void mpegts_free(MpegTSContext *ts)
Definition: mpegts.c:2688
unsigned last_crc
Definition: mpegts.c:81
int64_t probesize
Maximum size of the data read from input for determining the input container format.
Definition: avformat.h:1787
uint8_t last_sec_num
Definition: mpegts.c:589
#define NULL
Definition: coverity.c:32
#define SDT_PID
Definition: mpegts.h:37
int64_t pos47_full
Definition: mpegts.c:122
const char const char void * val
Definition: avisynth_c.h:634
int64_t last_pcr
Definition: mpegts.c:93
float v
const char * s
Definition: avisynth_c.h:631
Bytestream IO Context.
Definition: avio.h:111
int es_id
Definition: mpegts.c:91
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition: error.h:59
#define PES_START_SIZE
Definition: mpegts.c:219
#define PMT_TID
Definition: mpegts.h:41
void av_buffer_unref(AVBufferRef **buf)
Free a given reference and automatically free the buffer if there are no more references to it...
Definition: buffer.c:124
#define MP4ESDescrTag
Definition: isom.h:218
void av_free_packet(AVPacket *pkt)
Free a packet.
Definition: avpacket.c:280
int total_size
Definition: mpegts.c:235
static int mpegts_resync(AVFormatContext *s)
Definition: mpegts.c:2327
void ff_mp4_parse_es_descr(AVIOContext *pb, int *es_id)
Definition: isom.c:426
static void finished_reading_packet(AVFormatContext *s, int raw_packet_size)
Definition: mpegts.c:2377
AVOption.
Definition: opt.h:255
A dummy id pointing at the start of audio codecs.
Definition: avcodec.h:330
ptrdiff_t const GLvoid * data
Definition: opengl_enc.c:101
int64_t cur_pcr
used to estimate the exact PCR
Definition: mpegts.c:133
#define AV_OPT_FLAG_EXPORT
The option is inteded for exporting values to the caller.
Definition: opt.h:296
int av_add_index_entry(AVStream *st, int64_t pos, int64_t timestamp, int size, int distance, int flags)
Add an index entry into a sorted list.
Definition: utils.c:1745
#define MAX_PACKET_READAHEAD
Definition: mpegts.c:2610
enum AVMediaType codec_type
Definition: mpegts.c:684
int64_t dts
Definition: mpegts.c:238
static int parse_MP4ODescrTag(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1325
static unsigned int get_bits(GetBitContext *s, int n)
Read 1-25 bits.
Definition: get_bits.h:260
#define AV_LOG_WARNING
Something somehow does not look correct.
Definition: log.h:182
static int handle_packet(MpegTSContext *ts, const uint8_t *packet)
Definition: mpegts.c:2163
#define LIBAVUTIL_VERSION_INT
Definition: version.h:62
int64_t pos
byte position in stream, -1 if unknown
Definition: avcodec.h:1448
static void clear_program(MpegTSContext *ts, unsigned int programid)
Definition: mpegts.c:273
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:4083
static void skip_bits_long(GetBitContext *s, int n)
Definition: get_bits.h:217
static int mpegts_probe(AVProbeData *p)
Definition: mpegts.c:2438
#define MP4ODescrTag
Definition: isom.h:216
int8_t crc_validity[NB_PID_MAX]
Definition: mpegts.c:158
MpegTSContext * avpriv_mpegts_parse_open(AVFormatContext *s)
Definition: mpegts.c:2776
int64_t pts_wrap_reference
Internal data to check for wrapping of the time stamp.
Definition: avformat.h:1131
int index
stream index in AVFormatContext
Definition: avformat.h:843
int size
Definition: avcodec.h:1424
MpegTSPESFilter pes_filter
Definition: mpegts.c:96
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
Definition: aviobuf.c:204
uint8_t version
Definition: mpegts.c:587
int size_stat_count
Definition: mpegts.c:119
#define AV_DISPOSITION_HEARING_IMPAIRED
stream for hearing impaired audiences
Definition: avformat.h:810
AVInputFormat ff_mpegts_demuxer
Definition: mpegts.c:2826
static void sdt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
Definition: mpegts.c:2075
A dummy ID pointing at the start of various fake codecs.
Definition: avcodec.h:536
void * priv_data
Definition: avformat.h:862
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
Definition: aviobuf.c:277
#define AV_DISPOSITION_CLEAN_EFFECTS
stream without voice
Definition: avformat.h:812
#define M4OD_TID
Definition: mpegts.h:42
static int parse_section_header(SectionHeader *h, const uint8_t **pp, const uint8_t *p_end)
Definition: mpegts.c:653
discard all
Definition: avcodec.h:689
enum MpegTSFilterType type
Definition: mpegts.c:94
static AVPacket pkt
int pid
Definition: mpegts.c:224
struct Program * prg
Definition: mpegts.c:156
static int mpegts_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mpegts.c:2660
unsigned int avio_rb16(AVIOContext *s)
Definition: aviobuf.c:675
int ctx_flags
Flags signalling stream properties.
Definition: avformat.h:1322
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_WB24 unsigned int_TMPL AV_RB16
Definition: bytestream.h:87
int pcr_pid
if -1 then all packets containing PCR are considered
Definition: mpegts.c:225
SLConfigDescr sl
Definition: mpegts.h:92
int packet_seq_num_len
Definition: mpegts.h:85
int es_id
Definition: mpegts.h:89
int inst_bitrate_len
Definition: mpegts.h:82
unsigned int nb_prg
structure to keep track of Program->pids mapping
Definition: mpegts.c:155
#define AVFMT_SHOW_IDS
Show format stream IDs numbers.
Definition: avformat.h:467
int last_cc
Definition: mpegts.c:92
Format I/O context.
Definition: avformat.h:1273
static int read_packet(AVFormatContext *s, uint8_t *buf, int raw_packet_size, const uint8_t **data)
Definition: mpegts.c:2350
unsigned int nb_stream_indexes
Definition: avformat.h:1211
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
unsigned int pids[MAX_PIDS_PER_PROGRAM]
Definition: mpegts.c:105
void ff_read_frame_flush(AVFormatContext *s)
Flush the frame reader.
Definition: utils.c:1624
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Definition: avassert.h:37
void ff_reduce_index(AVFormatContext *s, int stream_index)
Ensure the index uses less memory than the maximum specified in AVFormatContext.max_index_size by dis...
Definition: utils.c:1673
#define SIZE_STAT_THRESHOLD
Definition: mpegts.c:120
Public dictionary API.
static int read_sl_header(PESContext *pes, SLConfigDescr *sl, const uint8_t *buf, int buf_size)
Definition: mpegts.c:900
void void avpriv_request_sample(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
MpegTSFilter * pids[NB_PID_MAX]
filters for various streams specified by PMT + for the PAT and PMT
Definition: mpegts.c:160
static int mpegts_read_header(AVFormatContext *s)
Definition: mpegts.c:2509
AVFormatContext * s
Definition: mpegts.c:1260
uint8_t bits
Definition: crc.c:295
uint8_t
int stream_identifier
Stream Identifier This is the MPEG-TS stream identifier +1 0 means unknown.
Definition: avformat.h:1068
#define av_malloc(s)
Opaque data information usually continuous.
Definition: avutil.h:195
static struct Program * get_program(MpegTSContext *ts, unsigned int programid)
Definition: mpegts.c:247
enum MpegTSState state
Definition: mpegts.c:231
static int64_t mpegts_get_dts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
Definition: mpegts.c:2741
#define AVFMTCTX_NOHEADER
signal that no header is present (streams are added dynamically)
Definition: avformat.h:1232
AVOptions.
int size_stat[3]
Definition: mpegts.c:118
int au_seq_num_len
Definition: mpegts.h:84
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
Definition: log.h:202
unsigned int avio_rb32(AVIOContext *s)
Definition: aviobuf.c:690
int stop_parse
stop parsing loop
Definition: mpegts.c:138
static int parse_MP4ESDescrTag(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1339
static int discard_pid(MpegTSContext *ts, unsigned int pid)
discard_pid() decides if the pid is to be discarded according to caller's programs selection ...
Definition: mpegts.c:351
static void add_pat_entry(MpegTSContext *ts, unsigned int programid)
Definition: mpegts.c:291
static int mpegts_push_data(MpegTSFilter *filter, const uint8_t *buf, int buf_size, int is_start, int64_t pos)
Definition: mpegts.c:972
int id
Format-specific stream ID.
Definition: avformat.h:849
enum AVStreamParseType need_parsing
Definition: avformat.h:1034
int use_au_start
Definition: mpegts.h:72
static const AVOption raw_options[]
Definition: mpegts.c:189
uint8_t * extradata
some codecs need / can use extradata like Huffman tables.
Definition: avcodec.h:1617
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
Definition: utils.c:3749
int pmt_pid
Definition: avformat.h:1215
static const uint8_t opus_channel_map[8][8]
Definition: mpegts.c:1568
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:1341
#define TS_PACKET_SIZE
Definition: mpegts.h:29
Mp4Descr * descr
Definition: mpegts.c:1262
int ffio_read_indirect(AVIOContext *s, unsigned char *buf, int size, const unsigned char **data)
Read size bytes from AVIOContext, returning a pointer.
Definition: aviobuf.c:594
static void update_offsets(AVIOContext *pb, int64_t *off, int *len)
Definition: mpegts.c:1292
uint8_t * data
Definition: avcodec.h:1423
AVProgram * av_new_program(AVFormatContext *s, int id)
Definition: utils.c:3817
static int get_bits_count(const GetBitContext *s)
Definition: get_bits.h:212
MpegTSState
Definition: mpegts.c:210
uint32_t tag
Definition: movenc.c:1334
#define ff_dlog(a,...)
#define AVERROR_EOF
End of file.
Definition: error.h:55
bitstream reader API header.
static av_cold int read_close(AVFormatContext *ctx)
Definition: libcdio.c:145
int pid
Definition: mpegts.c:90
ptrdiff_t size
Definition: opengl_enc.c:101
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
Definition: avio.h:390
static void seek_back(AVFormatContext *s, AVIOContext *pb, int64_t pos)
Definition: mpegts.c:2500
enum AVDiscard discard
selects which program to discard and which to feed to the caller
Definition: avformat.h:1209
static int probe(AVProbeData *p)
Definition: act.c:36
static PESContext * add_pes_stream(MpegTSContext *ts, int pid, int pcr_pid)
Definition: mpegts.c:1234
int duration
Duration of this packet in AVStream->time_base units, 0 if unknown.
Definition: avcodec.h:1441
unsigned int * stream_index
Definition: avformat.h:1210
int scan_all_pmts
Definition: mpegts.c:147
#define av_log(a,...)
#define PAT_TID
Definition: mpegts.h:40
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
Definition: aviobuf.c:538
static MpegTSFilter * mpegts_open_pes_filter(MpegTSContext *ts, unsigned int pid, PESCallback *pes_cb, void *opaque)
Definition: mpegts.c:491
AVInputFormat ff_mpegtsraw_demuxer
Definition: mpegts.c:2839
static int init_MP4DescrParseContext(MP4DescrParseContext *d, AVFormatContext *s, const uint8_t *buf, unsigned size, Mp4Descr *descr, int max_descr_count)
Definition: mpegts.c:1270
int av_new_packet(AVPacket *pkt, int size)
Allocate the payload of a packet and initialize its fields with default values.
Definition: avpacket.c:83
#define AVINDEX_KEYFRAME
Definition: avformat.h:791
static int get_bits_left(GetBitContext *gb)
Definition: get_bits.h:588
static uint64_t get_bits64(GetBitContext *s, int n)
Read 0-64 bits.
Definition: get_bits.h:357
enum AVCodecID codec_id
Definition: mpegts.c:685
#define AVPROBE_SCORE_STREAM_RETRY
Definition: avformat.h:456
AVBufferRef * buffer
Definition: mpegts.c:241
AVProgram * av_find_program_from_stream(AVFormatContext *ic, AVProgram *last, int s)
Find the programs which belong to a given stream.
Definition: utils.c:3555
static const uint8_t opus_default_extradata[30]
Definition: opus.h:67
int ff_mp4_read_dec_config_descr(AVFormatContext *fc, AVStream *st, AVIOContext *pb)
Definition: isom.c:451
static void reanalyze(MpegTSContext *ts)
Definition: mpegts.c:2292
int av_reallocp_array(void *ptr, size_t nmemb, size_t size)
Definition: mem.c:215
AVCodecID
Identify the syntax and semantics of the bitstream.
Definition: avcodec.h:102
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition: log.h:176
int predefined_SLConfigDescriptor_seen
Definition: mpegts.c:1267
static const StreamType HDMV_types[]
Definition: mpegts.c:710
#define AVFMT_TS_DISCONT
Format allows timestamp discontinuities.
Definition: avformat.h:474
static void clear_avprogram(MpegTSContext *ts, unsigned int programid)
Definition: mpegts.c:258
av_default_item_name
#define AVERROR(e)
Definition: error.h:43
static int mpegts_read_close(AVFormatContext *s)
Definition: mpegts.c:2699
unsigned int check_crc
Definition: mpegts.c:83
static int mpegts_raw_read_packet(AVFormatContext *s, AVPacket *pkt)
Definition: mpegts.c:2612
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
Definition: internal.h:175
int avcodec_is_open(AVCodecContext *s)
Definition: utils.c:3858
const char * r
Definition: vf_curves.c:107
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
Definition: log.h:197
unsigned int nb_programs
Definition: avformat.h:1424
preferred ID for decoding MPEG audio layer 1, 2 or 3
Definition: avcodec.h:425
AVBufferRef * buf
A reference to the reference-counted buffer where the packet data is stored.
Definition: avcodec.h:1406
int pes_header_size
Definition: mpegts.c:236
void ff_program_add_stream_index(AVFormatContext *ac, int progid, unsigned int idx)
simple assert() macros that are a bit more flexible than ISO C assert().
#define TS_FEC_PACKET_SIZE
Definition: mpegts.h:27
New fields can be added to the end with minor version bumps.
Definition: avformat.h:1206
#define FFMAX(a, b)
Definition: common.h:79
static int64_t ff_parse_pes_pts(const uint8_t *buf)
Parse MPEG-PES five-byte timestamp.
Definition: mpeg.h:67
int timestamp_len
Definition: mpegts.h:79
static int parse_MP4DecConfigDescrTag(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1357
int flags
copied to the AVPacket flags
Definition: mpegts.c:234
int program_num
Definition: avformat.h:1214
#define MAX_SECTION_SIZE
Definition: mpegts.h:33
int pcr_incr
used to estimate the exact PCR
Definition: mpegts.c:134
int current_pid
Definition: mpegts.c:161
int flags
A combination of AV_PKT_FLAG values.
Definition: avcodec.h:1429
int avio_r8(AVIOContext *s)
Definition: aviobuf.c:529
AVCodecContext * codec
Codec context associated with this stream.
Definition: avformat.h:861
int buf_size
Size of buf except extra allocated bytes.
Definition: avformat.h:451
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
Definition: avformat.h:450
common internal API header
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
Definition: avformat.h:1329
static const uint16_t fc[]
Definition: dcaenc.h:41
int ff_find_stream_index(AVFormatContext *s, int id)
Find stream index based on format-specific stream ID.
Definition: utils.c:4162
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
Definition: avio.h:160
int bit_rate
the average bitrate
Definition: avcodec.h:1567
int64_t ts_packet_pos
position of first TS packet of this PES packet
Definition: mpegts.c:239
SectionCallback * section_cb
Definition: mpegts.c:85
static const StreamType REGD_types[]
Definition: mpegts.c:732
int PESCallback(MpegTSFilter *f, const uint8_t *buf, int len, int is_start, int64_t pos)
Definition: mpegts.c:64
#define FFMIN(a, b)
Definition: common.h:81
static const StreamType MISC_types[]
Definition: mpegts.c:726
uint16_t id
Definition: mpegts.c:586
static void set_pcr_pid(AVFormatContext *s, unsigned int programid, unsigned int pid)
Definition: mpegts.c:332
static int mp4_read_od(AVFormatContext *s, const uint8_t *buf, unsigned size, Mp4Descr *descr, int *descr_count, int max_descr_count)
Definition: mpegts.c:1475
#define TS_DVHS_PACKET_SIZE
Definition: mpegts.h:28
static int read_probe(AVProbeData *pd)
Definition: jvdec.c:55
AVStream * st
Definition: mpegts.c:229
#define MP4IODescrTag
Definition: isom.h:217
AVFormatContext * stream
Definition: mpegts.c:114
int skip_changes
Definition: mpegts.c:144
uint32_t av_crc(const AVCRC *ctx, uint32_t crc, const uint8_t *buffer, size_t length)
Calculate the CRC of a block.
Definition: crc.c:356
static void set_pmt_found(MpegTSContext *ts, unsigned int programid)
Definition: mpegts.c:323
int ocr_len
Definition: mpegts.h:80
static int mpegts_set_stream_info(AVStream *st, PESContext *pes, uint32_t stream_type, uint32_t prog_reg_desc)
Definition: mpegts.c:780
AVDictionary * metadata
Definition: avformat.h:916
static const uint8_t opus_stream_cnt[9]
Definition: mpegts.c:1564
static int parse_mp4_descr(MP4DescrParseContext *d, int64_t off, int len, int target_tag)
Definition: mpegts.c:1410
#define CHECK_COUNT
static int parse_MP4SLDescrTag(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1371
int mpeg2ts_compute_pcr
compute exact PCR for each transport stream packet
Definition: mpegts.c:128
static const AVClass mpegtsraw_class
Definition: mpegts.c:201
MpegTSSectionFilter section_filter
Definition: mpegts.c:97
static const uint8_t opus_coupled_stream_cnt[9]
Definition: mpegts.c:1560
#define CHECK_BLOCK
static uint64_t get_ts64(GetBitContext *gb, int bits)
Definition: mpegts.c:893
uint8_t sec_num
Definition: mpegts.c:588
int extended_stream_id
Definition: mpegts.c:237
preferred ID for MPEG-1/2 video decoding
Definition: avcodec.h:107
union MpegTSFilter::@172 u
int stream_type
Definition: mpegts.c:226
int auto_guess
if true, all pids are analyzed to find streams
Definition: mpegts.c:125
int raw_packet_size
raw packet size, including FEC if present
Definition: mpegts.c:116
static const StreamType ISO_types[]
Definition: mpegts.c:688
static int read_header(FFV1Context *f)
Definition: ffv1dec.c:623
int ts_id
Transport stream id.
Definition: avformat.h:1585
#define AV_DISPOSITION_VISUAL_IMPAIRED
stream for visual impaired audiences
Definition: avformat.h:811
Stream structure.
Definition: avformat.h:842
#define AVERROR_PATCHWELCOME
Not yet implemented in FFmpeg, patches welcome.
Definition: error.h:62
FAKE codec to indicate a MPEG-4 Systems stream (only used by libavformat)
Definition: avcodec.h:552
static av_unused int64_t mpegts_get_pcr(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
Definition: mpegts.c:2706
#define AV_LOG_INFO
Standard information.
Definition: log.h:187
#define TS_MAX_PACKET_SIZE
Definition: mpegts.h:30
uint8_t * dec_config_descr
Definition: mpegts.h:91
enum AVMediaType codec_type
Definition: avcodec.h:1510
unsigned int id
Definition: mpegts.c:103
#define MP4DecConfigDescrTag
Definition: isom.h:219
enum AVCodecID codec_id
Definition: avcodec.h:1519
static MpegTSFilter * mpegts_open_filter(MpegTSContext *ts, unsigned int pid, enum MpegTSFilterType type)
Definition: mpegts.c:443
AVBufferRef * av_buffer_alloc(int size)
Allocate an AVBuffer of the given size using av_malloc().
Definition: buffer.c:66
#define hex_dump_debug(class, buf, size)
Definition: internal.h:39
AVIOContext * pb
I/O context.
Definition: avformat.h:1315
static const StreamType METADATA_types[]
Definition: mpegts.c:746
int use_au_end
Definition: mpegts.h:73
static int parse_mp4_descr_arr(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1302
int resync_size
Definition: mpegts.c:149
uint8_t * data
The data buffer.
Definition: buffer.h:89
static void new_pes_packet(PESContext *pes, AVPacket *pkt)
Definition: mpegts.c:862
static int get_packet_size(const uint8_t *buf, int size)
Definition: mpegts.c:561
unsigned int codec_tag
fourcc (LSB first, so "ABCD" -> ('D'<<24) + ('C'<<16) + ('B'<<8) + 'A').
Definition: avcodec.h:1534
int ff_alloc_extradata(AVCodecContext *avctx, int size)
Allocate extradata with additional AV_INPUT_BUFFER_PADDING_SIZE at end which is always set to 0...
Definition: utils.c:2924
#define STREAM_TYPE_PRIVATE_DATA
Definition: mpeg.h:54
void * buf
Definition: avisynth_c.h:553
#define MAX_PES_HEADER_SIZE
Definition: mpegts.c:221
static int get8(const uint8_t **pp, const uint8_t *p_end)
Definition: mpegts.c:603
GLint GLenum type
Definition: opengl_enc.c:105
int extradata_size
Definition: avcodec.h:1618
#define MAX_LEVEL
Definition: mpegts.c:1258
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Definition: dict.c:69
#define MAX_PIDS_PER_PROGRAM
Definition: mpegts.c:101
static unsigned int get_bits1(GetBitContext *s)
Definition: get_bits.h:304
static int parse_pcr(int64_t *ppcr_high, int *ppcr_low, const uint8_t *packet)
Definition: mpegts.c:2474
int use_timestamps
Definition: mpegts.h:76
Describe the class of an AVClass context structure.
Definition: log.h:67
static void skip_bits(GetBitContext *s, int n)
Definition: get_bits.h:297
int index
Definition: gxfenc.c:89
static void pmt_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
Definition: mpegts.c:1829
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
Definition: opt.h:286
static int init_get_bits(GetBitContext *s, const uint8_t *buffer, int bit_size)
Initialize GetBitContext.
Definition: get_bits.h:410
static int analyze(const uint8_t *buf, int size, int packet_size, int *index, int probe)
Definition: mpegts.c:533
int avpriv_mpegts_parse_packet(MpegTSContext *ts, AVPacket *pkt, const uint8_t *buf, int len)
Definition: mpegts.c:2795
AVMediaType
Definition: avutil.h:191
refcounted data buffer API
static void mpegts_close_filter(MpegTSContext *ts, MpegTSFilter *filter)
Definition: mpegts.c:512
static const StreamType DESC_types[]
Definition: mpegts.c:753
This structure contains the data a format has to probe a file.
Definition: avformat.h:448
int use_idle
Definition: mpegts.h:77
SLConfigDescr sl
Definition: mpegts.c:242
int av_read_frame(AVFormatContext *s, AVPacket *pkt)
Return the next frame of a stream.
Definition: utils.c:1478
int dec_config_descr_len
Definition: mpegts.h:90
uint8_t * section_buf
Definition: mpegts.c:82
uint8_t tid
Definition: mpegts.c:585
AVDictionary * metadata
Definition: avformat.h:1212
void avpriv_report_missing_feature(void *avc, const char *msg,...) av_printf_format(2
Log a generic warning message about a missing feature.
#define MPEGTS_OPTIONS
Definition: mpegts.c:164
static int flags
Definition: cpu.c:47
unsigned int end_of_section_reached
Definition: mpegts.c:84
static void write_section_data(MpegTSContext *ts, MpegTSFilter *tss1, const uint8_t *buf, int buf_size, int is_start)
Assemble PES packets out of TS packets, and then call the "section_cb" function when they are complet...
Definition: mpegts.c:389
int ff_parse_mpeg2_descriptor(AVFormatContext *fc, AVStream *st, int stream_type, const uint8_t **pp, const uint8_t *desc_list_end, Mp4Descr *mp4_descr, int mp4_descr_count, int pid, MpegTSContext *ts)
Parse an MPEG-2 descriptor.
Definition: mpegts.c:1579
static void clear_programs(MpegTSContext *ts)
Definition: mpegts.c:285
int ffio_ensure_seekback(AVIOContext *s, int64_t buf_size)
Ensures that the requested seekback buffer size will be available.
Definition: aviobuf.c:810
const AVCRC * av_crc_get_table(AVCRCId crc_id)
Get an initialized standard CRC table.
Definition: crc.c:342
#define AVPROBE_SCORE_MAX
maximum score
Definition: avformat.h:460
A reference to a data buffer.
Definition: buffer.h:81
static const AVOption options[]
Definition: mpegts.c:167
full parsing and repack
Definition: avformat.h:774
AVFormatContext * stream
Definition: mpegts.c:228
int skip_clear
Definition: mpegts.c:145
Main libavformat public API header.
static void pat_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
Definition: mpegts.c:2000
int ff_mp4_read_descr(AVFormatContext *fc, AVIOContext *pb, int *tag)
Definition: isom.c:417
static void filter(MpegAudioContext *s, int ch, const short *samples, int incr)
static const AVClass mpegts_class
Definition: mpegts.c:182
int use_rand_acc_pt
Definition: mpegts.h:74
int data_index
Definition: mpegts.c:233
if(ret< 0)
Definition: vf_mcdeint.c:280
int pts_wrap_behavior
Options for behavior, when a wrap is detected.
Definition: avformat.h:1143
int ffio_init_context(AVIOContext *s, unsigned char *buffer, int buffer_size, int write_flag, void *opaque, int(*read_packet)(void *opaque, uint8_t *buf, int buf_size), int(*write_packet)(void *opaque, uint8_t *buf, int buf_size), int64_t(*seek)(void *opaque, int64_t offset, int whence))
Definition: aviobuf.c:72
int64_t start_time
Decoding: pts of the first frame of the stream in presentation order, in stream time base...
Definition: avformat.h:894
static double c[64]
unsigned crc
Definition: mpegts.c:80
int disposition
AV_DISPOSITION_* bit field.
Definition: avformat.h:905
uint8_t header[MAX_PES_HEADER_SIZE]
Definition: mpegts.c:240
static void reset_pes_packet_state(PESContext *pes)
Definition: mpegts.c:853
#define MAX_PES_PAYLOAD
Definition: mpegts.c:45
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
Definition: avpacket.c:49
int pmt_found
have we found pmt for this program
Definition: mpegts.c:108
#define AV_PKT_FLAG_CORRUPT
The packet content is corrupted.
Definition: avcodec.h:1470
struct AVInputFormat * iformat
The input container format.
Definition: avformat.h:1285
PESCallback * pes_cb
Definition: mpegts.c:68
static int skip_identical(const SectionHeader *h, MpegTSSectionFilter *tssf)
Definition: mpegts.c:592
#define AV_INPUT_BUFFER_PADDING_SIZE
Required number of additionally allocated bytes at the end of the input bitstream for decoding...
Definition: avcodec.h:636
static MpegTSFilter * mpegts_open_section_filter(MpegTSContext *ts, unsigned int pid, SectionCallback *section_cb, void *opaque, int check_crc)
Definition: mpegts.c:466
FAKE codec to indicate a raw MPEG-2 TS stream (only used by libavformat)
Definition: avcodec.h:550
unsigned int nb_pids
Definition: mpegts.c:104
void * opaque
Definition: mpegts.c:69
static int get16(const uint8_t **pp, const uint8_t *p_end)
Definition: mpegts.c:616
#define av_free(p)
Mp4Descr * active_descr
Definition: mpegts.c:1263
AVPacket * pkt
packet containing Audio/Video data
Definition: mpegts.c:140
int len
#define PAT_PID
Definition: mpegts.h:36
void * priv_data
Format private data.
Definition: avformat.h:1301
int pcr_pid
Definition: avformat.h:1216
int64_t last_pos
to detect seek
Definition: mpegts.c:142
int timestamp_res
Definition: mpegts.h:78
#define AV_OPT_FLAG_READONLY
The option may not be set through the AVOptions API, only read.
Definition: opt.h:301
#define PES_HEADER_SIZE
Definition: mpegts.c:220
static void add_pid_to_pmt(MpegTSContext *ts, unsigned int programid, unsigned int pid)
Definition: mpegts.c:305
int64_t pts
Definition: mpegts.c:238
int use_padding
Definition: mpegts.h:75
uint8_t pi<< 24) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0f/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_U8, uint8_t,(*(constuint8_t *) pi-0x80)*(1.0/(1<< 7))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S16, int16_t,(*(constint16_t *) pi >>8)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0f/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S16, int16_t,*(constint16_t *) pi *(1.0/(1<< 15))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_S32, int32_t,(*(constint32_t *) pi >>24)+0x80) CONV_FUNC_GROUP(AV_SAMPLE_FMT_FLT, float, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0f/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_DBL, double, AV_SAMPLE_FMT_S32, int32_t,*(constint32_t *) pi *(1.0/(1U<< 31))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_FLT, float, av_clip_uint8(lrintf(*(constfloat *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_FLT, float, av_clip_int16(lrintf(*(constfloat *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_FLT, float, av_clipl_int32(llrintf(*(constfloat *) pi *(1U<< 31)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_U8, uint8_t, AV_SAMPLE_FMT_DBL, double, av_clip_uint8(lrint(*(constdouble *) pi *(1<< 7))+0x80)) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S16, int16_t, AV_SAMPLE_FMT_DBL, double, av_clip_int16(lrint(*(constdouble *) pi *(1<< 15)))) CONV_FUNC_GROUP(AV_SAMPLE_FMT_S32, int32_t, AV_SAMPLE_FMT_DBL, double, av_clipl_int32(llrint(*(constdouble *) pi *(1U<< 31))))#defineSET_CONV_FUNC_GROUP(ofmt, ifmt) staticvoidset_generic_function(AudioConvert *ac){}voidff_audio_convert_free(AudioConvert **ac){if(!*ac) return;ff_dither_free(&(*ac) ->dc);av_freep(ac);}AudioConvert *ff_audio_convert_alloc(AVAudioResampleContext *avr, enumAVSampleFormatout_fmt, enumAVSampleFormatin_fmt, intchannels, intsample_rate, intapply_map){AudioConvert *ac;intin_planar, out_planar;ac=av_mallocz(sizeof(*ac));if(!ac) returnNULL;ac->avr=avr;ac->out_fmt=out_fmt;ac->in_fmt=in_fmt;ac->channels=channels;ac->apply_map=apply_map;if(avr->dither_method!=AV_RESAMPLE_DITHER_NONE &&av_get_packed_sample_fmt(out_fmt)==AV_SAMPLE_FMT_S16 &&av_get_bytes_per_sample(in_fmt)>2){ac->dc=ff_dither_alloc(avr, out_fmt, in_fmt, channels, sample_rate, apply_map);if(!ac->dc){av_free(ac);returnNULL;}returnac;}in_planar=ff_sample_fmt_is_planar(in_fmt, channels);out_planar=ff_sample_fmt_is_planar(out_fmt, channels);if(in_planar==out_planar){ac->func_type=CONV_FUNC_TYPE_FLAT;ac->planes=in_planar?ac->channels:1;}elseif(in_planar) ac->func_type=CONV_FUNC_TYPE_INTERLEAVE;elseac->func_type=CONV_FUNC_TYPE_DEINTERLEAVE;set_generic_function(ac);if(ARCH_AARCH64) ff_audio_convert_init_aarch64(ac);if(ARCH_ARM) ff_audio_convert_init_arm(ac);if(ARCH_X86) ff_audio_convert_init_x86(ac);returnac;}intff_audio_convert(AudioConvert *ac, AudioData *out, AudioData *in){intuse_generic=1;intlen=in->nb_samples;intp;if(ac->dc){av_log(ac->avr, AV_LOG_TRACE,"%dsamples-audio_convert:%sto%s(dithered)\n", len, av_get_sample_fmt_name(ac->in_fmt), av_get_sample_fmt_name(ac->out_fmt));returnff_convert_dither(ac-> out
void SetServiceCallback(void *opaque, int ret)
Definition: mpegts.c:74
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
Definition: avcodec.h:1422
int bit_rate
Total stream bitrate in bit/s, 0 if not available.
Definition: avformat.h:1375
#define av_freep(p)
const char * name
A comma separated list of short names for the format.
Definition: avformat.h:628
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
Definition: aviobuf.c:301
static MpegTSFilter * mpegts_open_pcr_filter(MpegTSContext *ts, unsigned int pid)
Definition: mpegts.c:507
int degr_prior_len
Definition: mpegts.h:83
static int parse_MP4IODescrTag(MP4DescrParseContext *d, int64_t off, int len)
Definition: mpegts.c:1313
static void m4sl_cb(MpegTSFilter *filter, const uint8_t *section, int section_len)
Definition: mpegts.c:1491
AVIOContext pb
Definition: mpegts.c:1261
int stream_index
Definition: avcodec.h:1425
MpegTSFilterType
Definition: mpegts.c:56
#define MAX_MP4_DESCR_COUNT
Definition: mpegts.c:47
#define MKTAG(a, b, c, d)
Definition: common.h:330
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
Definition: avformat.h:907
static void mpegts_find_stream_type(AVStream *st, uint32_t stream_type, const StreamType *types)
Definition: mpegts.c:762
void avpriv_mpegts_parse_close(MpegTSContext *ts)
Definition: mpegts.c:2820
int au_len
Definition: mpegts.h:81
int request_probe
stream probing state -1 -> probing finished 0 -> no probing requested rest -> perform probing with re...
Definition: avformat.h:1080
uint64_t_TMPL AV_WL64 unsigned int_TMPL AV_RL32
Definition: bytestream.h:87
This structure stores compressed data.
Definition: avcodec.h:1400
void * av_mallocz(size_t size)
Allocate a block of size bytes with alignment suitable for all memory accesses (including vectors if ...
Definition: mem.c:252
uint32_t stream_type
Definition: mpegts.c:683
static char * getstr8(const uint8_t **pp, const uint8_t *p_end)
Definition: mpegts.c:631
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
Definition: avcodec.h:1416
A dummy ID pointing at the start of subtitle codecs.
Definition: avcodec.h:509
#define FFMAX3(a, b, c)
Definition: common.h:80
#define AV_NOPTS_VALUE
Undefined timestamp value.
Definition: avutil.h:240
#define av_unused
Definition: attributes.h:118
AVProgram ** programs
Definition: avformat.h:1425
#define MP4SLDescrTag
Definition: isom.h:221
int fix_teletext_pts
fix dvb teletext pts
Definition: mpegts.c:131
#define NB_PID_MAX
Definition: mpegts.h:32
static int handle_packets(MpegTSContext *ts, int64_t nb_packets)
Definition: mpegts.c:2385
#define SDT_TID
Definition: mpegts.h:43
void SectionCallback(MpegTSFilter *f, const uint8_t *buf, int len)
Definition: mpegts.c:72
const char * name
Definition: opengl_enc.c:103
AVStream * sub_st
stream for the embedded AC3 stream in HDMV TrueHD
Definition: mpegts.c:230
MpegTSContext * ts
Definition: mpegts.c:227
static int mp4_read_iods(AVFormatContext *s, const uint8_t *buf, unsigned size, Mp4Descr *descr, int *descr_count, int max_descr_count)
Definition: mpegts.c:1459