1 /*
2 * MPEG-1/2 demuxer
3 * Copyright (c) 2000, 2001, 2002 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
25
26 #if CONFIG_VOBSUB_DEMUXER
30 #endif
31
33
34 /*********************************************/
35 /* demux code */
36
37 #define MAX_SYNC_SIZE 100000
38
40 {
41 int pes1;
42 int pes2 = (p[3] & 0xC0) == 0x80 &&
43 (p[4] & 0xC0) != 0x40 &&
44 ((p[4] & 0xC0) == 0x00 ||
45 (p[4] & 0xC0) >> 2 == (p[6] & 0xF0));
46
47 for (p += 3; p < end && *p == 0xFF; p++) ;
48 if ((*p & 0xC0) == 0x40)
49 p += 2;
50
51 if ((*p & 0xF0) == 0x20)
52 pes1 = p[0] & p[2] & p[4] & 1;
53 else if ((*p & 0xF0) == 0x30)
54 pes1 = p[0] & p[2] & p[4] & p[5] & p[7] & p[9] & 1;
55 else
56 pes1 = *p == 0x0F;
57
58 return pes1 || pes2;
59 }
60
62 {
63 return (buf[1] & 0xC0) == 0x40 || (buf[1] & 0xF0) == 0x20;
64 }
65
67 {
68 uint32_t code = -1;
69 int i;
70 int sys = 0, pspack = 0, priv1 = 0, vid = 0;
71 int audio = 0, invalid = 0, score = 0;
72 int endpes = 0;
73
75 code = (code << 8) + p->
buf[i];
76 if ((code & 0xffffff00) == 0x100) {
77 int len = p->
buf[i + 1] << 8 | p->
buf[i + 2];
80
82 sys++;
84 pspack++;
85 else if ((code & 0xf0) ==
VIDEO_ID && pes) {
87 vid++;
88 }
89 // skip pes payload to avoid start code emulation for private
90 // and audio streams
91 else if ((code & 0xe0) ==
AUDIO_ID && pes) {audio++; i+=
len;}
93 else if (code == 0x1fd && pes) vid++; //VC1
94
95 else if ((code & 0xf0) ==
VIDEO_ID && !pes) invalid++;
96 else if ((code & 0xe0) ==
AUDIO_ID && !pes) invalid++;
98 }
99 }
100
101 if (vid + audio > invalid + 1) /* invalid VDR files nd short PES streams */
103
104 // av_log(NULL, AV_LOG_ERROR, "vid:%d aud:%d sys:%d pspack:%d invalid:%d size:%d \n",
105 // vid, audio, sys, pspack, invalid, p->buf_size);
106
107 if (sys > invalid && sys * 9 <= pspack * 10)
110 if (pspack > invalid && (priv1 + vid + audio) * 10 >= pspack * 9)
113 if ((!!vid ^ !!audio) && (audio > 4 || vid > 1) && !sys &&
114 !pspack && p->
buf_size > 2048 && vid + audio > invalid)
/* PES stream */
117
118 // 02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1
119 // mp3_misidentified_2.mp3 has sys:0 priv1:0 pspack:0 vid:0 audio:6
120 // Have\ Yourself\ a\ Merry\ Little\ Christmas.mp3 0 0 0 5 0 1 len:21618
121 return score;
122 }
123
131 #if CONFIG_VOBSUB_DEMUXER
134 char *sub_name;
135 #endif
137
139 {
143
146
148 if (!memcmp("IMKH", buffer, 4)) {
150 } else if (!memcmp("Sofdec", buffer, 6)) {
152 } else
154
155 /* no need to do more */
156 return 0;
157 }
158
160 {
162
165
167 }
168
171 {
172 unsigned int state, v;
174
175 state = *header_state;
176 n = *size_ptr;
177 while (n > 0) {
179 break;
181 n--;
182 if (state == 0x000001) {
183 state = ((state << 8) | v) & 0xffffff;
185 goto found;
186 }
187 state = ((state << 8) | v) & 0xffffff;
188 }
189 val = -1;
190
191 found:
192 *header_state =
state;
195 }
196
197 /**
198 * Extract stream types from a program stream map
199 * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35
200 *
201 * @return number of bytes occupied by PSM in the bitstream
202 */
204 {
205 int psm_length, ps_info_length, es_map_length;
206
211
212 /* skip program_stream_info */
215 /* Ignore es_map_length, trust psm_length */
216 es_map_length = psm_length - ps_info_length - 10;
217
218 /* at least one es available? */
219 while (es_map_length >= 4) {
221 unsigned char es_id =
avio_r8(pb);
223
224 /* remember mapping from stream id to stream type */
226 /* skip program_stream_info */
228 es_map_length -= 4 + es_info_length;
229 }
231 return 2 + psm_length;
232 }
233
234 /* read the next PES header. Return its position in ppos
235 * (if not NULL), and its start code, pts and dts.
236 */
238 int64_t *ppos, int *pstart_code,
239 int64_t *ppts, int64_t *pdts)
240 {
243 int pes_ext, ext2_len, id_ext, skip;
246
247 error_redo:
249 redo:
250 /* next start code (should be immediately after) */
255 if (startcode < 0) {
258 // FIXME we should remember header_state
260 }
261
263 goto redo;
265 goto redo;
268 goto redo;
269 }
272 /* Need to detect whether this from a DVD or a 'Sofdec' stream */
274 int bytesread = 0;
276
277 if (ps2buf) {
279
280 if (bytesread != len) {
282 } else {
284 if (len >= 6)
285 p = memchr(ps2buf, 'S', len - 5);
286
287 if (p)
288 m->
sofdec = !memcmp(p+1,
"ofdec", 5);
289
291
293 if (len == 980 && ps2buf[0] == 0) {
294 /* PCI structure? */
295 uint32_t startpts =
AV_RB32(ps2buf + 0x0d);
296 uint32_t endpts =
AV_RB32(ps2buf + 0x11);
297 uint8_t hours = ((ps2buf[0x19] >> 4) * 10) + (ps2buf[0x19] & 0x0f);
298 uint8_t mins = ((ps2buf[0x1a] >> 4) * 10) + (ps2buf[0x1a] & 0x0f);
299 uint8_t secs = ((ps2buf[0x1b] >> 4) * 10) + (ps2buf[0x1b] & 0x0f);
300
301 m->
dvd = (hours <= 23 &&
302 mins <= 59 &&
303 secs <= 59 &&
304 (ps2buf[0x19] & 0x0f) < 10 &&
305 (ps2buf[0x1a] & 0x0f) < 10 &&
306 (ps2buf[0x1b] & 0x0f) < 10 &&
307 endpts >= startpts);
308 } else if (len == 1018 && ps2buf[0] == 1) {
309 /* DSI structure? */
310 uint8_t hours = ((ps2buf[0x1d] >> 4) * 10) + (ps2buf[0x1d] & 0x0f);
311 uint8_t mins = ((ps2buf[0x1e] >> 4) * 10) + (ps2buf[0x1e] & 0x0f);
312 uint8_t secs = ((ps2buf[0x1f] >> 4) * 10) + (ps2buf[0x1f] & 0x0f);
313
314 m->
dvd = (hours <= 23 &&
315 mins <= 59 &&
316 secs <= 59 &&
317 (ps2buf[0x1d] & 0x0f) < 10 &&
318 (ps2buf[0x1e] & 0x0f) < 10 &&
319 (ps2buf[0x1f] & 0x0f) < 10);
320 }
321 }
322 }
323
325
326 /* If this isn't a DVD packet or no memory
327 * could be allocated, just ignore it.
328 * If we did, move back to the start of the
329 * packet (plus 'length' field) */
331 /* Skip back failed.
332 * This packet will be lost but that can't be helped
333 * if we can't skip back
334 */
335 goto redo;
336 }
337 } else {
338 /* No memory */
340 goto redo;
341 }
342 }
else if (!m->
dvd) {
345 goto redo;
346 }
347 }
350 goto redo;
351 }
352
353 /* find matching stream */
354 if (!((startcode >= 0x1c0 && startcode <= 0x1df) ||
355 (startcode >= 0x1e0 && startcode <= 0x1ef) ||
356 (startcode == 0x1bd) ||
358 (startcode == 0x1fd)))
359 goto redo;
360 if (ppos) {
362 }
364 pts =
367 {
368 /* stuffing */
369 for (;;) {
370 if (len < 1)
371 goto error_redo;
373 len--;
374 /* XXX: for MPEG-1, should test only bit 7 */
375 if (c != 0xff)
376 break;
377 }
378 if ((c & 0xc0) == 0x40) {
379 /* buffer scale & size */
382 len -= 2;
383 }
384 if ((c & 0xe0) == 0x20) {
385 dts =
387 len -= 4;
388 if (c & 0x10) {
390 len -= 5;
391 }
392 } else if ((c & 0xc0) == 0x80) {
393 /* mpeg 2 PES */
396 len -= 2;
397 if (header_len > len)
398 goto error_redo;
399 len -= header_len;
400 if (flags & 0x80) {
402 header_len -= 5;
403 if (flags & 0x40) {
405 header_len -= 5;
406 }
407 }
408 if (flags & 0x3f && header_len == 0) {
409 flags &= 0xC0;
411 }
412 if (flags & 0x01) { /* PES extension */
414 header_len--;
415 /* Skip PES private data, program packet sequence counter
416 * and P-STD buffer */
417 skip = (pes_ext >> 4) & 0xb;
418 skip += skip & 0x9;
419 if (pes_ext & 0x40 || skip > header_len) {
421 pes_ext = skip = 0;
422 }
424 header_len -= skip;
425
426 if (pes_ext & 0x01) { /* PES extension 2 */
428 header_len--;
429 if ((ext2_len & 0x7f) > 0) {
431 if ((id_ext & 0x80) == 0)
432 startcode = ((startcode & 0xff) << 8) | id_ext;
433 header_len--;
434 }
435 }
436 }
437 if (header_len < 0)
438 goto error_redo;
440 } else if (c != 0xf)
441 goto redo;
442 }
443
446 len--;
447 }
448 if (len < 0)
449 goto error_redo;
451 int i;
458 }
459 }
460 }
461
462 *pstart_code = startcode;
464 *pdts = dts;
466 }
467
470 {
473 int len, startcode, i, es_type, ret;
474 int lpcm_header_len = -1; //Init to suppress warning
475 int request_probe= 0;
478 int64_t
pts, dts, dummy_pos;
// dummy_pos is needed for the index building to work
479
480 redo:
482 if (len < 0)
484
485 if (startcode >= 0x80 && startcode <= 0xcf) {
486 if (len < 4)
487 goto skip;
488
489 /* audio: skip header */
492 len -= 3;
493 if (startcode >= 0xb0 && startcode <= 0xbf) {
494 /* MLP/TrueHD audio has a 4-byte header */
496 len--;
497 }
498 }
499
500 /* now find stream */
503 if (st->
id == startcode)
504 goto found;
505 }
506
530 }
else if (m->
imkh_cctv && es_type == 0x91) {
533 } else if (startcode >= 0x1e0 && startcode <= 0x1ef) {
534 static const unsigned char avs_seqh[4] = { 0, 0, 1, 0xb0 };
535 unsigned char buf[8];
536
539 if (!memcmp(buf, avs_seqh, 4) && (buf[6] != 0 || buf[7] != 1))
541 else
542 request_probe= 1;
547 } else if (startcode >= 0x1c0 && startcode <= 0x1df) {
551 // Auto-detect AC-3
552 request_probe = 50;
553 }
else if (m->
imkh_cctv && startcode == 0x1c0 && len > 80) {
555 request_probe = 50;
556 } else {
559 request_probe = 25;
560 }
561 } else if (startcode >= 0x80 && startcode <= 0x87) {
564 } else if ((startcode >= 0x88 && startcode <= 0x8f) ||
565 (startcode >= 0x98 && startcode <= 0x9f)) {
566 /* 0x90 - 0x97 is reserved for SDDS in DVD specs */
569 } else if (startcode >= 0xa0 && startcode <= 0xaf) {
571 if (lpcm_header_len == 6 || startcode == 0xa1) {
573 } else {
575 }
576 } else if (startcode >= 0xb0 && startcode <= 0xbf) {
579 } else if (startcode >= 0xc0 && startcode <= 0xcf) {
580 /* Used for both AC-3 and E-AC-3 in EVOB files */
583 } else if (startcode >= 0x20 && startcode <= 0x3f) {
586 } else if (startcode >= 0xfd55 && startcode <= 0xfd5f) {
589 } else {
590 skip:
591 /* skip packet */
593 goto redo;
594 }
595 /* no stream found: add a new stream */
597 if (!st)
598 goto skip;
607 }
610
611 found:
613 goto skip;
614 if (startcode >= 0xa0 && startcode <= 0xaf) {
616 if (len < 6)
617 goto skip;
619 len -=6;
620 }
621 }
623
626 pkt->
pos = dummy_pos;
628
633
634 return (ret < 0) ? ret : 0;
635 }
636
638 int64_t *ppos, int64_t pos_limit)
639 {
641 int64_t pos,
pts, dts;
642
643 pos = *ppos;
646
647 for (;;) {
649 if (len < 0) {
653 }
654 if (startcode == s->
streams[stream_index]->
id &&
656 break;
657 }
659 }
662 pos, dts, dts / 90000.0);
663 *ppos = pos;
664 return dts;
665 }
666
676 };
677
678 #if CONFIG_VOBSUB_DEMUXER
679
680 #define REF_STRING "# VobSub index file,"
681 #define MAX_LINE_SIZE 2048
682
684 {
685 if (!strncmp(p->
buf, REF_STRING,
sizeof(REF_STRING) - 1))
687 return 0;
688 }
689
691 {
692 int i, ret = 0, header_parsed = 0, langidx = 0;
694 size_t fname_len;
695 char *header_str;
697 int64_t delay = 0;
699 int stream_id = -1;
700 char id[64] = {0};
703
704 if (!vobsub->sub_name) {
705 char *ext;
707 if (!vobsub->sub_name) {
710 }
711
712 fname_len = strlen(vobsub->sub_name);
713 ext = vobsub->sub_name - 3 + fname_len;
714 if (fname_len < 4 || *(ext - 1) != '.') {
716 "to guess the associated .SUB file\n");
719 }
720 memcpy(ext, !strncmp(ext, "IDX", 3) ? "SUB" : "sub", 3);
722 }
723
727 }
728
730 if (!vobsub->sub_ctx) {
733 }
734
737
739 if (ret < 0) {
742 }
743
748
749 if (!len)
750 break;
751
752 line[strcspn(line, "\r\n")] = 0;
753
754 if (!strncmp(line, "id:", 3)) {
755 if (sscanf(line, "id: %63[^,], index: %u", id, &stream_id) != 2) {
757 "assuming 'id: und, index: 0'\n", line);
758 strcpy(id, "und");
759 stream_id = 0;
760 }
761
766 }
767
768 header_parsed = 1;
769 alt[0] = '0円';
770 /* We do not create the stream immediately to avoid adding empty
771 * streams. See the following timestamp entry. */
772
774
775 } else if (!strncmp(line, "timestamp:", 10)) {
778 int64_t pos, timestamp;
779 const char *p = line + 10;
780
781 if (stream_id == -1) {
785 }
786
787 if (!st || st->
id != stream_id) {
789 if (!st) {
792 }
798 if (alt[0])
800 }
801
802 if (sscanf(p, "%02d:%02d:%02d:%03d, filepos: %"SCNx64,
803 &hh, &mm, &ss, &ms, &pos) != 5) {
805 "abort parsing\n", line);
808 }
809 timestamp = (hh*3600LL + mm*60LL +
ss) * 1000LL + ms + delay;
811
813 if (!sub) {
816 }
818 sub->
pts = timestamp;
820
821 } else if (!strncmp(line, "alt:", 4)) {
822 const char *p = line + 4;
823
824 while (*p == ' ')
825 p++;
828 header_parsed = 1;
829
830 } else if (!strncmp(line, "delay:", 6)) {
831 int sign = 1, hh = 0, mm = 0,
ss = 0, ms = 0;
832 const char *p = line + 6;
833
834 while (*p == ' ')
835 p++;
836 if (*p == '-' || *p == '+') {
837 sign = *p == '-' ? -1 : 1;
838 p++;
839 }
840 sscanf(p,
"%d:%d:%d:%d", &hh, &mm, &
ss, &ms);
841 delay = ((hh*3600LL + mm*60LL +
ss) * 1000LL + ms) * sign;
842
843 } else if (!strncmp(line, "langidx:", 8)) {
844 const char *p = line + 8;
845
846 if (sscanf(p, "%d", &langidx) != 1)
848
849 } else if (!header_parsed) {
850 if (line[0] && line[0] != '#')
852 }
853 }
854
857
860 vobsub->q[i].keep_duplicates = 1;
862 }
863
868 }
874 }
876
878 return ret;
879 }
880
882 {
886 int ret, psize, total_read = 0, i;
888
889 int64_t min_ts = INT64_MAX;
890 int sid = 0;
893 int64_t ts;
896 if (ts < min_ts) {
897 min_ts = ts;
898 sid = i;
899 }
900 }
901 q = &vobsub->q[sid];
903 if (ret < 0)
904 return ret;
905
906 /* compute maximum packet size using the next packet position. This is
907 * useful when the len in the header is non-sense */
910 } else {
912 psize = fsize < 0 ? 0xffff : fsize - idx_pkt.
pos;
913 }
914
916
920
921 do {
922 int n, to_read, startcode;
924 int64_t old_pos =
avio_tell(pb), new_pos;
925 int pkt_size;
926
928 if (ret < 0) {
929 if (pkt->
size)
// raise packet even if incomplete
930 break;
932 }
933 to_read = ret & 0xffff;
935 pkt_size = ret + (new_pos - old_pos);
936
937 /* this prevents reads above the current packet */
938 if (total_read + pkt_size > psize)
939 break;
940 total_read += pkt_size;
941
942 /* the current chunk doesn't match the stream index (unlikely) */
944 break;
945
947 if (ret < 0)
949
951 if (n < to_read)
952 pkt->
size -= to_read -
n;
953 } while (total_read < psize);
954
958
960 return 0;
961
965 return ret;
966 }
967
969 int64_t min_ts, int64_t ts, int64_t max_ts,
int flags)
970 {
972
973 /* Rescale requested timestamps based on the first stream (timebase is the
974 * same for all subtitles stream within a .idx/.sub). Rescaling is done just
975 * like in avformat_seek_file(). */
976 if (stream_index == -1 && s->
nb_streams != 1) {
977 int i, ret = 0;
984 time_base.
num * (int64_t)AV_TIME_BASE,
988 min_ts, ts, max_ts, flags);
989 if (r < 0)
991 }
992 return ret;
993 }
994
995 if (stream_index == -1) // only 1 stream
996 stream_index = 0;
998 min_ts, ts, max_ts, flags);
999 }
1000
1002 {
1003 int i;
1005
1008 if (vobsub->sub_ctx)
1010 return 0;
1011 }
1012
1016 };
1017
1018 static const AVClass vobsub_demuxer_class = {
1023 };
1024
1032 .read_seek2 = vobsub_read_seek,
1035 .extensions = "idx",
1036 .priv_class = &vobsub_demuxer_class,
1037 };
1038 #endif
const char const char void * val
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
int64_t avio_size(AVIOContext *s)
Get the filesize.
void av_bprintf(AVBPrint *buf, const char *fmt,...)
#define STREAM_TYPE_AUDIO_MPEG2
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.
#define AV_LOG_WARNING
Something somehow does not look correct.
#define LIBAVUTIL_VERSION_INT
int64_t pos
byte position in stream, -1 if unknown
enum AVCodecID codec_id
Specific type of the encoded data (the codec used).
int index
stream index in AVFormatContext
int64_t avio_seek(AVIOContext *s, int64_t offset, int whence)
fseek() equivalent for AVIOContext.
void ff_subtitles_queue_clean(FFDemuxSubtitlesQueue *q)
Remove and destroy all the subtitles packets.
int64_t avio_skip(AVIOContext *s, int64_t offset)
Skip given number of bytes forward.
sort by position, then timestamps
static int mpegps_read_pes_header(AVFormatContext *s, int64_t *ppos, int *pstart_code, int64_t *ppts, int64_t *pdts)
#define STREAM_TYPE_VIDEO_MPEG1
unsigned int avio_rb16(AVIOContext *s)
int ctx_flags
Flags signalling stream properties.
static int mpegps_read_header(AVFormatContext *s)
int av_bprint_finalize(AVBPrint *buf, char **ret_str)
Finalize a print buffer.
const char * class_name
The name of the class; usually it is the same name as the context structure type to which the AVClass...
#define av_assert0(cond)
assert() equivalent, that is always enabled.
Opaque data information usually continuous.
int ff_subtitles_queue_read_packet(FFDemuxSubtitlesQueue *q, AVPacket *pkt)
Generic read_packet() callback for subtitles demuxers using this queue system.
#define AV_LOG_TRACE
Extremely verbose debugging, useful for libav* development.
unsigned int avio_rb32(AVIOContext *s)
static av_cold int end(AVCodecContext *avctx)
enum AVStreamParseType need_parsing
int id
Format-specific stream ID.
AVStream * avformat_new_stream(AVFormatContext *s, const AVCodec *c)
Add a new stream to a media file.
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
AVStream ** streams
A list of all streams in the file.
#define SYSTEM_HEADER_START_CODE
AVFormatContext * avformat_alloc_context(void)
Allocate an AVFormatContext.
#define AVERROR_EOF
End of file.
static av_cold int read_close(AVFormatContext *ctx)
#define AV_LOG_VERBOSE
Detailed information.
static av_always_inline int64_t avio_tell(AVIOContext *s)
ftell() equivalent for AVIOContext.
static const uint8_t header[24]
static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, int64_t *ppos, int64_t pos_limit)
const OptionDef options[]
uint64_t channel_layout
Audio only.
int avio_read(AVIOContext *s, unsigned char *buf, int size)
Read size bytes from AVIOContext into buf.
#define STREAM_TYPE_AUDIO_AAC
int64_t av_rescale_q(int64_t a, AVRational bq, AVRational cq)
Rescale a 64-bit integer by 2 rational numbers.
AVCodecID
Identify the syntax and semantics of the bitstream.
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
#define AV_BPRINT_SIZE_UNLIMITED
#define NULL_IF_CONFIG_SMALL(x)
Return NULL if CONFIG_SMALL is true, otherwise the argument without modification. ...
static int check_pack_header(const uint8_t *buf)
void av_bprint_init(AVBPrint *buf, unsigned size_init, unsigned size_max)
#define AV_LOG_DEBUG
Stuff which is only useful for libav* developers.
preferred ID for decoding MPEG audio layer 1, 2 or 3
enum AVMediaType codec_type
General type of the encoded data.
simple assert() macros that are a bit more flexible than ISO C assert().
static int64_t ff_parse_pes_pts(const uint8_t *buf)
Parse MPEG-PES five-byte timestamp.
size_t av_strlcpy(char *dst, const char *src, size_t size)
Copy the string src to dst, but no more than size - 1 bytes, and null-terminate dst.
int extradata_size
Size of the extradata content in bytes.
int avio_r8(AVIOContext *s)
int buf_size
Size of buf except extra allocated bytes.
unsigned char * buf
Buffer must have AVPROBE_PADDING_SIZE of extra allocated bytes filled with zero.
unsigned int nb_streams
Number of elements in AVFormatContext.streams.
AVInputFormat * av_find_input_format(const char *short_name)
Find AVInputFormat based on the short name of the input format.
int seekable
A combination of AVIO_SEEKABLE_ flags or 0 when the stream is not seekable.
char filename[1024]
input or output filename
#define AV_TIME_BASE
Internal time base represented as integer.
#define STREAM_TYPE_VIDEO_H264
static int find_next_start_code(AVIOContext *pb, int *size_ptr, int32_t *header_state)
static long mpegps_psm_parse(MpegDemuxContext *m, AVIOContext *pb)
Extract stream types from a program stream map According to ISO/IEC 13818-1 ('MPEG-2 Systems') table ...
static int av_bprint_is_complete(const AVBPrint *buf)
Test if the print buffer is complete (not truncated).
int ff_get_line(AVIOContext *s, char *buf, int maxlen)
Read a whole line of text from AVIOContext.
int64_t av_rescale_rnd(int64_t a, int64_t b, int64_t c, enum AVRounding rnd)
Rescale a 64-bit integer with specified rounding.
preferred ID for MPEG-1/2 video decoding
#define FF_ARRAY_ELEMS(a)
#define STREAM_TYPE_VIDEO_MPEG4
unsigned char psm_es_type[256]
static int read_header(FFV1Context *f)
static int read_packet(void *opaque, uint8_t *buf, int buf_size)
#define AVIO_SEEKABLE_NORMAL
Seeking works like for a local file.
static AVInputFormat * iformat
int ff_subtitles_queue_seek(FFDemuxSubtitlesQueue *q, AVFormatContext *s, int stream_index, int64_t min_ts, int64_t ts, int64_t max_ts, int flags)
Update current_sub_idx to emulate a seek.
char * av_strdup(const char *s)
Duplicate a string.
int debug
Flags to enable debugging.
#define AV_TIME_BASE_Q
Internal time base represented as fractional value.
AVIOContext * pb
I/O context.
static AVRational av_make_q(int num, int den)
Create an AVRational.
void av_packet_unref(AVPacket *pkt)
Wipe the packet.
int av_dict_set(AVDictionary **pm, const char *key, const char *value, int flags)
Set the given entry in *pm, overwriting an existing entry.
Describe the class of an AVClass context structure.
Rational number (pair of numerator and denominator).
#define AV_OPT_FLAG_DECODING_PARAM
a generic parameter which can be set by the user for demuxing or decoding
#define PROGRAM_STREAM_MAP
#define STREAM_TYPE_AUDIO_AC3
This structure contains the data a format has to probe a file.
static int64_t get_pts(AVIOContext *pb, int c)
static int64_t pts
Global timestamp for the audio frames.
#define AVERROR_DEMUXER_NOT_FOUND
Demuxer not found.
static int mpegps_read_packet(AVFormatContext *s, AVPacket *pkt)
int sample_rate
Audio only.
AVPacket * subs
array of subtitles packets
int disposition
AV_DISPOSITION_* bit field.
int av_grow_packet(AVPacket *pkt, int grow_by)
Increase packet size, correctly zeroing padding.
int current_sub_idx
current position for the read packet callback
void av_init_packet(AVPacket *pkt)
Initialize optional fields of a packet with default values.
static int check_pes(const uint8_t *p, const uint8_t *end)
void avformat_close_input(AVFormatContext **s)
Close an opened input AVFormatContext.
Flag telling rescaling functions to pass INT64_MIN/MAX through unchanged, avoiding special cases for ...
#define STREAM_TYPE_VIDEO_MPEG2
void * priv_data
Format private data.
int avformat_open_input(AVFormatContext **ps, const char *url, AVInputFormat *fmt, AVDictionary **options)
Open an input stream and read the header.
uint8_t * extradata
Extra binary data needed for initializing the decoder, codec-dependent.
int64_t dts
Decompression timestamp in AVStream->time_base units; the time at which the packet is decompressed...
AVCodecParameters * codecpar
int avio_get_str(AVIOContext *pb, int maxlen, char *buf, int buflen)
Read a string from pb into buf.
int avio_feof(AVIOContext *s)
feof() equivalent for AVIOContext.
static int64_t fsize(FILE *f)
AVPacket * ff_subtitles_queue_insert(FFDemuxSubtitlesQueue *q, const uint8_t *event, size_t len, int merge)
Insert a new subtitle event.
AVRational time_base
This is the fundamental unit of time (in seconds) in terms of which frame timestamps are represented...
#define AV_CH_LAYOUT_MONO
enum AVDiscard discard
Selects which packets can be discarded at will and do not need to be demuxed.
#define STREAM_TYPE_AUDIO_MPEG1
int request_probe
stream probing state -1 -> probing finished 0 -> no probing requested rest -> perform probing with re...
This structure stores compressed data.
int nb_subs
number of subtitles packets
void ff_subtitles_queue_finalize(void *log_ctx, FFDemuxSubtitlesQueue *q)
Set missing durations, sort subtitles by PTS (and then byte position), and drop duplicated events...
int64_t pts
Presentation timestamp in AVStream->time_base units; the time at which the decompressed packet will b...
#define AV_NOPTS_VALUE
Undefined timestamp value.
AVInputFormat ff_mpegps_demuxer
static int mpegps_probe(AVProbeData *p)