Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 1 | /* |
Vittorio Giovara | 41ed7ab | 2016-04-27 17:45:23 | [diff] [blame] | 2 | * MPEG-1/2 demuxer |
Diego Biurrun | 406792e | 2009-01-19 15:46:40 | [diff] [blame] | 3 | * Copyright (c) 2000, 2001, 2002 Fabrice Bellard |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 4 | * |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 5 | * This file is part of FFmpeg. |
| 6 | * |
| 7 | * FFmpeg is free software; you can redistribute it and/or |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 8 | * modify it under the terms of the GNU Lesser General Public |
| 9 | * License as published by the Free Software Foundation; either |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 10 | * version 2.1 of the License, or (at your option) any later version. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 11 | * |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 12 | * FFmpeg is distributed in the hope that it will be useful, |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * Lesser General Public License for more details. |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 16 | * |
Fabrice Bellard | 19720f1 | 2002-05-25 22:34:32 | [diff] [blame] | 17 | * You should have received a copy of the GNU Lesser General Public |
Diego Biurrun | b78e719 | 2006-10-07 15:30:46 | [diff] [blame] | 18 | * License along with FFmpeg; if not, write to the Free Software |
Diego Biurrun | 5509bff | 2006-01-12 22:43:26 | [diff] [blame] | 19 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 20 | */ |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 21 | |
Martin Storsjö | a78f136 | 2022-02-23 12:56:49 | [diff] [blame] | 22 | #include "config_components.h" |
| 23 | |
Andreas Rheinhardt | 1be3d8a | 2021-06-11 23:10:58 | [diff] [blame] | 24 | #include "libavutil/channel_layout.h" |
Baptiste Coudurier | 2abe5a0 | 2007-06-21 09:39:29 | [diff] [blame] | 25 | #include "avformat.h" |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 26 | #include "avio_internal.h" |
Andreas Rheinhardt | 35ec5c8 | 2022-05-06 16:28:08 | [diff] [blame] | 27 | #include "demux.h" |
Anton Khirnov | f819467 | 2011-02-06 14:38:55 | [diff] [blame] | 28 | #include "internal.h" |
Baptiste Coudurier | 2abe5a0 | 2007-06-21 09:39:29 | [diff] [blame] | 29 | #include "mpeg.h" |
| 30 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 31 | /*********************************************/ |
| 32 | /* demux code */ |
| 33 | |
| 34 | #define MAX_SYNC_SIZE 100000 |
| 35 | |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 36 | static int check_pes(const uint8_t *p, const uint8_t *end) |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 37 | { |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 38 | int pes1; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 39 | int pes2 = (p[3] & 0xC0) == 0x80 && |
| 40 | (p[4] & 0xC0) != 0x40 && |
| 41 | ((p[4] & 0xC0) == 0x00 || |
| 42 | (p[4] & 0xC0) >> 2 == (p[6] & 0xF0)); |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 43 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 44 | for (p += 3; p < end && *p == 0xFF; p++) ; |
| 45 | if ((*p & 0xC0) == 0x40) |
| 46 | p += 2; |
| 47 | |
| 48 | if ((*p & 0xF0) == 0x20) |
| 49 | pes1 = p[0] & p[2] & p[4] & 1; |
| 50 | else if ((*p & 0xF0) == 0x30) |
| 51 | pes1 = p[0] & p[2] & p[4] & p[5] & p[7] & p[9] & 1; |
| 52 | else |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 53 | pes1 = *p == 0x0F; |
| 54 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 55 | return pes1 || pes2; |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 56 | } |
| 57 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 58 | static int check_pack_header(const uint8_t *buf) |
| 59 | { |
Alex Converse | fe21f78 | 2011-09-28 22:43:24 | [diff] [blame] | 60 | return (buf[1] & 0xC0) == 0x40 || (buf[1] & 0xF0) == 0x20; |
| 61 | } |
| 62 | |
Carl Eugen Hoyos | 4d8875e | 2019-03-21 00:18:37 | [diff] [blame] | 63 | static int mpegps_probe(const AVProbeData *p) |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 64 | { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 65 | uint32_t code = -1; |
Michael Niedermayer | 95f97de | 2004-10-01 16:00:00 | [diff] [blame] | 66 | int i; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 67 | int sys = 0, pspack = 0, priv1 = 0, vid = 0; |
| 68 | int audio = 0, invalid = 0, score = 0; |
Michael Niedermayer | e15b29b | 2014-12-06 21:33:09 | [diff] [blame] | 69 | int endpes = 0; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 70 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 71 | for (i = 0; i < p->buf_size; i++) { |
| 72 | code = (code << 8) + p->buf[i]; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 73 | if ((code & 0xffffff00) == 0x100) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 74 | int len = p->buf[i + 1] << 8 | p->buf[i + 2]; |
Michael Niedermayer | e15b29b | 2014-12-06 21:33:09 | [diff] [blame] | 75 | int pes = endpes <= i && check_pes(p->buf + i, p->buf + p->buf_size); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 76 | int pack = check_pack_header(p->buf + i); |
Michael Niedermayer | c6dcd0d | 2007-11-03 13:48:30 | [diff] [blame] | 77 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 78 | if (code == SYSTEM_HEADER_START_CODE) |
| 79 | sys++; |
| 80 | else if (code == PACK_START_CODE && pack) |
| 81 | pspack++; |
Michael Niedermayer | e15b29b | 2014-12-06 21:33:09 | [diff] [blame] | 82 | else if ((code & 0xf0) == VIDEO_ID && pes) { |
| 83 | endpes = i + len; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 84 | vid++; |
Michael Niedermayer | e15b29b | 2014-12-06 21:33:09 | [diff] [blame] | 85 | } |
Janne Grunau | 612dc02 | 2010-05-24 12:32:13 | [diff] [blame] | 86 | // skip pes payload to avoid start code emulation for private |
| 87 | // and audio streams |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 88 | else if ((code & 0xe0) == AUDIO_ID && pes) {audio++; i+=len;} |
| 89 | else if (code == PRIVATE_STREAM_1 && pes) {priv1++; i+=len;} |
| 90 | else if (code == 0x1fd && pes) vid++; //VC1 |
Michael Niedermayer | 7e1720d | 2007-12-03 09:37:06 | [diff] [blame] | 91 | |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 92 | else if ((code & 0xf0) == VIDEO_ID && !pes) invalid++; |
| 93 | else if ((code & 0xe0) == AUDIO_ID && !pes) invalid++; |
| 94 | else if (code == PRIVATE_STREAM_1 && !pes) invalid++; |
Isaac Richards | ec23a47 | 2003-07-10 09:04:04 | [diff] [blame] | 95 | } |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 96 | } |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 97 | |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 98 | if (vid + audio > invalid + 1) /* invalid VDR files nd short PES streams */ |
Diego Biurrun | e0f8be6 | 2013-03-25 15:12:51 | [diff] [blame] | 99 | score = AVPROBE_SCORE_EXTENSION / 2; |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 100 | |
Michael Niedermayer | 74080de | 2014-12-06 21:38:38 | [diff] [blame] | 101 | // av_log(NULL, AV_LOG_ERROR, "vid:%d aud:%d sys:%d pspack:%d invalid:%d size:%d \n", |
| 102 | // vid, audio, sys, pspack, invalid, p->buf_size); |
| 103 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 104 | if (sys > invalid && sys * 9 <= pspack * 10) |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 105 | return (audio > 12 || vid > 3 || pspack > 2) ? AVPROBE_SCORE_EXTENSION + 2 |
Michael Niedermayer | 20f7b4d | 2020-04-13 22:03:30 | [diff] [blame] | 106 | : AVPROBE_SCORE_EXTENSION / 2 + (audio + vid + pspack > 1); // 1 more than mp3 |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 107 | if (pspack > invalid && (priv1 + vid + audio) * 10 >= pspack * 9) |
| 108 | return pspack > 2 ? AVPROBE_SCORE_EXTENSION + 2 |
| 109 | : AVPROBE_SCORE_EXTENSION / 2; // 1 more than .mpg |
| 110 | if ((!!vid ^ !!audio) && (audio > 4 || vid > 1) && !sys && |
| 111 | !pspack && p->buf_size > 2048 && vid + audio > invalid) /* PES stream */ |
Michael Niedermayer | 4e5049a | 2016-11-15 19:06:42 | [diff] [blame] | 112 | return (audio > 12 || vid > 6 + 2 * invalid) ? AVPROBE_SCORE_EXTENSION + 2 |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 113 | : AVPROBE_SCORE_EXTENSION / 2; |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 114 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 115 | // 02-Penguin.flac has sys:0 priv1:0 pspack:0 vid:0 audio:1 |
| 116 | // mp3_misidentified_2.mp3 has sys:0 priv1:0 pspack:0 vid:0 audio:6 |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 117 | // Have\ Yourself\ a\ Merry\ Little\ Christmas.mp3 0 0 0 5 0 1 len:21618 |
Michael Niedermayer | a1c69e0 | 2006-08-19 08:39:00 | [diff] [blame] | 118 | return score; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 119 | } |
| 120 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 121 | typedef struct MpegDemuxContext { |
Måns Rullgård | 191e8ca | 2006-09-27 19:47:39 | [diff] [blame] | 122 | int32_t header_state; |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 123 | unsigned char psm_es_type[256]; |
Aurelien Jacobs | 8cd4ac3 | 2007-11-07 23:56:00 | [diff] [blame] | 124 | int sofdec; |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 125 | int dvd; |
Carl Eugen Hoyos | 92a9a30 | 2013-03-27 00:48:07 | [diff] [blame] | 126 | int imkh_cctv; |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 127 | int raw_ac3; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 128 | } MpegDemuxContext; |
| 129 | |
Anton Khirnov | 6e9651d | 2012-01-12 12:20:36 | [diff] [blame] | 130 | static int mpegps_read_header(AVFormatContext *s) |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 131 | { |
| 132 | MpegDemuxContext *m = s->priv_data; |
Carl Eugen Hoyos | a5c1c7a | 2017-02-19 15:15:34 | [diff] [blame] | 133 | char buffer[7] = { 0 }; |
Arne de Bruijn | b2f230e | 2011-09-17 12:59:00 | [diff] [blame] | 134 | int64_t last_pos = avio_tell(s->pb); |
Aurelien Jacobs | 8cd4ac3 | 2007-11-07 23:56:00 | [diff] [blame] | 135 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 136 | m->header_state = 0xff; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 137 | s->ctx_flags |= AVFMTCTX_NOHEADER; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 138 | |
Carl Eugen Hoyos | 92a9a30 | 2013-03-27 00:48:07 | [diff] [blame] | 139 | avio_get_str(s->pb, 6, buffer, sizeof(buffer)); |
| 140 | if (!memcmp("IMKH", buffer, 4)) { |
| 141 | m->imkh_cctv = 1; |
| 142 | } else if (!memcmp("Sofdec", buffer, 6)) { |
| 143 | m->sofdec = 1; |
| 144 | } else |
Arne de Bruijn | b2f230e | 2011-09-17 12:59:00 | [diff] [blame] | 145 | avio_seek(s->pb, last_pos, SEEK_SET); |
| 146 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 147 | /* no need to do more */ |
| 148 | return 0; |
| 149 | } |
| 150 | |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 151 | static int64_t get_pts(AVIOContext *pb, int c) |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 152 | { |
Ivo van Poorten | 66e9e30 | 2008-01-07 23:32:57 | [diff] [blame] | 153 | uint8_t buf[5]; |
Michael Niedermayer | e8a88a1 | 2020-08-14 23:07:44 | [diff] [blame] | 154 | int ret; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 155 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 156 | buf[0] = c < 0 ? avio_r8(pb) : c; |
Michael Niedermayer | e8a88a1 | 2020-08-14 23:07:44 | [diff] [blame] | 157 | ret = avio_read(pb, buf + 1, 4); |
| 158 | if (ret < 4) |
| 159 | return AV_NOPTS_VALUE; |
Ivo van Poorten | 66e9e30 | 2008-01-07 23:32:57 | [diff] [blame] | 160 | |
| 161 | return ff_parse_pes_pts(buf); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 162 | } |
| 163 | |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 164 | static int find_next_start_code(AVIOContext *pb, int *size_ptr, |
Måns Rullgård | 191e8ca | 2006-09-27 19:47:39 | [diff] [blame] | 165 | int32_t *header_state) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 166 | { |
| 167 | unsigned int state, v; |
| 168 | int val, n; |
| 169 | |
| 170 | state = *header_state; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 171 | n = *size_ptr; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 172 | while (n > 0) { |
James Almer | d34ec64 | 2014-08-07 20:12:41 | [diff] [blame] | 173 | if (avio_feof(pb)) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 174 | break; |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 175 | v = avio_r8(pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 176 | n--; |
| 177 | if (state == 0x000001) { |
| 178 | state = ((state << 8) | v) & 0xffffff; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 179 | val = state; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 180 | goto found; |
| 181 | } |
| 182 | state = ((state << 8) | v) & 0xffffff; |
| 183 | } |
| 184 | val = -1; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 185 | |
| 186 | found: |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 187 | *header_state = state; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 188 | *size_ptr = n; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 189 | return val; |
| 190 | } |
| 191 | |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 192 | /** |
Måns Rullgård | 49bd8e4 | 2010-06-30 15:38:06 | [diff] [blame] | 193 | * Extract stream types from a program stream map |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 194 | * According to ISO/IEC 13818-1 ('MPEG-2 Systems') table 2-35 |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 195 | * |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 196 | * @return number of bytes occupied by PSM in the bitstream |
| 197 | */ |
Anton Khirnov | 471fe57 | 2011-02-20 10:04:12 | [diff] [blame] | 198 | static long mpegps_psm_parse(MpegDemuxContext *m, AVIOContext *pb) |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 199 | { |
| 200 | int psm_length, ps_info_length, es_map_length; |
| 201 | |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 202 | psm_length = avio_rb16(pb); |
| 203 | avio_r8(pb); |
| 204 | avio_r8(pb); |
| 205 | ps_info_length = avio_rb16(pb); |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 206 | |
| 207 | /* skip program_stream_info */ |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 208 | avio_skip(pb, ps_info_length); |
Michael Niedermayer | 8d7d881 | 2015-01-13 23:06:43 | [diff] [blame] | 209 | /*es_map_length = */avio_rb16(pb); |
Carl Eugen Hoyos | af7562a | 2013-12-05 20:17:21 | [diff] [blame] | 210 | /* Ignore es_map_length, trust psm_length */ |
| 211 | es_map_length = psm_length - ps_info_length - 10; |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 212 | |
| 213 | /* at least one es available? */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 214 | while (es_map_length >= 4) { |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 215 | unsigned char type = avio_r8(pb); |
| 216 | unsigned char es_id = avio_r8(pb); |
| 217 | uint16_t es_info_length = avio_rb16(pb); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 218 | |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 219 | /* remember mapping from stream id to stream type */ |
| 220 | m->psm_es_type[es_id] = type; |
| 221 | /* skip program_stream_info */ |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 222 | avio_skip(pb, es_info_length); |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 223 | es_map_length -= 4 + es_info_length; |
| 224 | } |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 225 | avio_rb32(pb); /* crc32 */ |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 226 | return 2 + psm_length; |
| 227 | } |
| 228 | |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 229 | /* read the next PES header. Return its position in ppos |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 230 | * (if not NULL), and its start code, pts and dts. |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 231 | */ |
| 232 | static int mpegps_read_pes_header(AVFormatContext *s, |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 233 | int64_t *ppos, int *pstart_code, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 234 | int64_t *ppts, int64_t *pdts) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 235 | { |
| 236 | MpegDemuxContext *m = s->priv_data; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 237 | int len, size, startcode, c, flags, header_len; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 238 | int pes_ext, ext2_len, id_ext, skip; |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 239 | int64_t pts, dts; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 240 | int64_t last_sync = avio_tell(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 241 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 242 | error_redo: |
| 243 | avio_seek(s->pb, last_sync, SEEK_SET); |
| 244 | redo: |
| 245 | /* next start code (should be immediately after) */ |
| 246 | m->header_state = 0xff; |
| 247 | size = MAX_SYNC_SIZE; |
| 248 | startcode = find_next_start_code(s->pb, &size, &m->header_state); |
| 249 | last_sync = avio_tell(s->pb); |
| 250 | if (startcode < 0) { |
James Almer | d34ec64 | 2014-08-07 20:12:41 | [diff] [blame] | 251 | if (avio_feof(s->pb)) |
Michael Niedermayer | 0332324 | 2010-02-10 14:25:57 | [diff] [blame] | 252 | return AVERROR_EOF; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 253 | // FIXME we should remember header_state |
Nicolas George | cb14d30 | 2015-11-27 17:58:38 | [diff] [blame] | 254 | return FFERROR_REDO; |
Michael Niedermayer | 0332324 | 2010-02-10 14:25:57 | [diff] [blame] | 255 | } |
| 256 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 257 | if (startcode == PACK_START_CODE) |
| 258 | goto redo; |
| 259 | if (startcode == SYSTEM_HEADER_START_CODE) |
| 260 | goto redo; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 261 | if (startcode == PADDING_STREAM) { |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 262 | avio_skip(s->pb, avio_rb16(s->pb)); |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 263 | goto redo; |
| 264 | } |
| 265 | if (startcode == PRIVATE_STREAM_2) { |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 266 | if (!m->sofdec) { |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 267 | /* Need to detect whether this from a DVD or a 'Sofdec' stream */ |
| 268 | int len = avio_rb16(s->pb); |
| 269 | int bytesread = 0; |
| 270 | uint8_t *ps2buf = av_malloc(len); |
| 271 | |
| 272 | if (ps2buf) { |
| 273 | bytesread = avio_read(s->pb, ps2buf, len); |
| 274 | |
| 275 | if (bytesread != len) { |
| 276 | avio_skip(s->pb, len - bytesread); |
| 277 | } else { |
| 278 | uint8_t *p = 0; |
| 279 | if (len >= 6) |
| 280 | p = memchr(ps2buf, 'S', len - 5); |
| 281 | |
| 282 | if (p) |
| 283 | m->sofdec = !memcmp(p+1, "ofdec", 5); |
| 284 | |
| 285 | m->sofdec -= !m->sofdec; |
| 286 | |
| 287 | if (m->sofdec < 0) { |
| 288 | if (len == 980 && ps2buf[0] == 0) { |
| 289 | /* PCI structure? */ |
| 290 | uint32_t startpts = AV_RB32(ps2buf + 0x0d); |
| 291 | uint32_t endpts = AV_RB32(ps2buf + 0x11); |
| 292 | uint8_t hours = ((ps2buf[0x19] >> 4) * 10) + (ps2buf[0x19] & 0x0f); |
| 293 | uint8_t mins = ((ps2buf[0x1a] >> 4) * 10) + (ps2buf[0x1a] & 0x0f); |
| 294 | uint8_t secs = ((ps2buf[0x1b] >> 4) * 10) + (ps2buf[0x1b] & 0x0f); |
| 295 | |
| 296 | m->dvd = (hours <= 23 && |
| 297 | mins <= 59 && |
| 298 | secs <= 59 && |
| 299 | (ps2buf[0x19] & 0x0f) < 10 && |
| 300 | (ps2buf[0x1a] & 0x0f) < 10 && |
| 301 | (ps2buf[0x1b] & 0x0f) < 10 && |
| 302 | endpts >= startpts); |
| 303 | } else if (len == 1018 && ps2buf[0] == 1) { |
| 304 | /* DSI structure? */ |
| 305 | uint8_t hours = ((ps2buf[0x1d] >> 4) * 10) + (ps2buf[0x1d] & 0x0f); |
| 306 | uint8_t mins = ((ps2buf[0x1e] >> 4) * 10) + (ps2buf[0x1e] & 0x0f); |
| 307 | uint8_t secs = ((ps2buf[0x1f] >> 4) * 10) + (ps2buf[0x1f] & 0x0f); |
| 308 | |
| 309 | m->dvd = (hours <= 23 && |
| 310 | mins <= 59 && |
| 311 | secs <= 59 && |
| 312 | (ps2buf[0x1d] & 0x0f) < 10 && |
| 313 | (ps2buf[0x1e] & 0x0f) < 10 && |
| 314 | (ps2buf[0x1f] & 0x0f) < 10); |
| 315 | } |
| 316 | } |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 317 | } |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 318 | |
| 319 | av_free(ps2buf); |
| 320 | |
| 321 | /* If this isn't a DVD packet or no memory |
| 322 | * could be allocated, just ignore it. |
| 323 | * If we did, move back to the start of the |
| 324 | * packet (plus 'length' field) */ |
| 325 | if (!m->dvd || avio_skip(s->pb, -(len + 2)) < 0) { |
| 326 | /* Skip back failed. |
| 327 | * This packet will be lost but that can't be helped |
| 328 | * if we can't skip back |
| 329 | */ |
| 330 | goto redo; |
| 331 | } |
| 332 | } else { |
| 333 | /* No memory */ |
| 334 | avio_skip(s->pb, len); |
| 335 | goto redo; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 336 | } |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 337 | } else if (!m->dvd) { |
| 338 | int len = avio_rb16(s->pb); |
| 339 | avio_skip(s->pb, len); |
| 340 | goto redo; |
Måns Rullgård | 2c18784 | 2007-11-08 21:27:37 | [diff] [blame] | 341 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 342 | } |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 343 | if (startcode == PROGRAM_STREAM_MAP) { |
Björn Axelsson | 899681c | 2007-11-21 07:41:00 | [diff] [blame] | 344 | mpegps_psm_parse(m, s->pb); |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 345 | goto redo; |
| 346 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 347 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 348 | /* find matching stream */ |
| 349 | if (!((startcode >= 0x1c0 && startcode <= 0x1df) || |
| 350 | (startcode >= 0x1e0 && startcode <= 0x1ef) || |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 351 | (startcode == 0x1bd) || |
| 352 | (startcode == PRIVATE_STREAM_2) || |
| 353 | (startcode == 0x1fd))) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 354 | goto redo; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 355 | if (ppos) { |
Anton Khirnov | 384c9c2 | 2011-03-03 19:11:45 | [diff] [blame] | 356 | *ppos = avio_tell(s->pb) - 4; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 357 | } |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 358 | len = avio_rb16(s->pb); |
Michael Niedermayer | 75a9fbb | 2007-01-17 10:45:59 | [diff] [blame] | 359 | pts = |
Fabrice Bellard | b2cac18 | 2002-10-21 15:57:21 | [diff] [blame] | 360 | dts = AV_NOPTS_VALUE; |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 361 | if (startcode != PRIVATE_STREAM_2) |
| 362 | { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 363 | /* stuffing */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 364 | for (;;) { |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 365 | if (len < 1) |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 366 | goto error_redo; |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 367 | c = avio_r8(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 368 | len--; |
Vittorio Giovara | 41ed7ab | 2016-04-27 17:45:23 | [diff] [blame] | 369 | /* XXX: for MPEG-1, should test only bit 7 */ |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 370 | if (c != 0xff) |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 371 | break; |
| 372 | } |
| 373 | if ((c & 0xc0) == 0x40) { |
| 374 | /* buffer scale & size */ |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 375 | avio_r8(s->pb); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 376 | c = avio_r8(s->pb); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 377 | len -= 2; |
| 378 | } |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 379 | if ((c & 0xe0) == 0x20) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 380 | dts = |
| 381 | pts = get_pts(s->pb, c); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 382 | len -= 4; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 383 | if (c & 0x10) { |
| 384 | dts = get_pts(s->pb, -1); |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 385 | len -= 5; |
| 386 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 387 | } else if ((c & 0xc0) == 0x80) { |
| 388 | /* mpeg 2 PES */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 389 | flags = avio_r8(s->pb); |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 390 | header_len = avio_r8(s->pb); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 391 | len -= 2; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 392 | if (header_len > len) |
Michael Niedermayer | e56cfad | 2007-01-17 10:19:10 | [diff] [blame] | 393 | goto error_redo; |
Michael Niedermayer | 8003620 | 2007-01-17 12:06:31 | [diff] [blame] | 394 | len -= header_len; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 395 | if (flags & 0x80) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 396 | dts = pts = get_pts(s->pb, -1); |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 397 | header_len -= 5; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 398 | if (flags & 0x40) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 399 | dts = get_pts(s->pb, -1); |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 400 | header_len -= 5; |
Michael Niedermayer | b90ba24 | 2007-01-17 10:55:01 | [diff] [blame] | 401 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 402 | } |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 403 | if (flags & 0x3f && header_len == 0) { |
Michael Niedermayer | 675b839 | 2008-03-04 01:31:15 | [diff] [blame] | 404 | flags &= 0xC0; |
| 405 | av_log(s, AV_LOG_WARNING, "Further flags set but no bytes left\n"); |
| 406 | } |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 407 | if (flags & 0x01) { /* PES extension */ |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 408 | pes_ext = avio_r8(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 409 | header_len--; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 410 | /* Skip PES private data, program packet sequence counter |
| 411 | * and P-STD buffer */ |
| 412 | skip = (pes_ext >> 4) & 0xb; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 413 | skip += skip & 0x9; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 414 | if (pes_ext & 0x40 || skip > header_len) { |
Michael Niedermayer | b22d0c0 | 2008-04-29 00:12:49 | [diff] [blame] | 415 | av_log(s, AV_LOG_WARNING, "pes_ext %X is invalid\n", pes_ext); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 416 | pes_ext = skip = 0; |
Michael Niedermayer | b22d0c0 | 2008-04-29 00:12:49 | [diff] [blame] | 417 | } |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 418 | avio_skip(s->pb, skip); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 419 | header_len -= skip; |
| 420 | |
| 421 | if (pes_ext & 0x01) { /* PES extension 2 */ |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 422 | ext2_len = avio_r8(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 423 | header_len--; |
| 424 | if ((ext2_len & 0x7f) > 0) { |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 425 | id_ext = avio_r8(s->pb); |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 426 | if ((id_ext & 0x80) == 0) |
| 427 | startcode = ((startcode & 0xff) << 8) | id_ext; |
| 428 | header_len--; |
| 429 | } |
| 430 | } |
| 431 | } |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 432 | if (header_len < 0) |
Michael Niedermayer | 8003620 | 2007-01-17 12:06:31 | [diff] [blame] | 433 | goto error_redo; |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 434 | avio_skip(s->pb, header_len); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 435 | } else if (c != 0xf) |
Dmitry Borisov | df70de1 | 2004-04-23 21:02:01 | [diff] [blame] | 436 | goto redo; |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 437 | } |
Dmitry Borisov | df70de1 | 2004-04-23 21:02:01 | [diff] [blame] | 438 | |
Michael Niedermayer | afa6afc | 2012-07-31 17:20:00 | [diff] [blame] | 439 | if (startcode == PRIVATE_STREAM_1) { |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 440 | int ret = ffio_ensure_seekback(s->pb, 2); |
| 441 | |
| 442 | if (ret < 0) |
| 443 | return ret; |
| 444 | |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 445 | startcode = avio_r8(s->pb); |
Paul B Mahol | 1f7705e | 2018-04-01 18:58:48 | [diff] [blame] | 446 | m->raw_ac3 = 0; |
| 447 | if (startcode == 0x0b) { |
| 448 | if (avio_r8(s->pb) == 0x77) { |
| 449 | startcode = 0x80; |
| 450 | m->raw_ac3 = 1; |
| 451 | avio_skip(s->pb, -2); |
Paul B Mahol | 0995641 | 2018-04-01 19:08:16 | [diff] [blame] | 452 | } else { |
| 453 | avio_skip(s->pb, -1); |
Paul B Mahol | 1f7705e | 2018-04-01 18:58:48 | [diff] [blame] | 454 | } |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 455 | } else { |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 456 | len--; |
| 457 | } |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 458 | } |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 459 | if (len < 0) |
Michael Niedermayer | 7e4709b | 2007-01-17 10:44:57 | [diff] [blame] | 460 | goto error_redo; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 461 | if (dts != AV_NOPTS_VALUE && ppos) { |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 462 | int i; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 463 | for (i = 0; i < s->nb_streams; i++) { |
| 464 | if (startcode == s->streams[i]->id && |
Anton Khirnov | 83548fe | 2016-09-27 14:26:37 | [diff] [blame] | 465 | (s->pb->seekable & AVIO_SEEKABLE_NORMAL) /* index useless on streams anyway */) { |
Paul Kelly | 3dea63b | 2008-01-13 13:33:37 | [diff] [blame] | 466 | ff_reduce_index(s, i); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 467 | av_add_index_entry(s->streams[i], *ppos, dts, 0, 0, |
| 468 | AVINDEX_KEYFRAME /* FIXME keyframe? */); |
Michael Niedermayer | b754978 | 2004-01-13 22:02:49 | [diff] [blame] | 469 | } |
| 470 | } |
| 471 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 472 | |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 473 | *pstart_code = startcode; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 474 | *ppts = pts; |
| 475 | *pdts = dts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 476 | return len; |
| 477 | } |
| 478 | |
| 479 | static int mpegps_read_packet(AVFormatContext *s, |
| 480 | AVPacket *pkt) |
| 481 | { |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 482 | MpegDemuxContext *m = s->priv_data; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 483 | AVStream *st; |
Andreas Rheinhardt | 40bdd8c | 2021-08-24 17:41:16 | [diff] [blame] | 484 | FFStream *sti; |
Alex Converse | 9fba8eb | 2011-09-23 23:28:23 | [diff] [blame] | 485 | int len, startcode, i, es_type, ret; |
Paul B Mahol | 7da5787 | 2019-10-01 09:34:09 | [diff] [blame] | 486 | int pcm_dvd = 0; |
Michael Niedermayer | 5b56ad0 | 2011-03-04 00:12:17 | [diff] [blame] | 487 | int request_probe= 0; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 488 | enum AVCodecID codec_id = AV_CODEC_ID_NONE; |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 489 | enum AVMediaType type; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 490 | int64_t pts, dts, dummy_pos; // dummy_pos is needed for the index building to work |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 491 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 492 | redo: |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 493 | len = mpegps_read_pes_header(s, &dummy_pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 494 | if (len < 0) |
| 495 | return len; |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 496 | |
Michael Niedermayer | ce7cf60 | 2012-07-31 17:43:20 | [diff] [blame] | 497 | if (startcode >= 0x80 && startcode <= 0xcf) { |
Michael Niedermayer | fecebb7 | 2014-03-24 04:28:07 | [diff] [blame] | 498 | if (len < 4) |
Michael Niedermayer | ce7cf60 | 2012-07-31 17:43:20 | [diff] [blame] | 499 | goto skip; |
| 500 | |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 501 | if (!m->raw_ac3) { |
| 502 | /* audio: skip header */ |
Andreas Rheinhardt | ffb32d3 | 2019-10-08 05:41:13 | [diff] [blame] | 503 | avio_skip(s->pb, 3); |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 504 | len -= 3; |
| 505 | if (startcode >= 0xb0 && startcode <= 0xbf) { |
| 506 | /* MLP/TrueHD audio has a 4-byte header */ |
| 507 | avio_r8(s->pb); |
| 508 | len--; |
Paul B Mahol | 7da5787 | 2019-10-01 09:34:09 | [diff] [blame] | 509 | } else if (startcode >= 0xa0 && startcode <= 0xaf) { |
| 510 | ret = ffio_ensure_seekback(s->pb, 3); |
| 511 | if (ret < 0) |
| 512 | return ret; |
| 513 | pcm_dvd = (avio_rb24(s->pb) & 0xFF) == 0x80; |
| 514 | avio_skip(s->pb, -3); |
Paul B Mahol | 7643e27 | 2018-03-30 16:44:34 | [diff] [blame] | 515 | } |
Michael Niedermayer | ce7cf60 | 2012-07-31 17:43:20 | [diff] [blame] | 516 | } |
| 517 | } |
| 518 | |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 519 | /* now find stream */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 520 | for (i = 0; i < s->nb_streams; i++) { |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 521 | st = s->streams[i]; |
| 522 | if (st->id == startcode) |
| 523 | goto found; |
| 524 | } |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 525 | |
| 526 | es_type = m->psm_es_type[startcode & 0xff]; |
Xiaofeng Wang | 821791c | 2019-02-18 01:16:58 | [diff] [blame] | 527 | if (es_type == STREAM_TYPE_VIDEO_MPEG1) { |
| 528 | codec_id = AV_CODEC_ID_MPEG2VIDEO; |
| 529 | type = AVMEDIA_TYPE_VIDEO; |
| 530 | } else if (es_type == STREAM_TYPE_VIDEO_MPEG2) { |
| 531 | codec_id = AV_CODEC_ID_MPEG2VIDEO; |
| 532 | type = AVMEDIA_TYPE_VIDEO; |
| 533 | } else if (es_type == STREAM_TYPE_AUDIO_MPEG1 || |
| 534 | es_type == STREAM_TYPE_AUDIO_MPEG2) { |
| 535 | codec_id = AV_CODEC_ID_MP3; |
| 536 | type = AVMEDIA_TYPE_AUDIO; |
| 537 | } else if (es_type == STREAM_TYPE_AUDIO_AAC) { |
| 538 | codec_id = AV_CODEC_ID_AAC; |
| 539 | type = AVMEDIA_TYPE_AUDIO; |
| 540 | } else if (es_type == STREAM_TYPE_VIDEO_MPEG4) { |
| 541 | codec_id = AV_CODEC_ID_MPEG4; |
| 542 | type = AVMEDIA_TYPE_VIDEO; |
| 543 | } else if (es_type == STREAM_TYPE_VIDEO_H264) { |
| 544 | codec_id = AV_CODEC_ID_H264; |
| 545 | type = AVMEDIA_TYPE_VIDEO; |
| 546 | } else if (es_type == STREAM_TYPE_VIDEO_HEVC) { |
| 547 | codec_id = AV_CODEC_ID_HEVC; |
| 548 | type = AVMEDIA_TYPE_VIDEO; |
| 549 | } else if (es_type == STREAM_TYPE_AUDIO_AC3) { |
| 550 | codec_id = AV_CODEC_ID_AC3; |
| 551 | type = AVMEDIA_TYPE_AUDIO; |
Jun Zhao | a53bb07 | 2023-03-06 23:36:19 | [diff] [blame] | 552 | } else if (es_type == 0x90) { |
| 553 | codec_id = AV_CODEC_ID_PCM_ALAW; |
| 554 | type = AVMEDIA_TYPE_AUDIO; |
Xiaofeng Wang | 821791c | 2019-02-18 01:16:58 | [diff] [blame] | 555 | } else if (m->imkh_cctv && es_type == 0x91) { |
| 556 | codec_id = AV_CODEC_ID_PCM_MULAW; |
| 557 | type = AVMEDIA_TYPE_AUDIO; |
Måns Rullgård | e3d1cd8 | 2005-03-28 17:33:21 | [diff] [blame] | 558 | } else if (startcode >= 0x1e0 && startcode <= 0x1ef) { |
Måns Rullgård | 83d0731 | 2006-07-03 21:40:01 | [diff] [blame] | 559 | static const unsigned char avs_seqh[4] = { 0, 0, 1, 0xb0 }; |
| 560 | unsigned char buf[8]; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 561 | |
Anton Khirnov | e63a362 | 2011-02-21 15:43:01 | [diff] [blame] | 562 | avio_read(s->pb, buf, 8); |
Anton Khirnov | f59d8ff | 2011-02-28 13:57:54 | [diff] [blame] | 563 | avio_seek(s->pb, -8, SEEK_CUR); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 564 | if (!memcmp(buf, avs_seqh, 4) && (buf[6] != 0 || buf[7] != 1)) |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 565 | codec_id = AV_CODEC_ID_CAVS; |
Måns Rullgård | 83d0731 | 2006-07-03 21:40:01 | [diff] [blame] | 566 | else |
Michael Niedermayer | 5b56ad0 | 2011-03-04 00:12:17 | [diff] [blame] | 567 | request_probe= 1; |
Stefano Sabatini | 72415b2 | 2010-03-30 23:30:55 | [diff] [blame] | 568 | type = AVMEDIA_TYPE_VIDEO; |
Richard | 9cde9f7 | 2013-03-17 09:21:12 | [diff] [blame] | 569 | } else if (startcode == PRIVATE_STREAM_2) { |
| 570 | type = AVMEDIA_TYPE_DATA; |
| 571 | codec_id = AV_CODEC_ID_DVD_NAV; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 572 | } else if (startcode >= 0x1c0 && startcode <= 0x1df) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 573 | type = AVMEDIA_TYPE_AUDIO; |
Carl Eugen Hoyos | 4ba9039 | 2013-12-01 11:02:21 | [diff] [blame] | 574 | if (m->sofdec > 0) { |
| 575 | codec_id = AV_CODEC_ID_ADPCM_ADX; |
| 576 | // Auto-detect AC-3 |
| 577 | request_probe = 50; |
Carl Eugen Hoyos | ee8c183 | 2015-05-17 10:57:27 | [diff] [blame] | 578 | } else if (m->imkh_cctv && startcode == 0x1c0 && len > 80) { |
Carl Eugen Hoyos | 036079c | 2015-04-03 19:04:43 | [diff] [blame] | 579 | codec_id = AV_CODEC_ID_PCM_ALAW; |
| 580 | request_probe = 50; |
Carl Eugen Hoyos | 4ba9039 | 2013-12-01 11:02:21 | [diff] [blame] | 581 | } else { |
| 582 | codec_id = AV_CODEC_ID_MP2; |
Carl Eugen Hoyos | f8413f7 | 2015-04-03 18:58:20 | [diff] [blame] | 583 | if (m->imkh_cctv) |
| 584 | request_probe = 25; |
Carl Eugen Hoyos | 4ba9039 | 2013-12-01 11:02:21 | [diff] [blame] | 585 | } |
Joakim Plate | 3f2bf07 | 2005-05-20 13:10:09 | [diff] [blame] | 586 | } else if (startcode >= 0x80 && startcode <= 0x87) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 587 | type = AVMEDIA_TYPE_AUDIO; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 588 | codec_id = AV_CODEC_ID_AC3; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 589 | } else if ((startcode >= 0x88 && startcode <= 0x8f) || |
| 590 | (startcode >= 0x98 && startcode <= 0x9f)) { |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 591 | /* 0x90 - 0x97 is reserved for SDDS in DVD specs */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 592 | type = AVMEDIA_TYPE_AUDIO; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 593 | codec_id = AV_CODEC_ID_DTS; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 594 | } else if (startcode >= 0xa0 && startcode <= 0xaf) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 595 | type = AVMEDIA_TYPE_AUDIO; |
Paul B Mahol | 7da5787 | 2019-10-01 09:34:09 | [diff] [blame] | 596 | if (!pcm_dvd) { |
Michael Niedermayer | 7a72695 | 2012-08-07 20:45:46 | [diff] [blame] | 597 | codec_id = AV_CODEC_ID_MLP; |
Michael Niedermayer | 759901f | 2012-07-31 18:54:33 | [diff] [blame] | 598 | } else { |
Michael Niedermayer | 7a72695 | 2012-08-07 20:45:46 | [diff] [blame] | 599 | codec_id = AV_CODEC_ID_PCM_DVD; |
Michael Niedermayer | 759901f | 2012-07-31 18:54:33 | [diff] [blame] | 600 | } |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 601 | } else if (startcode >= 0xb0 && startcode <= 0xbf) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 602 | type = AVMEDIA_TYPE_AUDIO; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 603 | codec_id = AV_CODEC_ID_TRUEHD; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 604 | } else if (startcode >= 0xc0 && startcode <= 0xcf) { |
| 605 | /* Used for both AC-3 and E-AC-3 in EVOB files */ |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 606 | type = AVMEDIA_TYPE_AUDIO; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 607 | codec_id = AV_CODEC_ID_AC3; |
Fabrice Bellard | a9c3213 | 2005-06-03 14:01:49 | [diff] [blame] | 608 | } else if (startcode >= 0x20 && startcode <= 0x3f) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 609 | type = AVMEDIA_TYPE_SUBTITLE; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 610 | codec_id = AV_CODEC_ID_DVD_SUBTITLE; |
Michael Niedermayer | aad512b | 2007-02-06 19:14:16 | [diff] [blame] | 611 | } else if (startcode >= 0xfd55 && startcode <= 0xfd5f) { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 612 | type = AVMEDIA_TYPE_VIDEO; |
Anton Khirnov | 36ef536 | 2012-08-05 09:11:04 | [diff] [blame] | 613 | codec_id = AV_CODEC_ID_VC1; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 614 | } else { |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 615 | skip: |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 616 | /* skip packet */ |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 617 | avio_skip(s->pb, len); |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 618 | goto redo; |
| 619 | } |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 620 | /* no stream found: add a new stream */ |
Anton Khirnov | 84ad31f | 2011-06-18 09:43:24 | [diff] [blame] | 621 | st = avformat_new_stream(s, NULL); |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 622 | if (!st) |
Fabrice Bellard | 1e5c667 | 2002-10-04 15:46:59 | [diff] [blame] | 623 | goto skip; |
Andreas Rheinhardt | 40bdd8c | 2021-08-24 17:41:16 | [diff] [blame] | 624 | sti = ffstream(st); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 625 | st->id = startcode; |
Anton Khirnov | 9200514 | 2014-06-18 18:42:52 | [diff] [blame] | 626 | st->codecpar->codec_type = type; |
| 627 | st->codecpar->codec_id = codec_id; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 628 | if ( st->codecpar->codec_id == AV_CODEC_ID_PCM_MULAW |
| 629 | || st->codecpar->codec_id == AV_CODEC_ID_PCM_ALAW) { |
Anton Khirnov | f4602e9 | 2019-05-13 09:11:26 | [diff] [blame] | 630 | st->codecpar->ch_layout = (AVChannelLayout)AV_CHANNEL_LAYOUT_MONO; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 631 | st->codecpar->sample_rate = 8000; |
Carl Eugen Hoyos | 92a9a30 | 2013-03-27 00:48:07 | [diff] [blame] | 632 | } |
Andreas Rheinhardt | 40bdd8c | 2021-08-24 17:41:16 | [diff] [blame] | 633 | sti->request_probe = request_probe; |
| 634 | sti->need_parsing = AVSTREAM_PARSE_FULL; |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 635 | |
| 636 | found: |
| 637 | if (st->discard >= AVDISCARD_ALL) |
Michael Niedermayer | b9866eb | 2005-01-22 13:36:02 | [diff] [blame] | 638 | goto skip; |
Michael Niedermayer | afa6afc | 2012-07-31 17:20:00 | [diff] [blame] | 639 | if (startcode >= 0xa0 && startcode <= 0xaf) { |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 640 | if (st->codecpar->codec_id == AV_CODEC_ID_MLP) { |
Michael Niedermayer | 759901f | 2012-07-31 18:54:33 | [diff] [blame] | 641 | if (len < 6) |
| 642 | goto skip; |
| 643 | avio_skip(s->pb, 6); |
| 644 | len -=6; |
Michael Niedermayer | 759901f | 2012-07-31 18:54:33 | [diff] [blame] | 645 | } |
Fabrice Bellard | 9ec05e3 | 2003-01-31 17:04:46 | [diff] [blame] | 646 | } |
Alex Converse | 98ef887 | 2011-10-08 00:02:36 | [diff] [blame] | 647 | ret = av_get_packet(s->pb, pkt, len); |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 648 | |
| 649 | pkt->pts = pts; |
| 650 | pkt->dts = dts; |
| 651 | pkt->pos = dummy_pos; |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 652 | pkt->stream_index = st->index; |
Michael Niedermayer | 57865a9 | 2015-04-20 15:41:22 | [diff] [blame] | 653 | |
| 654 | if (s->debug & FF_FDEBUG_TS) |
Gyan Doshi | 0274185 | 2018-08-13 07:02:41 | [diff] [blame] | 655 | av_log(s, AV_LOG_DEBUG, "%d: pts=%0.3f dts=%0.3f size=%d\n", |
Diego Biurrun | 045dd4b | 2011-04-29 15:27:01 | [diff] [blame] | 656 | pkt->stream_index, pkt->pts / 90000.0, pkt->dts / 90000.0, |
| 657 | pkt->size); |
Mike Melanson | 0bd586c | 2004-06-19 03:59:34 | [diff] [blame] | 658 | |
Alex Converse | 9fba8eb | 2011-09-23 23:28:23 | [diff] [blame] | 659 | return (ret < 0) ? ret : 0; |
Fabrice Bellard | de6d9b6 | 2001-07-22 14:18:56 | [diff] [blame] | 660 | } |
| 661 | |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 662 | static int64_t mpegps_read_dts(AVFormatContext *s, int stream_index, |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 663 | int64_t *ppos, int64_t pos_limit) |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 664 | { |
| 665 | int len, startcode; |
| 666 | int64_t pos, pts, dts; |
| 667 | |
| 668 | pos = *ppos; |
Anton Khirnov | f59d8ff | 2011-02-28 13:57:54 | [diff] [blame] | 669 | if (avio_seek(s->pb, pos, SEEK_SET) < 0) |
Joakim Plate | 5faf168 | 2008-05-29 09:50:17 | [diff] [blame] | 670 | return AV_NOPTS_VALUE; |
| 671 | |
Tanja Batchelor | 5b8f0a5 | 2014-03-20 01:02:42 | [diff] [blame] | 672 | for (;;) { |
Michael Niedermayer | 8d14a25 | 2004-04-12 16:50:03 | [diff] [blame] | 673 | len = mpegps_read_pes_header(s, &pos, &startcode, &pts, &dts); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 674 | if (len < 0) { |
Michael Niedermayer | 57865a9 | 2015-04-20 15:41:22 | [diff] [blame] | 675 | if (s->debug & FF_FDEBUG_TS) |
Gyan Doshi | 0274185 | 2018-08-13 07:02:41 | [diff] [blame] | 676 | av_log(s, AV_LOG_DEBUG, "none (ret=%d)\n", len); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 677 | return AV_NOPTS_VALUE; |
| 678 | } |
Diego Biurrun | 115329f | 2005-12-17 18:14:38 | [diff] [blame] | 679 | if (startcode == s->streams[stream_index]->id && |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 680 | dts != AV_NOPTS_VALUE) { |
| 681 | break; |
| 682 | } |
Anton Khirnov | 45a8a02 | 2011-03-15 08:14:38 | [diff] [blame] | 683 | avio_skip(s->pb, len); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 684 | } |
Michael Niedermayer | 57865a9 | 2015-04-20 15:41:22 | [diff] [blame] | 685 | if (s->debug & FF_FDEBUG_TS) |
Gyan Doshi | 0274185 | 2018-08-13 07:02:41 | [diff] [blame] | 686 | av_log(s, AV_LOG_DEBUG, "pos=0x%"PRIx64" dts=0x%"PRIx64" %0.3f\n", |
Diego Biurrun | 919d7a3 | 2011-06-07 11:18:12 | [diff] [blame] | 687 | pos, dts, dts / 90000.0); |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 688 | *ppos = pos; |
Michael Niedermayer | cdd5034 | 2004-05-23 16:26:12 | [diff] [blame] | 689 | return dts; |
Fabrice Bellard | 27f388a | 2003-11-10 18:47:52 | [diff] [blame] | 690 | } |
| 691 | |
Andreas Rheinhardt | bc70684 | 2021-04-19 17:45:24 | [diff] [blame] | 692 | const AVInputFormat ff_mpegps_demuxer = { |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 693 | .name = "mpeg", |
Diego Biurrun | 0177b7d | 2012-07-24 01:23:48 | [diff] [blame] | 694 | .long_name = NULL_IF_CONFIG_SMALL("MPEG-PS (MPEG-2 Program Stream)"), |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 695 | .priv_data_size = sizeof(MpegDemuxContext), |
| 696 | .read_probe = mpegps_probe, |
| 697 | .read_header = mpegps_read_header, |
| 698 | .read_packet = mpegps_read_packet, |
Anton Khirnov | dfc2c4d | 2011-07-16 20:18:12 | [diff] [blame] | 699 | .read_timestamp = mpegps_read_dts, |
Martin Storsjö | 20234a4 | 2012-04-06 14:50:48 | [diff] [blame] | 700 | .flags = AVFMT_SHOW_IDS | AVFMT_TS_DISCONT, |
Fabrice Bellard | db7f1f9 | 2002-05-20 16:29:40 | [diff] [blame] | 701 | }; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 702 | |
| 703 | #if CONFIG_VOBSUB_DEMUXER |
| 704 | |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 705 | #include "subtitles.h" |
| 706 | #include "libavutil/avassert.h" |
| 707 | #include "libavutil/bprint.h" |
| 708 | #include "libavutil/opt.h" |
| 709 | |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 710 | #define REF_STRING "# VobSub index file," |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 711 | #define MAX_LINE_SIZE 2048 |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 712 | |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 713 | typedef struct VobSubDemuxContext { |
| 714 | const AVClass *class; |
| 715 | AVFormatContext *sub_ctx; |
| 716 | FFDemuxSubtitlesQueue q[32]; |
| 717 | char *sub_name; |
| 718 | } VobSubDemuxContext; |
| 719 | |
Carl Eugen Hoyos | 4d8875e | 2019-03-21 00:18:37 | [diff] [blame] | 720 | static int vobsub_probe(const AVProbeData *p) |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 721 | { |
| 722 | if (!strncmp(p->buf, REF_STRING, sizeof(REF_STRING) - 1)) |
| 723 | return AVPROBE_SCORE_MAX; |
| 724 | return 0; |
| 725 | } |
| 726 | |
Andreas Rheinhardt | 4825d8a | 2019-12-04 12:37:14 | [diff] [blame] | 727 | static int vobsub_read_close(AVFormatContext *s) |
| 728 | { |
| 729 | VobSubDemuxContext *vobsub = s->priv_data; |
| 730 | int i; |
| 731 | |
| 732 | for (i = 0; i < s->nb_streams; i++) |
| 733 | ff_subtitles_queue_clean(&vobsub->q[i]); |
Andreas Rheinhardt | bcdc1d1 | 2020-03-21 20:03:44 | [diff] [blame] | 734 | avformat_close_input(&vobsub->sub_ctx); |
Andreas Rheinhardt | 4825d8a | 2019-12-04 12:37:14 | [diff] [blame] | 735 | return 0; |
| 736 | } |
| 737 | |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 738 | static int vobsub_read_header(AVFormatContext *s) |
| 739 | { |
Clément Bœsch | 5a2f3f0b | 2013-01-02 08:31:07 | [diff] [blame] | 740 | int i, ret = 0, header_parsed = 0, langidx = 0; |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 741 | VobSubDemuxContext *vobsub = s->priv_data; |
Andreas Rheinhardt | 56450a0 | 2021-02-25 02:11:32 | [diff] [blame] | 742 | const AVInputFormat *iformat; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 743 | size_t fname_len; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 744 | AVBPrint header; |
| 745 | int64_t delay = 0; |
| 746 | AVStream *st = NULL; |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 747 | int stream_id = -1; |
| 748 | char id[64] = {0}; |
| 749 | char alt[MAX_LINE_SIZE] = {0}; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 750 | |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 751 | if (!vobsub->sub_name) { |
| 752 | char *ext; |
Marton Balint | 18ac642 | 2017-12-29 22:30:14 | [diff] [blame] | 753 | vobsub->sub_name = av_strdup(s->url); |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 754 | if (!vobsub->sub_name) { |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 755 | return AVERROR(ENOMEM); |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | fname_len = strlen(vobsub->sub_name); |
| 759 | ext = vobsub->sub_name - 3 + fname_len; |
| 760 | if (fname_len < 4 || *(ext - 1) != '.') { |
| 761 | av_log(s, AV_LOG_ERROR, "The input index filename is too short " |
| 762 | "to guess the associated .SUB file\n"); |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 763 | return AVERROR_INVALIDDATA; |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 764 | } |
| 765 | memcpy(ext, !strncmp(ext, "IDX", 3) ? "SUB" : "sub", 3); |
Marton Balint | 18ac642 | 2017-12-29 22:30:14 | [diff] [blame] | 766 | av_log(s, AV_LOG_VERBOSE, "IDX/SUB: %s -> %s\n", s->url, vobsub->sub_name); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 767 | } |
Michael Niedermayer | ad83cfe | 2014-10-23 14:07:00 | [diff] [blame] | 768 | |
Michael Niedermayer | 51ddaf6 | 2014-11-16 18:17:34 | [diff] [blame] | 769 | if (!(iformat = av_find_input_format("mpeg"))) { |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 770 | return AVERROR_DEMUXER_NOT_FOUND; |
Michael Niedermayer | 51ddaf6 | 2014-11-16 18:17:34 | [diff] [blame] | 771 | } |
Michael Niedermayer | ff03df6 | 2014-10-25 14:28:41 | [diff] [blame] | 772 | |
Michael Niedermayer | ad83cfe | 2014-10-23 14:07:00 | [diff] [blame] | 773 | vobsub->sub_ctx = avformat_alloc_context(); |
Michael Niedermayer | 51ddaf6 | 2014-11-16 18:17:34 | [diff] [blame] | 774 | if (!vobsub->sub_ctx) { |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 775 | return AVERROR(ENOMEM); |
Michael Niedermayer | 51ddaf6 | 2014-11-16 18:17:34 | [diff] [blame] | 776 | } |
Michael Niedermayer | ad83cfe | 2014-10-23 14:07:00 | [diff] [blame] | 777 | |
Derek Buitenhuis | 9362973 | 2016-03-03 17:14:26 | [diff] [blame] | 778 | if ((ret = ff_copy_whiteblacklists(vobsub->sub_ctx, s)) < 0) |
Andreas Rheinhardt | bcdc1d1 | 2020-03-21 20:03:44 | [diff] [blame] | 779 | return ret; |
Michael Niedermayer | ad83cfe | 2014-10-23 14:07:00 | [diff] [blame] | 780 | |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 781 | ret = avformat_open_input(&vobsub->sub_ctx, vobsub->sub_name, iformat, NULL); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 782 | if (ret < 0) { |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 783 | av_log(s, AV_LOG_ERROR, "Unable to open %s as MPEG subtitles\n", vobsub->sub_name); |
Andreas Rheinhardt | bcdc1d1 | 2020-03-21 20:03:44 | [diff] [blame] | 784 | return ret; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 785 | } |
| 786 | |
Andreas Rheinhardt | bcdc1d1 | 2020-03-21 20:03:44 | [diff] [blame] | 787 | av_bprint_init(&header, 0, INT_MAX - AV_INPUT_BUFFER_PADDING_SIZE); |
| 788 | |
James Almer | d34ec64 | 2014-08-07 20:12:41 | [diff] [blame] | 789 | while (!avio_feof(s->pb)) { |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 790 | char line[MAX_LINE_SIZE]; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 791 | int len = ff_get_line(s->pb, line, sizeof(line)); |
| 792 | |
| 793 | if (!len) |
| 794 | break; |
| 795 | |
| 796 | line[strcspn(line, "\r\n")] = 0; |
| 797 | |
| 798 | if (!strncmp(line, "id:", 3)) { |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 799 | if (sscanf(line, "id: %63[^,], index: %u", id, &stream_id) != 2) { |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 800 | av_log(s, AV_LOG_WARNING, "Unable to parse index line '%s', " |
| 801 | "assuming 'id: und, index: 0'\n", line); |
| 802 | strcpy(id, "und"); |
| 803 | stream_id = 0; |
| 804 | } |
| 805 | |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 806 | if (stream_id >= FF_ARRAY_ELEMS(vobsub->q)) { |
| 807 | av_log(s, AV_LOG_ERROR, "Maximum number of subtitles streams reached\n"); |
| 808 | ret = AVERROR(EINVAL); |
| 809 | goto end; |
| 810 | } |
| 811 | |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 812 | header_parsed = 1; |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 813 | alt[0] = '\0'; |
| 814 | /* We do not create the stream immediately to avoid adding empty |
| 815 | * streams. See the following timestamp entry. */ |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 816 | |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 817 | av_log(s, AV_LOG_DEBUG, "IDX stream[%d] id=%s\n", stream_id, id); |
| 818 | |
| 819 | } else if (!strncmp(line, "timestamp:", 10)) { |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 820 | AVPacket *sub; |
| 821 | int hh, mm, ss, ms; |
| 822 | int64_t pos, timestamp; |
| 823 | const char *p = line + 10; |
| 824 | |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 825 | if (stream_id == -1) { |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 826 | av_log(s, AV_LOG_ERROR, "Timestamp declared before any stream\n"); |
| 827 | ret = AVERROR_INVALIDDATA; |
| 828 | goto end; |
| 829 | } |
| 830 | |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 831 | if (!st || st->id != stream_id) { |
| 832 | st = avformat_new_stream(s, NULL); |
| 833 | if (!st) { |
| 834 | ret = AVERROR(ENOMEM); |
| 835 | goto end; |
| 836 | } |
| 837 | st->id = stream_id; |
Derek Buitenhuis | 6f69f7a | 2016-04-10 19:58:15 | [diff] [blame] | 838 | st->codecpar->codec_type = AVMEDIA_TYPE_SUBTITLE; |
| 839 | st->codecpar->codec_id = AV_CODEC_ID_DVD_SUBTITLE; |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 840 | avpriv_set_pts_info(st, 64, 1, 1000); |
| 841 | av_dict_set(&st->metadata, "language", id, 0); |
| 842 | if (alt[0]) |
| 843 | av_dict_set(&st->metadata, "title", alt, 0); |
| 844 | } |
| 845 | |
James Almer | 89388a9 | 2013-04-10 07:52:08 | [diff] [blame] | 846 | if (sscanf(p, "%02d:%02d:%02d:%03d, filepos: %"SCNx64, |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 847 | &hh, &mm, &ss, &ms, &pos) != 5) { |
| 848 | av_log(s, AV_LOG_ERROR, "Unable to parse timestamp line '%s', " |
| 849 | "abort parsing\n", line); |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 850 | ret = AVERROR_INVALIDDATA; |
| 851 | goto end; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 852 | } |
| 853 | timestamp = (hh*3600LL + mm*60LL + ss) * 1000LL + ms + delay; |
Clément Bœsch | b7dd250 | 2014-05-01 14:18:12 | [diff] [blame] | 854 | timestamp = av_rescale_q(timestamp, av_make_q(1, 1000), st->time_base); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 855 | |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 856 | sub = ff_subtitles_queue_insert(&vobsub->q[s->nb_streams - 1], "", 0, 0); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 857 | if (!sub) { |
| 858 | ret = AVERROR(ENOMEM); |
| 859 | goto end; |
| 860 | } |
| 861 | sub->pos = pos; |
| 862 | sub->pts = timestamp; |
| 863 | sub->stream_index = s->nb_streams - 1; |
| 864 | |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 865 | } else if (!strncmp(line, "alt:", 4)) { |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 866 | const char *p = line + 4; |
| 867 | |
| 868 | while (*p == ' ') |
| 869 | p++; |
Clément Bœsch | d86cf4a | 2014-09-13 13:15:32 | [diff] [blame] | 870 | av_log(s, AV_LOG_DEBUG, "IDX stream[%d] name=%s\n", stream_id, p); |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 871 | av_strlcpy(alt, p, sizeof(alt)); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 872 | header_parsed = 1; |
| 873 | |
| 874 | } else if (!strncmp(line, "delay:", 6)) { |
| 875 | int sign = 1, hh = 0, mm = 0, ss = 0, ms = 0; |
| 876 | const char *p = line + 6; |
| 877 | |
| 878 | while (*p == ' ') |
| 879 | p++; |
| 880 | if (*p == '-' || *p == '+') { |
| 881 | sign = *p == '-' ? -1 : 1; |
| 882 | p++; |
| 883 | } |
| 884 | sscanf(p, "%d:%d:%d:%d", &hh, &mm, &ss, &ms); |
| 885 | delay = ((hh*3600LL + mm*60LL + ss) * 1000LL + ms) * sign; |
| 886 | |
| 887 | } else if (!strncmp(line, "langidx:", 8)) { |
| 888 | const char *p = line + 8; |
| 889 | |
| 890 | if (sscanf(p, "%d", &langidx) != 1) |
| 891 | av_log(s, AV_LOG_ERROR, "Invalid langidx specified\n"); |
| 892 | |
| 893 | } else if (!header_parsed) { |
| 894 | if (line[0] && line[0] != '#') |
| 895 | av_bprintf(&header, "%s\n", line); |
| 896 | } |
| 897 | } |
| 898 | |
| 899 | if (langidx < s->nb_streams) |
| 900 | s->streams[langidx]->disposition |= AV_DISPOSITION_DEFAULT; |
| 901 | |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 902 | for (i = 0; i < s->nb_streams; i++) { |
| 903 | vobsub->q[i].sort = SUB_SORT_POS_TS; |
wm4 | 5c93e57 | 2015-09-21 11:43:32 | [diff] [blame] | 904 | vobsub->q[i].keep_duplicates = 1; |
Clément Bœsch | af924fd | 2015-09-10 19:40:07 | [diff] [blame] | 905 | ff_subtitles_queue_finalize(s, &vobsub->q[i]); |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 906 | } |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 907 | |
| 908 | if (!av_bprint_is_complete(&header)) { |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 909 | ret = AVERROR(ENOMEM); |
| 910 | goto end; |
| 911 | } |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 912 | for (i = 0; i < s->nb_streams; i++) { |
Andreas Rheinhardt | c36eae6 | 2019-10-22 13:16:42 | [diff] [blame] | 913 | AVCodecParameters *par = s->streams[i]->codecpar; |
| 914 | ret = ff_alloc_extradata(par, header.len); |
| 915 | if (ret < 0) { |
Steven Liu | f526317 | 2019-10-10 02:47:22 | [diff] [blame] | 916 | goto end; |
| 917 | } |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 918 | memcpy(par->extradata, header.str, header.len); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 919 | } |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 920 | end: |
Andreas Rheinhardt | bc3cf2b | 2019-12-04 12:37:13 | [diff] [blame] | 921 | av_bprint_finalize(&header, NULL); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 922 | return ret; |
| 923 | } |
| 924 | |
| 925 | static int vobsub_read_packet(AVFormatContext *s, AVPacket *pkt) |
| 926 | { |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 927 | VobSubDemuxContext *vobsub = s->priv_data; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 928 | FFDemuxSubtitlesQueue *q; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 929 | AVIOContext *pb = vobsub->sub_ctx->pb; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 930 | int ret, psize, total_read = 0, i; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 931 | |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 932 | int64_t min_ts = INT64_MAX; |
| 933 | int sid = 0; |
| 934 | for (i = 0; i < s->nb_streams; i++) { |
| 935 | FFDemuxSubtitlesQueue *tmpq = &vobsub->q[i]; |
Clément Bœsch | cba92a2 | 2014-05-24 09:03:23 | [diff] [blame] | 936 | int64_t ts; |
| 937 | av_assert0(tmpq->nb_subs); |
Andreas Rheinhardt | a39536c | 2019-10-22 12:54:09 | [diff] [blame] | 938 | |
| 939 | if (tmpq->current_sub_idx >= tmpq->nb_subs) |
| 940 | continue; |
| 941 | |
James Almer | 98a776b | 2021-02-03 23:55:27 | [diff] [blame] | 942 | ts = tmpq->subs[tmpq->current_sub_idx]->pts; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 943 | if (ts < min_ts) { |
| 944 | min_ts = ts; |
| 945 | sid = i; |
| 946 | } |
| 947 | } |
| 948 | q = &vobsub->q[sid]; |
Andreas Rheinhardt | 6d354ae | 2019-10-08 05:41:14 | [diff] [blame] | 949 | /* The returned packet will have size zero, |
| 950 | * so that it can be directly used with av_grow_packet. */ |
| 951 | ret = ff_subtitles_queue_read_packet(q, pkt); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 952 | if (ret < 0) |
| 953 | return ret; |
| 954 | |
| 955 | /* compute maximum packet size using the next packet position. This is |
| 956 | * useful when the len in the header is non-sense */ |
| 957 | if (q->current_sub_idx < q->nb_subs) { |
James Almer | 98a776b | 2021-02-03 23:55:27 | [diff] [blame] | 958 | psize = q->subs[q->current_sub_idx]->pos - pkt->pos; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 959 | } else { |
| 960 | int64_t fsize = avio_size(pb); |
Andreas Rheinhardt | 6d354ae | 2019-10-08 05:41:14 | [diff] [blame] | 961 | psize = fsize < 0 ? 0xffff : fsize - pkt->pos; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 962 | } |
| 963 | |
Andreas Rheinhardt | 6d354ae | 2019-10-08 05:41:14 | [diff] [blame] | 964 | avio_seek(pb, pkt->pos, SEEK_SET); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 965 | |
| 966 | do { |
| 967 | int n, to_read, startcode; |
| 968 | int64_t pts, dts; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 969 | int64_t old_pos = avio_tell(pb), new_pos; |
| 970 | int pkt_size; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 971 | |
| 972 | ret = mpegps_read_pes_header(vobsub->sub_ctx, NULL, &startcode, &pts, &dts); |
Clément Bœsch | d4dc673 | 2013-10-04 09:25:08 | [diff] [blame] | 973 | if (ret < 0) { |
| 974 | if (pkt->size) // raise packet even if incomplete |
| 975 | break; |
Andreas Rheinhardt | 3875af8 | 2020-03-21 20:08:04 | [diff] [blame] | 976 | return ret; |
Clément Bœsch | d4dc673 | 2013-10-04 09:25:08 | [diff] [blame] | 977 | } |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 978 | to_read = ret & 0xffff; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 979 | new_pos = avio_tell(pb); |
| 980 | pkt_size = ret + (new_pos - old_pos); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 981 | |
| 982 | /* this prevents reads above the current packet */ |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 983 | if (total_read + pkt_size > psize) |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 984 | break; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 985 | total_read += pkt_size; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 986 | |
| 987 | /* the current chunk doesn't match the stream index (unlikely) */ |
Andreas Rheinhardt | 6d354ae | 2019-10-08 05:41:14 | [diff] [blame] | 988 | if ((startcode & 0x1f) != s->streams[pkt->stream_index]->id) |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 989 | break; |
| 990 | |
| 991 | ret = av_grow_packet(pkt, to_read); |
| 992 | if (ret < 0) |
Andreas Rheinhardt | 3875af8 | 2020-03-21 20:08:04 | [diff] [blame] | 993 | return ret; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 994 | |
| 995 | n = avio_read(pb, pkt->data + (pkt->size - to_read), to_read); |
| 996 | if (n < to_read) |
| 997 | pkt->size -= to_read - n; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 998 | } while (total_read < psize); |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 999 | |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1000 | return 0; |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1001 | } |
| 1002 | |
| 1003 | static int vobsub_read_seek(AVFormatContext *s, int stream_index, |
| 1004 | int64_t min_ts, int64_t ts, int64_t max_ts, int flags) |
| 1005 | { |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 1006 | VobSubDemuxContext *vobsub = s->priv_data; |
Clément Bœsch | f8678dc | 2013-09-08 07:43:53 | [diff] [blame] | 1007 | |
| 1008 | /* Rescale requested timestamps based on the first stream (timebase is the |
| 1009 | * same for all subtitles stream within a .idx/.sub). Rescaling is done just |
| 1010 | * like in avformat_seek_file(). */ |
| 1011 | if (stream_index == -1 && s->nb_streams != 1) { |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 1012 | int i, ret = 0; |
Clément Bœsch | f8678dc | 2013-09-08 07:43:53 | [diff] [blame] | 1013 | AVRational time_base = s->streams[0]->time_base; |
| 1014 | ts = av_rescale_q(ts, AV_TIME_BASE_Q, time_base); |
| 1015 | min_ts = av_rescale_rnd(min_ts, time_base.den, |
| 1016 | time_base.num * (int64_t)AV_TIME_BASE, |
| 1017 | AV_ROUND_UP | AV_ROUND_PASS_MINMAX); |
| 1018 | max_ts = av_rescale_rnd(max_ts, time_base.den, |
| 1019 | time_base.num * (int64_t)AV_TIME_BASE, |
| 1020 | AV_ROUND_DOWN | AV_ROUND_PASS_MINMAX); |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 1021 | for (i = 0; i < s->nb_streams; i++) { |
| 1022 | int r = ff_subtitles_queue_seek(&vobsub->q[i], s, stream_index, |
| 1023 | min_ts, ts, max_ts, flags); |
| 1024 | if (r < 0) |
| 1025 | ret = r; |
| 1026 | } |
| 1027 | return ret; |
Clément Bœsch | f8678dc | 2013-09-08 07:43:53 | [diff] [blame] | 1028 | } |
| 1029 | |
Clément Bœsch | 4189fe1 | 2013-10-20 19:23:43 | [diff] [blame] | 1030 | if (stream_index == -1) // only 1 stream |
| 1031 | stream_index = 0; |
Clément Bœsch | dbfe611 | 2013-09-29 20:05:14 | [diff] [blame] | 1032 | return ff_subtitles_queue_seek(&vobsub->q[stream_index], s, stream_index, |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1033 | min_ts, ts, max_ts, flags); |
| 1034 | } |
| 1035 | |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 1036 | static const AVOption options[] = { |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 1037 | { "sub_name", "URI for .sub file", offsetof(VobSubDemuxContext, sub_name), AV_OPT_TYPE_STRING, { .str = NULL }, 0, 0, AV_OPT_FLAG_DECODING_PARAM }, |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 1038 | { NULL } |
| 1039 | }; |
| 1040 | |
| 1041 | static const AVClass vobsub_demuxer_class = { |
| 1042 | .class_name = "vobsub", |
| 1043 | .item_name = av_default_item_name, |
| 1044 | .option = options, |
| 1045 | .version = LIBAVUTIL_VERSION_INT, |
| 1046 | }; |
| 1047 | |
Andreas Rheinhardt | bc70684 | 2021-04-19 17:45:24 | [diff] [blame] | 1048 | const AVInputFormat ff_vobsub_demuxer = { |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1049 | .name = "vobsub", |
| 1050 | .long_name = NULL_IF_CONFIG_SMALL("VobSub subtitle format"), |
Andreas Rheinhardt | 3f37880 | 2019-12-04 12:37:12 | [diff] [blame] | 1051 | .priv_data_size = sizeof(VobSubDemuxContext), |
Andreas Rheinhardt | bcdc1d1 | 2020-03-21 20:03:44 | [diff] [blame] | 1052 | .flags_internal = FF_FMT_INIT_CLEANUP, |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1053 | .read_probe = vobsub_probe, |
| 1054 | .read_header = vobsub_read_header, |
| 1055 | .read_packet = vobsub_read_packet, |
| 1056 | .read_seek2 = vobsub_read_seek, |
| 1057 | .read_close = vobsub_read_close, |
| 1058 | .flags = AVFMT_SHOW_IDS, |
| 1059 | .extensions = "idx", |
Rodger Combs | c69ff12 | 2015-04-13 06:17:28 | [diff] [blame] | 1060 | .priv_class = &vobsub_demuxer_class, |
Clément Bœsch | 710c4ba | 2012-09-03 00:51:00 | [diff] [blame] | 1061 | }; |
| 1062 | #endif |