mpegtsenc.c 66.0 KB
Newer Older
1
/*
2
 * MPEG2 transport stream (aka DVB) muxer
3
 * Copyright (c) 2003 Fabrice Bellard
4
 *
5 6 7
 * This file is part of FFmpeg.
 *
 * FFmpeg is free software; you can redistribute it and/or
8 9
 * modify it under the terms of the GNU Lesser General Public
 * 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 14 15 16 17
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
18
 * License along with FFmpeg; if not, write to the Free Software
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20
 */
21

22
#include "libavutil/avassert.h"
23
#include "libavutil/bswap.h"
24
#include "libavutil/crc.h"
25
#include "libavutil/dict.h"
26
#include "libavutil/intreadwrite.h"
27
#include "libavutil/mathematics.h"
28
#include "libavutil/opt.h"
D
Diego Biurrun 已提交
29

30
#include "libavcodec/internal.h"
D
Diego Biurrun 已提交
31

32
#include "avformat.h"
33
#include "avio_internal.h"
34
#include "internal.h"
35 36
#include "mpegts.h"

37 38
#define PCR_TIME_BASE 27000000

39 40 41 42 43 44 45 46 47 48 49 50
/* write DVB SI sections */

/*********************************************/
/* mpegts section writer */

typedef struct MpegTSSection {
    int pid;
    int cc;
    void (*write_packet)(struct MpegTSSection *s, const uint8_t *packet);
    void *opaque;
} MpegTSSection;

51 52 53 54 55 56 57
typedef struct MpegTSService {
    MpegTSSection pmt; /* MPEG2 pmt table context */
    int sid;           /* service ID */
    char *name;
    char *provider_name;
    int pcr_pid;
    int pcr_packet_count;
58
    int pcr_packet_period;
59 60
} MpegTSService;

61 62 63 64 65 66 67 68 69 70
// service_type values as defined in ETSI 300 468
enum {
    MPEGTS_SERVICE_TYPE_DIGITAL_TV                   = 0x01,
    MPEGTS_SERVICE_TYPE_DIGITAL_RADIO                = 0x02,
    MPEGTS_SERVICE_TYPE_TELETEXT                     = 0x03,
    MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_RADIO = 0x0A,
    MPEGTS_SERVICE_TYPE_MPEG2_DIGITAL_HDTV           = 0x11,
    MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_SDTV  = 0x16,
    MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV  = 0x19
};
71
typedef struct MpegTSWrite {
72
    const AVClass *av_class;
73 74 75 76
    MpegTSSection pat; /* MPEG2 pat table */
    MpegTSSection sdt; /* MPEG2 sdt table context */
    MpegTSService **services;
    int sdt_packet_count;
77
    int sdt_packet_period;
78
    int pat_packet_count;
79
    int pat_packet_period;
80 81 82
    int nb_services;
    int onid;
    int tsid;
83
    int64_t first_pcr;
84
    int mux_rate; ///< set to 1 when VBR
85
    int pes_payload_size;
86 87 88 89

    int transport_stream_id;
    int original_network_id;
    int service_id;
90
    int service_type;
91 92 93

    int pmt_start_pid;
    int start_pid;
94
    int m2ts_mode;
95

96 97
    int reemit_pat_pmt; // backward compatibility

98
    int pcr_period;
99 100
#define MPEGTS_FLAG_REEMIT_PAT_PMT  0x01
#define MPEGTS_FLAG_AAC_LATM        0x02
101
#define MPEGTS_FLAG_PAT_PMT_AT_FRAMES           0x04
102
#define MPEGTS_FLAG_SYSTEM_B        0x08
103
    int flags;
104
    int copyts;
105
    int tables_version;
106
    double pat_period;
107
    double sdt_period;
108
    int64_t last_pat_ts;
109
    int64_t last_sdt_ts;
110

R
Reimar Döffinger 已提交
111
    int omit_video_pes_length;
112 113
} MpegTSWrite;

114
/* a PES packet header is generated every DEFAULT_PES_HEADER_FREQ packets */
D
Diego Biurrun 已提交
115
#define DEFAULT_PES_HEADER_FREQ  16
116 117
#define DEFAULT_PES_PAYLOAD_SIZE ((DEFAULT_PES_HEADER_FREQ - 1) * 184 + 170)

118 119 120 121
/* The section length is 12 bits. The first 2 are set to 0, the remaining
 * 10 bits should not exceed 1021. */
#define SECTION_LENGTH 1020

122
/* NOTE: 4 bytes must be left at the end for the crc32 */
123
static void mpegts_write_section(MpegTSSection *s, uint8_t *buf, int len)
124 125 126 127 128 129 130
{
    unsigned int crc;
    unsigned char packet[TS_PACKET_SIZE];
    const unsigned char *buf_ptr;
    unsigned char *q;
    int first, b, len1, left;

D
Diego Biurrun 已提交
131 132 133
    crc = av_bswap32(av_crc(av_crc_get_table(AV_CRC_32_IEEE),
                            -1, buf, len - 4));

134 135
    buf[len - 4] = (crc >> 24) & 0xff;
    buf[len - 3] = (crc >> 16) & 0xff;
D
Diego Biurrun 已提交
136
    buf[len - 2] = (crc >>  8) & 0xff;
137
    buf[len - 1] =  crc        & 0xff;
138

139 140 141
    /* send each packet */
    buf_ptr = buf;
    while (len > 0) {
142
        first = buf == buf_ptr;
D
Diego Biurrun 已提交
143 144
        q     = packet;
        *q++  = 0x47;
145
        b     = s->pid >> 8;
146 147
        if (first)
            b |= 0x40;
D
Diego Biurrun 已提交
148 149
        *q++  = b;
        *q++  = s->pid;
150
        s->cc = s->cc + 1 & 0xf;
D
Diego Biurrun 已提交
151
        *q++  = 0x10 | s->cc;
152 153 154
        if (first)
            *q++ = 0; /* 0 offset */
        len1 = TS_PACKET_SIZE - (q - packet);
155
        if (len1 > len)
156 157 158 159 160 161 162 163 164 165 166
            len1 = len;
        memcpy(q, buf_ptr, len1);
        q += len1;
        /* add known padding data */
        left = TS_PACKET_SIZE - (q - packet);
        if (left > 0)
            memset(q, 0xff, left);

        s->write_packet(s, packet);

        buf_ptr += len1;
D
Diego Biurrun 已提交
167
        len     -= len1;
168 169 170 171 172 173
    }
}

static inline void put16(uint8_t **q_ptr, int val)
{
    uint8_t *q;
D
Diego Biurrun 已提交
174 175 176
    q      = *q_ptr;
    *q++   = val >> 8;
    *q++   = val;
177 178 179
    *q_ptr = q;
}

180
static int mpegts_write_section1(MpegTSSection *s, int tid, int id,
D
Diego Biurrun 已提交
181 182
                                 int version, int sec_num, int last_sec_num,
                                 uint8_t *buf, int len)
183 184 185
{
    uint8_t section[1024], *q;
    unsigned int tot_len;
186 187
    /* reserved_future_use field must be set to 1 for SDT */
    unsigned int flags = tid == SDT_TID ? 0xf000 : 0xb000;
188

189 190 191
    tot_len = 3 + 5 + len + 4;
    /* check if not too big */
    if (tot_len > 1024)
192
        return AVERROR_INVALIDDATA;
193

D
Diego Biurrun 已提交
194
    q    = section;
195
    *q++ = tid;
196
    put16(&q, flags | (len + 5 + 4)); /* 5 byte header + 4 byte CRC */
197 198 199 200 201
    put16(&q, id);
    *q++ = 0xc1 | (version << 1); /* current_next_indicator = 1 */
    *q++ = sec_num;
    *q++ = last_sec_num;
    memcpy(q, buf, len);
202

203 204 205 206 207 208 209
    mpegts_write_section(s, section, tot_len);
    return 0;
}

/*********************************************/
/* mpegts writer */

210
#define DEFAULT_PROVIDER_NAME   "FFmpeg"
211 212 213 214 215
#define DEFAULT_SERVICE_NAME    "Service01"

/* we retransmit the SI info at this rate */
#define SDT_RETRANS_TIME 500
#define PAT_RETRANS_TIME 100
216
#define PCR_RETRANS_TIME 20
217 218

typedef struct MpegTSWriteStream {
219
    struct MpegTSService *service;
220 221
    int pid; /* stream associated pid */
    int cc;
222
    int payload_size;
223
    int first_pts_check; ///< first pts check needed
224
    int prev_payload_key;
225
    int64_t payload_pts;
226
    int64_t payload_dts;
227
    int payload_flags;
228
    uint8_t *payload;
229
    AVFormatContext *amux;
230
    AVRational user_tb;
231 232 233

    /* For Opus */
    int opus_queued_samples;
234
    int opus_pending_trim_start;
235 236 237 238 239 240
} MpegTSWriteStream;

static void mpegts_write_pat(AVFormatContext *s)
{
    MpegTSWrite *ts = s->priv_data;
    MpegTSService *service;
241
    uint8_t data[SECTION_LENGTH], *q;
242
    int i;
243

244
    q = data;
D
Diego Biurrun 已提交
245
    for (i = 0; i < ts->nb_services; i++) {
246 247 248 249
        service = ts->services[i];
        put16(&q, service->sid);
        put16(&q, 0xe000 | service->pmt.pid);
    }
250
    mpegts_write_section1(&ts->pat, PAT_TID, ts->tsid, ts->tables_version, 0, 0,
251 252 253
                          data, q - data);
}

254
static int mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
255
{
256
    MpegTSWrite *ts = s->priv_data;
257
    uint8_t data[SECTION_LENGTH], *q, *desc_length_ptr, *program_info_length_ptr;
258
    int val, stream_type, i, err = 0;
259 260 261 262 263 264 265 266 267 268 269 270

    q = data;
    put16(&q, 0xe000 | service->pcr_pid);

    program_info_length_ptr = q;
    q += 2; /* patched after */

    /* put program info here */

    val = 0xf000 | (q - program_info_length_ptr - 2);
    program_info_length_ptr[0] = val >> 8;
    program_info_length_ptr[1] = val;
271

D
Diego Biurrun 已提交
272
    for (i = 0; i < s->nb_streams; i++) {
273 274
        AVStream *st = s->streams[i];
        MpegTSWriteStream *ts_st = st->priv_data;
D
Diego Biurrun 已提交
275
        AVDictionaryEntry *lang = av_dict_get(st->metadata, "language", NULL, 0);
276

277 278 279 280 281 282
        if (s->nb_programs) {
            AVProgram *program = av_find_program_from_stream(s, NULL, i);
            if (program->id != service->sid)
                continue;
        }

283
        if (q - data > SECTION_LENGTH - 32) {
284 285 286
            err = 1;
            break;
        }
D
Diego Biurrun 已提交
287
        switch (st->codec->codec_id) {
288 289
        case AV_CODEC_ID_MPEG1VIDEO:
        case AV_CODEC_ID_MPEG2VIDEO:
290
            stream_type = STREAM_TYPE_VIDEO_MPEG2;
291
            break;
292
        case AV_CODEC_ID_MPEG4:
293 294
            stream_type = STREAM_TYPE_VIDEO_MPEG4;
            break;
295
        case AV_CODEC_ID_H264:
296 297
            stream_type = STREAM_TYPE_VIDEO_H264;
            break;
298 299 300
        case AV_CODEC_ID_HEVC:
            stream_type = STREAM_TYPE_VIDEO_HEVC;
            break;
301 302 303
        case AV_CODEC_ID_CAVS:
            stream_type = STREAM_TYPE_VIDEO_CAVS;
            break;
304
        case AV_CODEC_ID_DIRAC:
305 306
            stream_type = STREAM_TYPE_VIDEO_DIRAC;
            break;
307 308 309
        case AV_CODEC_ID_VC1:
            stream_type = STREAM_TYPE_VIDEO_VC1;
            break;
310 311
        case AV_CODEC_ID_MP2:
        case AV_CODEC_ID_MP3:
312
            stream_type = STREAM_TYPE_AUDIO_MPEG1;
313
            break;
314
        case AV_CODEC_ID_AAC:
D
Diego Biurrun 已提交
315 316 317
            stream_type = (ts->flags & MPEGTS_FLAG_AAC_LATM)
                          ? STREAM_TYPE_AUDIO_AAC_LATM
                          : STREAM_TYPE_AUDIO_AAC;
318
            break;
319
        case AV_CODEC_ID_AAC_LATM:
320 321
            stream_type = STREAM_TYPE_AUDIO_AAC_LATM;
            break;
322
        case AV_CODEC_ID_AC3:
323 324 325 326 327 328 329 330
            stream_type = (ts->flags & MPEGTS_FLAG_SYSTEM_B)
                          ? STREAM_TYPE_PRIVATE_DATA
                          : STREAM_TYPE_AUDIO_AC3;
            break;
        case AV_CODEC_ID_EAC3:
            stream_type = (ts->flags & MPEGTS_FLAG_SYSTEM_B)
                          ? STREAM_TYPE_PRIVATE_DATA
                          : STREAM_TYPE_AUDIO_EAC3;
331
            break;
332 333 334 335 336 337
        case AV_CODEC_ID_DTS:
            stream_type = STREAM_TYPE_AUDIO_DTS;
            break;
        case AV_CODEC_ID_TRUEHD:
            stream_type = STREAM_TYPE_AUDIO_TRUEHD;
            break;
338 339 340
        case AV_CODEC_ID_OPUS:
            stream_type = STREAM_TYPE_PRIVATE_DATA;
            break;
341 342 343 344
        default:
            stream_type = STREAM_TYPE_PRIVATE_DATA;
            break;
        }
345

346 347 348 349 350 351
        *q++ = stream_type;
        put16(&q, 0xe000 | ts_st->pid);
        desc_length_ptr = q;
        q += 2; /* patched after */

        /* write optional descriptors here */
D
Diego Biurrun 已提交
352
        switch (st->codec->codec_type) {
353
        case AVMEDIA_TYPE_AUDIO:
354 355 356 357 358 359
            if (st->codec->codec_id==AV_CODEC_ID_AC3 && (ts->flags & MPEGTS_FLAG_SYSTEM_B)) {
                *q++=0x6a; // AC3 descriptor see A038 DVB SI
                *q++=1; // 1 byte, all flags sets to 0
                *q++=0; // omit all fields...
            }
            if (st->codec->codec_id==AV_CODEC_ID_EAC3 && (ts->flags & MPEGTS_FLAG_SYSTEM_B)) {
M
Mean 已提交
360 361 362 363
                *q++=0x7a; // EAC3 descriptor see A038 DVB SI
                *q++=1; // 1 byte, all flags sets to 0
                *q++=0; // omit all fields...
            }
364
            if (st->codec->codec_id==AV_CODEC_ID_S302M) {
365 366 367 368 369 370 371
                *q++ = 0x05; /* MPEG-2 registration descriptor*/
                *q++ = 4;
                *q++ = 'B';
                *q++ = 'S';
                *q++ = 'S';
                *q++ = 'D';
            }
372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
            if (st->codec->codec_id==AV_CODEC_ID_OPUS) {
                /* 6 bytes registration descriptor, 4 bytes Opus audio descriptor */
                if (q - data > SECTION_LENGTH - 6 - 4) {
                    err = 1;
                    break;
                }

                *q++ = 0x05; /* MPEG-2 registration descriptor*/
                *q++ = 4;
                *q++ = 'O';
                *q++ = 'p';
                *q++ = 'u';
                *q++ = 's';

                *q++ = 0x7f; /* DVB extension descriptor */
                *q++ = 2;
                *q++ = 0x80;

                if (st->codec->extradata && st->codec->extradata_size >= 19) {
                    if (st->codec->extradata[18] == 0 && st->codec->channels <= 2) {
                        /* RTP mapping family */
                        *q++ = st->codec->channels;
                    } else if (st->codec->extradata[18] == 1 && st->codec->channels <= 8 &&
                               st->codec->extradata_size >= 21 + st->codec->channels) {
                        static const uint8_t coupled_stream_counts[9] = {
                            1, 0, 1, 1, 2, 2, 2, 3, 3
                        };
                        static const uint8_t channel_map_a[8][8] = {
                            {0},
                            {0, 1},
                            {0, 2, 1},
                            {0, 1, 2, 3},
                            {0, 4, 1, 2, 3},
                            {0, 4, 1, 2, 3, 5},
                            {0, 4, 1, 2, 3, 5, 6},
                            {0, 6, 1, 2, 3, 4, 5, 7},
                        };
                        static const uint8_t channel_map_b[8][8] = {
                            {0},
                            {0, 1},
                            {0, 1, 2},
                            {0, 1, 2, 3},
                            {0, 1, 2, 3, 4},
                            {0, 1, 2, 3, 4, 5},
                            {0, 1, 2, 3, 4, 5, 6},
                            {0, 1, 2, 3, 4, 5, 6, 7},
                        };
                        /* Vorbis mapping family */

                        if (st->codec->extradata[19] == st->codec->channels - coupled_stream_counts[st->codec->channels] &&
                            st->codec->extradata[20] == coupled_stream_counts[st->codec->channels] &&
423
                            memcmp(&st->codec->extradata[21], channel_map_a[st->codec->channels-1], st->codec->channels) == 0) {
424 425 426
                            *q++ = st->codec->channels;
                        } else if (st->codec->channels >= 2 && st->codec->extradata[19] == st->codec->channels &&
                                   st->codec->extradata[20] == 0 &&
427
                                   memcmp(&st->codec->extradata[21], channel_map_b[st->codec->channels-1], st->codec->channels) == 0) {
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447
                            *q++ = st->codec->channels | 0x80;
                        } else {
                            /* Unsupported, could write an extended descriptor here */
                            av_log(s, AV_LOG_ERROR, "Unsupported Opus Vorbis-style channel mapping");
                            *q++ = 0xff;
                        }
                    } else {
                        /* Unsupported */
                        av_log(s, AV_LOG_ERROR, "Unsupported Opus channel mapping for family %d", st->codec->extradata[18]);
                        *q++ = 0xff;
                    }
                } else if (st->codec->channels <= 2) {
                    /* Assume RTP mapping family */
                    *q++ = st->codec->channels;
                } else {
                    /* Unsupported */
                    av_log(s, AV_LOG_ERROR, "Unsupported Opus channel mapping");
                    *q++ = 0xff;
                }
            }
M
Mean 已提交
448

449 450 451 452 453
            if (lang) {
                char *p;
                char *next = lang->value;
                uint8_t *len_ptr;

D
Diego Biurrun 已提交
454 455
                *q++     = 0x0a; /* ISO 639 language descriptor */
                len_ptr  = q++;
456 457 458
                *len_ptr = 0;

                for (p = lang->value; next && *len_ptr < 255 / 4 * 4; p = next + 1) {
459 460 461 462
                    if (q - data > SECTION_LENGTH - 4) {
                        err = 1;
                        break;
                    }
463 464 465 466 467 468 469 470
                    next = strchr(p, ',');
                    if (strlen(p) != 3 && (!next || next != p + 3))
                        continue; /* not a 3-letter code */

                    *q++ = *p++;
                    *q++ = *p++;
                    *q++ = *p++;

D
Diego Biurrun 已提交
471 472 473 474 475 476 477 478
                    if (st->disposition & AV_DISPOSITION_CLEAN_EFFECTS)
                        *q++ = 0x01;
                    else if (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED)
                        *q++ = 0x02;
                    else if (st->disposition & AV_DISPOSITION_VISUAL_IMPAIRED)
                        *q++ = 0x03;
                    else
                        *q++ = 0; /* undefined type */
479 480 481 482 483 484

                    *len_ptr += 4;
                }

                if (*len_ptr == 0)
                    q -= 2; /* no language codes were written */
485 486
            }
            break;
487
        case AVMEDIA_TYPE_SUBTITLE:
D
Diego Biurrun 已提交
488
        {
489 490 491 492 493 494 495 496 497 498
           const char default_language[] = "und";
           const char *language = lang && strlen(lang->value) >= 3 ? lang->value : default_language;

           if (st->codec->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
               uint8_t *len_ptr;
               int extradata_copied = 0;

               *q++ = 0x59; /* subtitling_descriptor */
               len_ptr = q++;

499 500 501 502 503
               while (strlen(language) >= 3) {
                   if (sizeof(data) - (q - data) < 8) { /* 8 bytes per DVB subtitle substream data */
                       err = 1;
                       break;
                   }
504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564
                   *q++ = *language++;
                   *q++ = *language++;
                   *q++ = *language++;
                   /* Skip comma */
                   if (*language != '\0')
                       language++;

                   if (st->codec->extradata_size - extradata_copied >= 5) {
                       *q++ = st->codec->extradata[extradata_copied + 4]; /* subtitling_type */
                       memcpy(q, st->codec->extradata + extradata_copied, 4); /* composition_page_id and ancillary_page_id */
                       extradata_copied += 5;
                       q += 4;
                   } else {
                       /* subtitling_type:
                        * 0x10 - normal with no monitor aspect ratio criticality
                        * 0x20 - for the hard of hearing with no monitor aspect ratio criticality */
                       *q++ = (st->disposition & AV_DISPOSITION_HEARING_IMPAIRED) ? 0x20 : 0x10;
                       if ((st->codec->extradata_size == 4) && (extradata_copied == 0)) {
                           /* support of old 4-byte extradata format */
                           memcpy(q, st->codec->extradata, 4); /* composition_page_id and ancillary_page_id */
                           extradata_copied += 4;
                           q += 4;
                       } else {
                           put16(&q, 1); /* composition_page_id */
                           put16(&q, 1); /* ancillary_page_id */
                       }
                   }
               }

               *len_ptr = q - len_ptr - 1;
           } else if (st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT) {
               uint8_t *len_ptr = NULL;
               int extradata_copied = 0;

               /* The descriptor tag. teletext_descriptor */
               *q++ = 0x56;
               len_ptr = q++;

               while (strlen(language) >= 3 && q - data < sizeof(data) - 6) {
                   *q++ = *language++;
                   *q++ = *language++;
                   *q++ = *language++;
                   /* Skip comma */
                   if (*language != '\0')
                       language++;

                   if (st->codec->extradata_size - 1 > extradata_copied) {
                       memcpy(q, st->codec->extradata + extradata_copied, 2);
                       extradata_copied += 2;
                       q += 2;
                   } else {
                       /* The Teletext descriptor:
                        * teletext_type: This 5-bit field indicates the type of Teletext page indicated. (0x01 Initial Teletext page)
                        * teletext_magazine_number: This is a 3-bit field which identifies the magazine number.
                        * teletext_page_number: This is an 8-bit field giving two 4-bit hex digits identifying the page number. */
                       *q++ = 0x08;
                       *q++ = 0x00;
                   }
               }

               *len_ptr = q - len_ptr - 1;
565
            }
D
Diego Biurrun 已提交
566 567
        }
        break;
568
        case AVMEDIA_TYPE_VIDEO:
569 570 571 572 573 574 575
            if (stream_type == STREAM_TYPE_VIDEO_DIRAC) {
                *q++ = 0x05; /*MPEG-2 registration descriptor*/
                *q++ = 4;
                *q++ = 'd';
                *q++ = 'r';
                *q++ = 'a';
                *q++ = 'c';
576 577 578 579 580 581 582
            } else if (stream_type == STREAM_TYPE_VIDEO_VC1) {
                *q++ = 0x05; /*MPEG-2 registration descriptor*/
                *q++ = 4;
                *q++ = 'V';
                *q++ = 'C';
                *q++ = '-';
                *q++ = '1';
583 584
            }
            break;
585 586 587 588 589 590 591 592 593 594
        case AVMEDIA_TYPE_DATA:
            if (st->codec->codec_id == AV_CODEC_ID_SMPTE_KLV) {
                *q++ = 0x05; /* MPEG-2 registration descriptor */
                *q++ = 4;
                *q++ = 'K';
                *q++ = 'L';
                *q++ = 'V';
                *q++ = 'A';
            }
            break;
595
        }
596 597 598 599 600

        val = 0xf000 | (q - desc_length_ptr - 2);
        desc_length_ptr[0] = val >> 8;
        desc_length_ptr[1] = val;
    }
601 602 603 604 605 606 607

    if (err)
        av_log(s, AV_LOG_ERROR,
               "The PMT section cannot fit stream %d and all following streams.\n"
               "Try reducing the number of languages in the audio streams "
               "or the total number of streams.\n", i);

608
    mpegts_write_section1(&service->pmt, PMT_TID, service->sid, ts->tables_version, 0, 0,
609
                          data, q - data);
610
    return 0;
611
}
612

613
/* NOTE: !str is accepted for an empty string */
614 615 616 617 618 619 620 621 622 623 624 625
static void putstr8(uint8_t **q_ptr, const char *str)
{
    uint8_t *q;
    int len;

    q = *q_ptr;
    if (!str)
        len = 0;
    else
        len = strlen(str);
    *q++ = len;
    memcpy(q, str, len);
D
Diego Biurrun 已提交
626
    q     += len;
627 628 629 630 631 632 633
    *q_ptr = q;
}

static void mpegts_write_sdt(AVFormatContext *s)
{
    MpegTSWrite *ts = s->priv_data;
    MpegTSService *service;
634
    uint8_t data[SECTION_LENGTH], *q, *desc_list_len_ptr, *desc_len_ptr;
635
    int i, running_status, free_ca_mode, val;
636

637 638 639
    q = data;
    put16(&q, ts->onid);
    *q++ = 0xff;
D
Diego Biurrun 已提交
640
    for (i = 0; i < ts->nb_services; i++) {
641 642
        service = ts->services[i];
        put16(&q, service->sid);
D
Diego Biurrun 已提交
643
        *q++              = 0xfc | 0x00; /* currently no EIT info */
644
        desc_list_len_ptr = q;
D
Diego Biurrun 已提交
645 646 647
        q                += 2;
        running_status    = 4; /* running */
        free_ca_mode      = 0;
648 649

        /* write only one descriptor for the service name and provider */
D
Diego Biurrun 已提交
650
        *q++         = 0x48;
651 652
        desc_len_ptr = q;
        q++;
653
        *q++         = ts->service_type;
654 655 656 657 658
        putstr8(&q, service->provider_name);
        putstr8(&q, service->name);
        desc_len_ptr[0] = q - desc_len_ptr - 1;

        /* fill descriptor length */
659
        val = (running_status << 13) | (free_ca_mode << 12) |
D
Diego Biurrun 已提交
660
              (q - desc_list_len_ptr - 2);
661 662 663
        desc_list_len_ptr[0] = val >> 8;
        desc_list_len_ptr[1] = val;
    }
664
    mpegts_write_section1(&ts->sdt, SDT_TID, ts->tsid, ts->tables_version, 0, 0,
665 666 667
                          data, q - data);
}

D
Diego Biurrun 已提交
668
static MpegTSService *mpegts_add_service(MpegTSWrite *ts, int sid,
669
                                         const char *provider_name,
670 671 672 673 674 675 676
                                         const char *name)
{
    MpegTSService *service;

    service = av_mallocz(sizeof(MpegTSService));
    if (!service)
        return NULL;
D
Diego Biurrun 已提交
677 678
    service->pmt.pid       = ts->pmt_start_pid + ts->nb_services;
    service->sid           = sid;
679
    service->pcr_pid       = 0x1fff;
680
    service->provider_name = av_strdup(provider_name);
D
Diego Biurrun 已提交
681
    service->name          = av_strdup(name);
682 683 684 685 686
    if (!service->provider_name || !service->name)
        goto fail;
    if (av_dynarray_add_nofree(&ts->services, &ts->nb_services, service) < 0)
        goto fail;

687
    return service;
688 689 690 691 692
fail:
    av_freep(&service->provider_name);
    av_freep(&service->name);
    av_free(service);
    return NULL;
693 694
}

695 696 697 698 699 700 701 702 703 704 705 706 707 708
static int64_t get_pcr(const MpegTSWrite *ts, AVIOContext *pb)
{
    return av_rescale(avio_tell(pb) + 11, 8 * PCR_TIME_BASE, ts->mux_rate) +
           ts->first_pcr;
}

static void mpegts_prefix_m2ts_header(AVFormatContext *s)
{
    MpegTSWrite *ts = s->priv_data;
    if (ts->m2ts_mode) {
        int64_t pcr = get_pcr(s->priv_data, s->pb);
        uint32_t tp_extra_header = pcr % 0x3fffffff;
        tp_extra_header = AV_RB32(&tp_extra_header);
        avio_write(s->pb, (unsigned char *) &tp_extra_header,
709
                   sizeof(tp_extra_header));
710 711 712
    }
}

713 714 715
static void section_write_packet(MpegTSSection *s, const uint8_t *packet)
{
    AVFormatContext *ctx = s->opaque;
716
    mpegts_prefix_m2ts_header(ctx);
717
    avio_write(ctx->pb, packet, TS_PACKET_SIZE);
718 719
}

720
static int mpegts_init(AVFormatContext *s)
721 722 723 724
{
    MpegTSWrite *ts = s->priv_data;
    MpegTSWriteStream *ts_st;
    MpegTSService *service;
725
    AVStream *st, *pcr_st = NULL;
726
    AVDictionaryEntry *title, *provider;
727
    int i, j;
728
    const char *service_name;
729
    const char *provider_name;
730
    int *pids;
731
    int ret;
732

733 734 735
    if (s->max_delay < 0) /* Not set by the caller */
        s->max_delay = 0;

736 737 738
    // round up to a whole number of TS packets
    ts->pes_payload_size = (ts->pes_payload_size + 14 + 183) / 184 * 184 - 14;

739 740
    ts->tsid = ts->transport_stream_id;
    ts->onid = ts->original_network_id;
741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777
    if (!s->nb_programs) {
        /* allocate a single DVB service */
        title = av_dict_get(s->metadata, "service_name", NULL, 0);
        if (!title)
            title = av_dict_get(s->metadata, "title", NULL, 0);
        service_name  = title ? title->value : DEFAULT_SERVICE_NAME;
        provider      = av_dict_get(s->metadata, "service_provider", NULL, 0);
        provider_name = provider ? provider->value : DEFAULT_PROVIDER_NAME;
        service       = mpegts_add_service(ts, ts->service_id,
                                           provider_name, service_name);

        if (!service)
            return AVERROR(ENOMEM);

        service->pmt.write_packet = section_write_packet;
        service->pmt.opaque       = s;
        service->pmt.cc           = 15;
    } else {
        for (i = 0; i < s->nb_programs; i++) {
            AVProgram *program = s->programs[i];
            title = av_dict_get(program->metadata, "service_name", NULL, 0);
            if (!title)
                title = av_dict_get(program->metadata, "title", NULL, 0);
            service_name  = title ? title->value : DEFAULT_SERVICE_NAME;
            provider      = av_dict_get(program->metadata, "service_provider", NULL, 0);
            provider_name = provider ? provider->value : DEFAULT_PROVIDER_NAME;
            service       = mpegts_add_service(ts, program->id,
                                               provider_name, service_name);

            if (!service)
                return AVERROR(ENOMEM);

            service->pmt.write_packet = section_write_packet;
            service->pmt.opaque       = s;
            service->pmt.cc           = 15;
        }
    }
778

D
Diego Biurrun 已提交
779 780 781 782
    ts->pat.pid          = PAT_PID;
    /* Initialize at 15 so that it wraps and is equal to 0 for the
     * first packet we write. */
    ts->pat.cc           = 15;
783
    ts->pat.write_packet = section_write_packet;
D
Diego Biurrun 已提交
784
    ts->pat.opaque       = s;
785

D
Diego Biurrun 已提交
786 787
    ts->sdt.pid          = SDT_PID;
    ts->sdt.cc           = 15;
788
    ts->sdt.write_packet = section_write_packet;
D
Diego Biurrun 已提交
789
    ts->sdt.opaque       = s;
790

791
    pids = av_malloc_array(s->nb_streams, sizeof(*pids));
792
    if (!pids) {
793 794
        ret = AVERROR(ENOMEM);
        goto fail;
795
    }
796

797
    /* assign pids to each stream */
D
Diego Biurrun 已提交
798
    for (i = 0; i < s->nb_streams; i++) {
799
        st = s->streams[i];
800

801
        ts_st = av_mallocz(sizeof(MpegTSWriteStream));
802 803
        if (!ts_st) {
            ret = AVERROR(ENOMEM);
804
            goto fail;
805
        }
806
        st->priv_data = ts_st;
807 808 809 810

        ts_st->user_tb = st->time_base;
        avpriv_set_pts_info(st, 33, 1, 90000);

811
        ts_st->payload = av_mallocz(ts->pes_payload_size);
812 813
        if (!ts_st->payload) {
            ret = AVERROR(ENOMEM);
814
            goto fail;
815
        }
816
        ts_st->service = service;
817 818 819
        /* MPEG pid values < 16 are reserved. Applications which set st->id in
         * this range are assigned a calculated pid. */
        if (st->id < 16) {
820
            ts_st->pid = ts->start_pid + i;
821 822 823
        } else if (st->id < 0x1FFF) {
            ts_st->pid = st->id;
        } else {
D
Diego Biurrun 已提交
824 825
            av_log(s, AV_LOG_ERROR,
                   "Invalid stream id %d, must be less than 8191\n", st->id);
826
            ret = AVERROR(EINVAL);
827 828 829 830
            goto fail;
        }
        if (ts_st->pid == service->pmt.pid) {
            av_log(s, AV_LOG_ERROR, "Duplicate stream id %d\n", ts_st->pid);
831
            ret = AVERROR(EINVAL);
832 833
            goto fail;
        }
D
Diego Biurrun 已提交
834
        for (j = 0; j < i; j++) {
835 836
            if (pids[j] == ts_st->pid) {
                av_log(s, AV_LOG_ERROR, "Duplicate stream id %d\n", ts_st->pid);
837
                ret = AVERROR(EINVAL);
838 839
                goto fail;
            }
D
Diego Biurrun 已提交
840 841 842 843
        }
        pids[i]                = ts_st->pid;
        ts_st->payload_pts     = AV_NOPTS_VALUE;
        ts_st->payload_dts     = AV_NOPTS_VALUE;
844
        ts_st->first_pts_check = 1;
D
Diego Biurrun 已提交
845
        ts_st->cc              = 15;
846
        /* update PCR pid by using the first video stream */
847
        if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
848
            service->pcr_pid == 0x1fff) {
849
            service->pcr_pid = ts_st->pid;
D
Diego Biurrun 已提交
850
            pcr_st           = st;
851
        }
852
        if (st->codec->codec_id == AV_CODEC_ID_AAC &&
D
Diego Biurrun 已提交
853
            st->codec->extradata_size > 0) {
854 855 856 857
            AVStream *ast;
            ts_st->amux = avformat_alloc_context();
            if (!ts_st->amux) {
                ret = AVERROR(ENOMEM);
858
                goto fail;
859
            }
D
Diego Biurrun 已提交
860 861 862
            ts_st->amux->oformat =
                av_guess_format((ts->flags & MPEGTS_FLAG_AAC_LATM) ? "latm" : "adts",
                                NULL, NULL);
863 864 865 866
            if (!ts_st->amux->oformat) {
                ret = AVERROR(EINVAL);
                goto fail;
            }
867
            if (!(ast = avformat_new_stream(ts_st->amux, NULL))) {
868 869 870
                ret = AVERROR(ENOMEM);
                goto fail;
            }
871 872 873
            ret = avcodec_copy_context(ast->codec, st->codec);
            if (ret != 0)
                goto fail;
874
            ast->time_base = st->time_base;
875 876
            ret = avformat_write_header(ts_st->amux, NULL);
            if (ret < 0)
877
                goto fail;
878
        }
879 880 881
        if (st->codec->codec_id == AV_CODEC_ID_OPUS) {
            ts_st->opus_pending_trim_start = st->codec->initial_padding * 48000 / st->codec->sample_rate;
        }
882
    }
883

884
    av_freep(&pids);
885

886 887
    /* if no video stream, use the first stream as PCR */
    if (service->pcr_pid == 0x1fff && s->nb_streams > 0) {
D
Diego Biurrun 已提交
888 889
        pcr_st           = s->streams[0];
        ts_st            = pcr_st->priv_data;
890
        service->pcr_pid = ts_st->pid;
891 892
    } else
        ts_st = pcr_st->priv_data;
893

894
    if (ts->mux_rate > 1) {
895
        service->pcr_packet_period = (int64_t)ts->mux_rate * ts->pcr_period /
D
Diego Biurrun 已提交
896
                                     (TS_PACKET_SIZE * 8 * 1000);
897
        ts->sdt_packet_period      = (int64_t)ts->mux_rate * SDT_RETRANS_TIME /
D
Diego Biurrun 已提交
898
                                     (TS_PACKET_SIZE * 8 * 1000);
899
        ts->pat_packet_period      = (int64_t)ts->mux_rate * PAT_RETRANS_TIME /
D
Diego Biurrun 已提交
900
                                     (TS_PACKET_SIZE * 8 * 1000);
B
Baptiste Coudurier 已提交
901

902
        if (ts->copyts < 1)
903
            ts->first_pcr = av_rescale(s->max_delay, PCR_TIME_BASE, AV_TIME_BASE);
904
    } else {
905
        /* Arbitrary values, PAT/PMT will also be written on video key frames */
906 907
        ts->sdt_packet_period = 200;
        ts->pat_packet_period = 40;
908
        if (pcr_st->codec->codec_type == AVMEDIA_TYPE_AUDIO) {
909 910 911
            if (!pcr_st->codec->frame_size) {
                av_log(s, AV_LOG_WARNING, "frame size not set\n");
                service->pcr_packet_period =
D
Diego Biurrun 已提交
912
                    pcr_st->codec->sample_rate / (10 * 512);
913 914
            } else {
                service->pcr_packet_period =
D
Diego Biurrun 已提交
915
                    pcr_st->codec->sample_rate / (10 * pcr_st->codec->frame_size);
916 917 918
            }
        } else {
            // max delta PCR 0.1s
919
            // TODO: should be avg_frame_rate
920
            service->pcr_packet_period =
921
                ts_st->user_tb.den / (10 * ts_st->user_tb.num);
922
        }
923
        if (!service->pcr_packet_period)
924
            service->pcr_packet_period = 1;
925 926
    }

927
    ts->last_pat_ts = AV_NOPTS_VALUE;
928
    ts->last_sdt_ts = AV_NOPTS_VALUE;
929 930 931 932
    // The user specified a period, use only it
    if (ts->pat_period < INT_MAX/2) {
        ts->pat_packet_period = INT_MAX;
    }
933 934 935
    if (ts->sdt_period < INT_MAX/2) {
        ts->sdt_packet_period = INT_MAX;
    }
936

937 938
    // output a PCR as soon as possible
    service->pcr_packet_count = service->pcr_packet_period;
D
Diego Biurrun 已提交
939 940
    ts->pat_packet_count      = ts->pat_packet_period - 1;
    ts->sdt_packet_count      = ts->sdt_packet_period - 1;
941

942
    if (ts->mux_rate == 1)
943
        av_log(s, AV_LOG_VERBOSE, "muxrate VBR, ");
944
    else
945
        av_log(s, AV_LOG_VERBOSE, "muxrate %d, ", ts->mux_rate);
D
Diego Biurrun 已提交
946 947
    av_log(s, AV_LOG_VERBOSE,
           "pcr every %d pkts, sdt every %d, pat/pmt every %d pkts\n",
948
           service->pcr_packet_period,
949
           ts->sdt_packet_period, ts->pat_packet_period);
950

951 952 953 954 955 956 957 958
    if (ts->m2ts_mode == -1) {
        if (av_match_ext(s->filename, "m2ts")) {
            ts->m2ts_mode = 1;
        } else {
            ts->m2ts_mode = 0;
        }
    }

959 960
    return 0;

D
Diego Biurrun 已提交
961
fail:
962
    av_freep(&pids);
963
    return ret;
964 965 966
}

/* send SDT, PAT and PMT tables regulary */
967
static void retransmit_si_info(AVFormatContext *s, int force_pat, int64_t dts)
968 969 970 971
{
    MpegTSWrite *ts = s->priv_data;
    int i;

972 973 974 975
    if (++ts->sdt_packet_count == ts->sdt_packet_period ||
        (dts != AV_NOPTS_VALUE && ts->last_sdt_ts == AV_NOPTS_VALUE) ||
        (dts != AV_NOPTS_VALUE && dts - ts->last_sdt_ts >= ts->sdt_period*90000.0)
    ) {
976
        ts->sdt_packet_count = 0;
977 978
        if (dts != AV_NOPTS_VALUE)
            ts->last_sdt_ts = FFMAX(dts, ts->last_sdt_ts);
979 980
        mpegts_write_sdt(s);
    }
981 982 983 984
    if (++ts->pat_packet_count == ts->pat_packet_period ||
        (dts != AV_NOPTS_VALUE && ts->last_pat_ts == AV_NOPTS_VALUE) ||
        (dts != AV_NOPTS_VALUE && dts - ts->last_pat_ts >= ts->pat_period*90000.0) ||
        force_pat) {
985
        ts->pat_packet_count = 0;
986 987
        if (dts != AV_NOPTS_VALUE)
            ts->last_pat_ts = FFMAX(dts, ts->last_pat_ts);
988
        mpegts_write_pat(s);
D
Diego Biurrun 已提交
989
        for (i = 0; i < ts->nb_services; i++)
990 991 992 993
            mpegts_write_pmt(s, ts->services[i]);
    }
}

994
static int write_pcr_bits(uint8_t *buf, int64_t pcr)
995 996 997 998 999
{
    int64_t pcr_low = pcr % 300, pcr_high = pcr / 300;

    *buf++ = pcr_high >> 25;
    *buf++ = pcr_high >> 17;
D
Diego Biurrun 已提交
1000 1001 1002
    *buf++ = pcr_high >>  9;
    *buf++ = pcr_high >>  1;
    *buf++ = pcr_high <<  7 | pcr_low >> 8 | 0x7e;
1003 1004
    *buf++ = pcr_low;

1005
    return 6;
1006 1007
}

1008 1009 1010 1011 1012 1013
/* Write a single null transport stream packet */
static void mpegts_insert_null_packet(AVFormatContext *s)
{
    uint8_t *q;
    uint8_t buf[TS_PACKET_SIZE];

D
Diego Biurrun 已提交
1014
    q    = buf;
1015 1016 1017 1018 1019
    *q++ = 0x47;
    *q++ = 0x00 | 0x1f;
    *q++ = 0xff;
    *q++ = 0x10;
    memset(q, 0x0FF, TS_PACKET_SIZE - (q - buf));
1020
    mpegts_prefix_m2ts_header(s);
1021
    avio_write(s->pb, buf, TS_PACKET_SIZE);
1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
}

/* Write a single transport stream packet with a PCR and no payload */
static void mpegts_insert_pcr_only(AVFormatContext *s, AVStream *st)
{
    MpegTSWrite *ts = s->priv_data;
    MpegTSWriteStream *ts_st = st->priv_data;
    uint8_t *q;
    uint8_t buf[TS_PACKET_SIZE];

D
Diego Biurrun 已提交
1032
    q    = buf;
1033 1034 1035 1036 1037 1038 1039 1040 1041
    *q++ = 0x47;
    *q++ = ts_st->pid >> 8;
    *q++ = ts_st->pid;
    *q++ = 0x20 | ts_st->cc;   /* Adaptation only */
    /* Continuity Count field does not increment (see 13818-1 section 2.4.3.3) */
    *q++ = TS_PACKET_SIZE - 5; /* Adaptation Field Length */
    *q++ = 0x10;               /* Adaptation flags: PCR present */

    /* PCR coded into 6 bytes */
1042
    q += write_pcr_bits(q, get_pcr(ts, s->pb));
1043 1044 1045

    /* stuffing bytes */
    memset(q, 0xFF, TS_PACKET_SIZE - (q - buf));
1046
    mpegts_prefix_m2ts_header(s);
1047
    avio_write(s->pb, buf, TS_PACKET_SIZE);
1048 1049
}

1050 1051 1052 1053
static void write_pts(uint8_t *q, int fourbits, int64_t pts)
{
    int val;

D
Diego Biurrun 已提交
1054
    val  = fourbits << 4 | (((pts >> 30) & 0x07) << 1) | 1;
1055
    *q++ = val;
D
Diego Biurrun 已提交
1056
    val  = (((pts >> 15) & 0x7fff) << 1) | 1;
1057 1058
    *q++ = val >> 8;
    *q++ = val;
D
Diego Biurrun 已提交
1059
    val  = (((pts) & 0x7fff) << 1) | 1;
1060 1061 1062 1063
    *q++ = val >> 8;
    *q++ = val;
}

1064 1065 1066 1067
/* Set an adaptation field flag in an MPEG-TS packet*/
static void set_af_flag(uint8_t *pkt, int flag)
{
    // expect at least one flag to set
M
Michael Niedermayer 已提交
1068
    av_assert0(flag);
1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083

    if ((pkt[3] & 0x20) == 0) {
        // no AF yet, set adaptation field flag
        pkt[3] |= 0x20;
        // 1 byte length, no flags
        pkt[4] = 1;
        pkt[5] = 0;
    }
    pkt[5] |= flag;
}

/* Extend the adaptation field by size bytes */
static void extend_af(uint8_t *pkt, int size)
{
    // expect already existing adaptation field
M
Michael Niedermayer 已提交
1084
    av_assert0(pkt[3] & 0x20);
1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096
    pkt[4] += size;
}

/* Get a pointer to MPEG-TS payload (right after TS packet header) */
static uint8_t *get_ts_payload_start(uint8_t *pkt)
{
    if (pkt[3] & 0x20)
        return pkt + 5 + pkt[4];
    else
        return pkt + 4;
}

D
Diego Biurrun 已提交
1097 1098 1099 1100
/* Add a PES header to the front of the payload, and segment into an integer
 * number of TS packets. The final TS packet is padded using an oversized
 * adaptation header to exactly fill the last TS packet.
 * NOTE: 'payload' contains a complete PES payload. */
1101 1102
static void mpegts_write_pes(AVFormatContext *s, AVStream *st,
                             const uint8_t *payload, int payload_size,
1103
                             int64_t pts, int64_t dts, int key)
1104 1105
{
    MpegTSWriteStream *ts_st = st->priv_data;
1106
    MpegTSWrite *ts = s->priv_data;
1107
    uint8_t buf[TS_PACKET_SIZE];
1108
    uint8_t *q;
1109
    int val, is_start, len, header_len, write_pcr, is_dvb_subtitle, is_dvb_teletext, flags;
1110 1111
    int afc_len, stuffing_len;
    int64_t pcr = -1; /* avoid warning */
1112
    int64_t delay = av_rescale(s->max_delay, 90000, AV_TIME_BASE);
1113
    int force_pat = st->codec->codec_type == AVMEDIA_TYPE_VIDEO && key && !ts_st->prev_payload_key;
1114

1115 1116 1117 1118 1119
    av_assert0(ts_st->payload != buf || st->codec->codec_type != AVMEDIA_TYPE_VIDEO);
    if (ts->flags & MPEGTS_FLAG_PAT_PMT_AT_FRAMES && st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
        force_pat = 1;
    }

1120 1121
    is_start = 1;
    while (payload_size > 0) {
1122
        retransmit_si_info(s, force_pat, dts);
1123
        force_pat = 0;
1124

1125 1126
        write_pcr = 0;
        if (ts_st->pid == ts_st->service->pcr_pid) {
1127 1128
            if (ts->mux_rate > 1 || is_start) // VBR pcr period is based on frames
                ts_st->service->pcr_packet_count++;
1129
            if (ts_st->service->pcr_packet_count >=
1130
                ts_st->service->pcr_packet_period) {
1131 1132 1133 1134 1135
                ts_st->service->pcr_packet_count = 0;
                write_pcr = 1;
            }
        }

1136
        if (ts->mux_rate > 1 && dts != AV_NOPTS_VALUE &&
D
Diego Biurrun 已提交
1137
            (dts - get_pcr(ts, s->pb) / 300) > delay) {
1138 1139 1140 1141 1142
            /* pcr insert gets priority over null packet insert */
            if (write_pcr)
                mpegts_insert_pcr_only(s, st);
            else
                mpegts_insert_null_packet(s);
D
Diego Biurrun 已提交
1143 1144
            /* recalculate write_pcr and possibly retransmit si_info */
            continue;
1145 1146
        }

1147
        /* prepare packet header */
D
Diego Biurrun 已提交
1148
        q    = buf;
1149
        *q++ = 0x47;
1150
        val  = ts_st->pid >> 8;
1151 1152
        if (is_start)
            val |= 0x40;
D
Diego Biurrun 已提交
1153 1154
        *q++      = val;
        *q++      = ts_st->pid;
1155
        ts_st->cc = ts_st->cc + 1 & 0xf;
D
Diego Biurrun 已提交
1156
        *q++      = 0x10 | ts_st->cc; // payload indicator + CC
1157 1158 1159 1160 1161 1162 1163
        if (key && is_start && pts != AV_NOPTS_VALUE) {
            // set Random Access for key frames
            if (ts_st->pid == ts_st->service->pcr_pid)
                write_pcr = 1;
            set_af_flag(buf, 0x40);
            q = get_ts_payload_start(buf);
        }
1164
        if (write_pcr) {
1165 1166
            set_af_flag(buf, 0x10);
            q = get_ts_payload_start(buf);
1167
            // add 11, pcr references the last byte of program clock reference base
1168
            if (ts->mux_rate > 1)
1169
                pcr = get_pcr(ts, s->pb);
1170
            else
D
Diego Biurrun 已提交
1171
                pcr = (dts - delay) * 300;
1172
            if (dts != AV_NOPTS_VALUE && dts < pcr / 300)
1173
                av_log(s, AV_LOG_WARNING, "dts < pcr, TS is invalid\n");
1174 1175
            extend_af(buf, write_pcr_bits(q, pcr));
            q = get_ts_payload_start(buf);
1176
        }
1177
        if (is_start) {
1178
            int pes_extension = 0;
1179
            int pes_header_stuffing_bytes = 0;
1180 1181 1182 1183
            /* write PES header */
            *q++ = 0x00;
            *q++ = 0x00;
            *q++ = 0x01;
1184
            is_dvb_subtitle = 0;
1185
            is_dvb_teletext = 0;
1186
            if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
D
Diego Biurrun 已提交
1187
                if (st->codec->codec_id == AV_CODEC_ID_DIRAC)
1188
                    *q++ = 0xfd;
D
Diego Biurrun 已提交
1189
                else
1190
                    *q++ = 0xe0;
1191
            } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1192 1193 1194
                       (st->codec->codec_id == AV_CODEC_ID_MP2 ||
                        st->codec->codec_id == AV_CODEC_ID_MP3 ||
                        st->codec->codec_id == AV_CODEC_ID_AAC)) {
1195
                *q++ = 0xc0;
1196
            } else if (st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1197
                        st->codec->codec_id == AV_CODEC_ID_AC3 &&
1198 1199
                        ts->m2ts_mode) {
                *q++ = 0xfd;
1200 1201
            } else {
                *q++ = 0xbd;
1202
                if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE) {
1203 1204 1205 1206 1207
                    if (st->codec->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
                        is_dvb_subtitle = 1;
                    } else if (st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT) {
                        is_dvb_teletext = 1;
                    }
1208 1209
                }
            }
1210
            header_len = 0;
D
Diego Biurrun 已提交
1211
            flags      = 0;
1212 1213
            if (pts != AV_NOPTS_VALUE) {
                header_len += 5;
D
Diego Biurrun 已提交
1214
                flags      |= 0x80;
1215
            }
1216
            if (dts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE && dts != pts) {
1217
                header_len += 5;
D
Diego Biurrun 已提交
1218
                flags      |= 0x40;
1219
            }
1220
            if (st->codec->codec_type == AVMEDIA_TYPE_VIDEO &&
1221
                st->codec->codec_id == AV_CODEC_ID_DIRAC) {
1222 1223
                /* set PES_extension_flag */
                pes_extension = 1;
D
Diego Biurrun 已提交
1224
                flags        |= 0x01;
1225

D
Diego Biurrun 已提交
1226 1227 1228
                /* One byte for PES2 extension flag +
                 * one byte for extension length +
                 * one byte for extension id */
1229 1230
                header_len += 3;
            }
1231 1232 1233 1234 1235
            /* for Blu-ray AC3 Audio the PES Extension flag should be as follow
             * otherwise it will not play sound on blu-ray
             */
            if (ts->m2ts_mode &&
                st->codec->codec_type == AVMEDIA_TYPE_AUDIO &&
1236
                st->codec->codec_id == AV_CODEC_ID_AC3) {
1237 1238 1239 1240 1241
                        /* set PES_extension_flag */
                        pes_extension = 1;
                        flags |= 0x01;
                        header_len += 3;
            }
1242 1243 1244 1245
            if (is_dvb_teletext) {
                pes_header_stuffing_bytes = 0x24 - header_len;
                header_len = 0x24;
            }
1246
            len = payload_size + header_len + 3;
1247 1248 1249 1250 1251
            /* 3 extra bytes should be added to DVB subtitle payload: 0x20 0x00 at the beginning and trailing 0xff */
            if (is_dvb_subtitle) {
                len += 3;
                payload_size++;
            }
1252 1253
            if (len > 0xffff)
                len = 0;
1254
            if (ts->omit_video_pes_length && st->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
1255 1256
                len = 0;
            }
1257 1258
            *q++ = len >> 8;
            *q++ = len;
D
Diego Biurrun 已提交
1259
            val  = 0x80;
1260 1261
            /* data alignment indicator is required for subtitle and data streams */
            if (st->codec->codec_type == AVMEDIA_TYPE_SUBTITLE || st->codec->codec_type == AVMEDIA_TYPE_DATA)
1262 1263
                val |= 0x04;
            *q++ = val;
1264 1265
            *q++ = flags;
            *q++ = header_len;
1266
            if (pts != AV_NOPTS_VALUE) {
1267 1268 1269
                write_pts(q, flags >> 6, pts);
                q += 5;
            }
1270
            if (dts != AV_NOPTS_VALUE && pts != AV_NOPTS_VALUE && dts != pts) {
1271 1272
                write_pts(q, 1, dts);
                q += 5;
1273
            }
1274
            if (pes_extension && st->codec->codec_id == AV_CODEC_ID_DIRAC) {
1275
                flags = 0x01;  /* set PES_extension_flag_2 */
D
Diego Biurrun 已提交
1276 1277 1278 1279
                *q++  = flags;
                *q++  = 0x80 | 0x01; /* marker bit + extension length */
                /* Set the stream ID extension flag bit to 0 and
                 * write the extended stream ID. */
1280 1281
                *q++ = 0x00 | 0x60;
            }
1282 1283 1284
            /* For Blu-ray AC3 Audio Setting extended flags */
          if (ts->m2ts_mode &&
              pes_extension &&
1285
              st->codec->codec_id == AV_CODEC_ID_AC3) {
1286 1287 1288 1289 1290 1291 1292
                      flags = 0x01; /* set PES_extension_flag_2 */
                      *q++ = flags;
                      *q++ = 0x80 | 0x01; /* marker bit + extension length */
                      *q++ = 0x00 | 0x71; /* for AC3 Audio (specifically on blue-rays) */
              }


1293 1294 1295 1296 1297 1298 1299
            if (is_dvb_subtitle) {
                /* First two fields of DVB subtitles PES data:
                 * data_identifier: for DVB subtitle streams shall be coded with the value 0x20
                 * subtitle_stream_id: for DVB subtitle stream shall be identified by the value 0x00 */
                *q++ = 0x20;
                *q++ = 0x00;
            }
1300 1301 1302 1303
            if (is_dvb_teletext) {
                memset(q, 0xff, pes_header_stuffing_bytes);
                q += pes_header_stuffing_bytes;
            }
1304
            is_start = 0;
1305
        }
1306 1307 1308 1309
        /* header size */
        header_len = q - buf;
        /* data len */
        len = TS_PACKET_SIZE - header_len;
1310 1311
        if (len > payload_size)
            len = payload_size;
1312 1313 1314 1315 1316 1317 1318
        stuffing_len = TS_PACKET_SIZE - header_len - len;
        if (stuffing_len > 0) {
            /* add stuffing with AFC */
            if (buf[3] & 0x20) {
                /* stuffing already present: increase its size */
                afc_len = buf[4] + 1;
                memmove(buf + 4 + afc_len + stuffing_len,
1319
                        buf + 4 + afc_len,
1320 1321 1322 1323 1324 1325 1326
                        header_len - (4 + afc_len));
                buf[4] += stuffing_len;
                memset(buf + 4 + afc_len, 0xff, stuffing_len);
            } else {
                /* add stuffing */
                memmove(buf + 4 + stuffing_len, buf + 4, header_len - 4);
                buf[3] |= 0x20;
D
Diego Biurrun 已提交
1327
                buf[4]  = stuffing_len - 1;
1328 1329 1330 1331 1332 1333
                if (stuffing_len >= 2) {
                    buf[5] = 0x00;
                    memset(buf + 6, 0xff, stuffing_len - 2);
                }
            }
        }
1334 1335 1336 1337 1338 1339 1340 1341

        if (is_dvb_subtitle && payload_size == len) {
            memcpy(buf + TS_PACKET_SIZE - len, payload, len - 1);
            buf[TS_PACKET_SIZE - 1] = 0xff; /* end_of_PES_data_field_marker: an 8-bit field with fixed contents 0xff for DVB subtitle */
        } else {
            memcpy(buf + TS_PACKET_SIZE - len, payload, len);
        }

D
Diego Biurrun 已提交
1342
        payload      += len;
1343
        payload_size -= len;
1344
        mpegts_prefix_m2ts_header(s);
1345
        avio_write(s->pb, buf, TS_PACKET_SIZE);
1346
    }
1347
    ts_st->prev_payload_key = key;
1348 1349
}

1350 1351
int ff_check_h264_startcode(AVFormatContext *s, const AVStream *st, const AVPacket *pkt)
{
1352
    if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001 && AV_RB24(pkt->data) != 0x000001) {
1353 1354
        if (!st->nb_frames) {
            av_log(s, AV_LOG_ERROR, "H.264 bitstream malformed, "
1355 1356
                   "no startcode found, use the video bitstream filter 'h264_mp4toannexb' to fix it "
                   "('-bsf:v h264_mp4toannexb' option with ffmpeg)\n");
1357
            return AVERROR_INVALIDDATA;
1358
        }
1359 1360 1361
        av_log(s, AV_LOG_WARNING, "H.264 bitstream error, startcode missing, size %d", pkt->size);
        if (pkt->size) av_log(s, AV_LOG_WARNING, " data %08X", AV_RB32(pkt->data));
        av_log(s, AV_LOG_WARNING, "\n");
1362 1363 1364 1365
    }
    return 0;
}

1366 1367
static int check_hevc_startcode(AVFormatContext *s, const AVStream *st, const AVPacket *pkt)
{
1368
    if (pkt->size < 5 || AV_RB32(pkt->data) != 0x0000001 && AV_RB24(pkt->data) != 0x000001) {
1369 1370 1371 1372
        if (!st->nb_frames) {
            av_log(s, AV_LOG_ERROR, "HEVC bitstream malformed, no startcode found\n");
            return AVERROR_PATCHWELCOME;
        }
1373 1374 1375
        av_log(s, AV_LOG_WARNING, "HEVC bitstream error, startcode missing, size %d", pkt->size);
        if (pkt->size) av_log(s, AV_LOG_WARNING, " data %08X", AV_RB32(pkt->data));
        av_log(s, AV_LOG_WARNING, "\n");
1376 1377 1378 1379
    }
    return 0;
}

1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431
/* Based on GStreamer's gst-plugins-base/ext/ogg/gstoggstream.c
 * Released under the LGPL v2.1+, written by
 * Vincent Penquerc'h <vincent.penquerch@collabora.co.uk>
 */
static int opus_get_packet_samples(AVFormatContext *s, AVPacket *pkt)
{
    static const int durations[32] = {
      480, 960, 1920, 2880,       /* Silk NB */
      480, 960, 1920, 2880,       /* Silk MB */
      480, 960, 1920, 2880,       /* Silk WB */
      480, 960,                   /* Hybrid SWB */
      480, 960,                   /* Hybrid FB */
      120, 240, 480, 960,         /* CELT NB */
      120, 240, 480, 960,         /* CELT NB */
      120, 240, 480, 960,         /* CELT NB */
      120, 240, 480, 960,         /* CELT NB */
    };
    int toc, frame_duration, nframes, duration;

    if (pkt->size < 1)
        return 0;

    toc = pkt->data[0];

    frame_duration = durations[toc >> 3];
    switch (toc & 3) {
    case 0:
        nframes = 1;
        break;
    case 1:
        nframes = 2;
        break;
    case 2:
        nframes = 2;
        break;
    case 3:
        if (pkt->size < 2)
            return 0;
        nframes = pkt->data[1] & 63;
        break;
    }

    duration = nframes * frame_duration;
    if (duration > 5760) {
        av_log(s, AV_LOG_WARNING,
               "Opus packet duration > 120 ms, invalid");
        return 0;
    }

    return duration;
}

1432
static int mpegts_write_packet_internal(AVFormatContext *s, AVPacket *pkt)
1433
{
1434
    AVStream *st = s->streams[pkt->stream_index];
1435
    int size = pkt->size;
D
Diego Biurrun 已提交
1436 1437
    uint8_t *buf = pkt->data;
    uint8_t *data = NULL;
1438
    MpegTSWrite *ts = s->priv_data;
1439
    MpegTSWriteStream *ts_st = st->priv_data;
1440
    const int64_t delay = av_rescale(s->max_delay, 90000, AV_TIME_BASE) * 2;
1441
    int64_t dts = pkt->dts, pts = pkt->pts;
1442
    int opus_samples = 0;
1443

1444
    if (ts->reemit_pat_pmt) {
D
Diego Biurrun 已提交
1445 1446
        av_log(s, AV_LOG_WARNING,
               "resend_headers option is deprecated, use -mpegts_flags resend_headers\n");
1447
        ts->reemit_pat_pmt = 0;
D
Diego Biurrun 已提交
1448
        ts->flags         |= MPEGTS_FLAG_REEMIT_PAT_PMT;
1449 1450 1451
    }

    if (ts->flags & MPEGTS_FLAG_REEMIT_PAT_PMT) {
1452 1453
        ts->pat_packet_count = ts->pat_packet_period - 1;
        ts->sdt_packet_count = ts->sdt_packet_period - 1;
D
Diego Biurrun 已提交
1454
        ts->flags           &= ~MPEGTS_FLAG_REEMIT_PAT_PMT;
1455 1456
    }

1457
    if (ts->copyts < 1) {
1458 1459 1460 1461 1462
        if (pts != AV_NOPTS_VALUE)
            pts += delay;
        if (dts != AV_NOPTS_VALUE)
            dts += delay;
    }
1463

1464
    if (ts_st->first_pts_check && pts == AV_NOPTS_VALUE) {
1465
        av_log(s, AV_LOG_ERROR, "first pts value must be set\n");
1466
        return AVERROR_INVALIDDATA;
1467 1468 1469
    }
    ts_st->first_pts_check = 0;

1470
    if (st->codec->codec_id == AV_CODEC_ID_H264) {
D
Diego Biurrun 已提交
1471
        const uint8_t *p = buf, *buf_end = p + size;
1472
        uint32_t state = -1;
1473
        int extradd = (pkt->flags & AV_PKT_FLAG_KEY) ? st->codec->extradata_size : 0;
1474 1475 1476
        int ret = ff_check_h264_startcode(s, st, pkt);
        if (ret < 0)
            return ret;
1477

1478 1479 1480
        if (extradd && AV_RB24(st->codec->extradata) > 1)
            extradd = 0;

1481
        do {
1482
            p = avpriv_find_start_code(p, buf_end, &state);
1483
            av_log(s, AV_LOG_TRACE, "nal %d\n", state & 0x1f);
1484 1485
            if ((state & 0x1f) == 7)
                extradd = 0;
1486 1487 1488
        } while (p < buf_end && (state & 0x1f) != 9 &&
                 (state & 0x1f) != 5 && (state & 0x1f) != 1);

1489 1490
        if ((state & 0x1f) != 5)
            extradd = 0;
1491
        if ((state & 0x1f) != 9) { // AUD NAL
1492
            data = av_malloc(pkt->size + 6 + extradd);
1493
            if (!data)
1494
                return AVERROR(ENOMEM);
1495 1496
            memcpy(data + 6, st->codec->extradata, extradd);
            memcpy(data + 6 + extradd, pkt->data, pkt->size);
1497 1498
            AV_WB32(data, 0x00000001);
            data[4] = 0x09;
1499
            data[5] = 0xf0; // any slice type (0xe) + rbsp stop one bit
D
Diego Biurrun 已提交
1500
            buf     = data;
1501
            size    = pkt->size + 6 + extradd;
1502
        }
1503
    } else if (st->codec->codec_id == AV_CODEC_ID_AAC) {
1504 1505
        if (pkt->size < 2) {
            av_log(s, AV_LOG_ERROR, "AAC packet too short\n");
1506
            return AVERROR_INVALIDDATA;
1507
        }
1508
        if ((AV_RB16(pkt->data) & 0xfff0) != 0xfff0) {
1509 1510 1511 1512
            int ret;
            AVPacket pkt2;

            if (!ts_st->amux) {
1513
                av_log(s, AV_LOG_ERROR, "AAC bitstream not in ADTS format "
D
Diego Biurrun 已提交
1514
                                        "and extradata missing\n");
1515 1516 1517
                if (!st->nb_frames)
                    return AVERROR_INVALIDDATA;
            } else {
1518 1519 1520
            av_init_packet(&pkt2);
            pkt2.data = pkt->data;
            pkt2.size = pkt->size;
1521 1522
            av_assert0(pkt->dts != AV_NOPTS_VALUE);
            pkt2.dts = av_rescale_q(pkt->dts, st->time_base, ts_st->amux->streams[0]->time_base);
D
Diego Biurrun 已提交
1523

1524 1525
            ret = avio_open_dyn_buf(&ts_st->amux->pb);
            if (ret < 0)
1526
                return AVERROR(ENOMEM);
1527 1528 1529

            ret = av_write_frame(ts_st->amux, &pkt2);
            if (ret < 0) {
1530
                ffio_free_dyn_buf(&ts_st->amux->pb);
1531
                return ret;
A
Alex Converse 已提交
1532
            }
D
Diego Biurrun 已提交
1533
            size            = avio_close_dyn_buf(ts_st->amux->pb, &data);
1534
            ts_st->amux->pb = NULL;
D
Diego Biurrun 已提交
1535
            buf             = data;
1536
            }
1537
        }
1538 1539 1540 1541
    } else if (st->codec->codec_id == AV_CODEC_ID_HEVC) {
        int ret = check_hevc_startcode(s, st, pkt);
        if (ret < 0)
            return ret;
1542 1543 1544 1545 1546 1547 1548 1549
    } else if (st->codec->codec_id == AV_CODEC_ID_OPUS) {
        if (pkt->size < 2) {
            av_log(s, AV_LOG_ERROR, "Opus packet too short\n");
            return AVERROR_INVALIDDATA;
        }

        /* Add Opus control header */
        if ((AV_RB16(pkt->data) >> 5) != 0x3ff) {
1550 1551
            uint8_t *side_data;
            int side_data_size;
1552
            int i, n;
1553 1554
            int ctrl_header_size;
            int trim_start = 0, trim_end = 0;
1555 1556 1557

            opus_samples = opus_get_packet_samples(s, pkt);

1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572
            side_data = av_packet_get_side_data(pkt,
                                                AV_PKT_DATA_SKIP_SAMPLES,
                                                &side_data_size);

            if (side_data && side_data_size >= 10) {
                trim_end = AV_RL32(side_data + 4) * 48000 / st->codec->sample_rate;
            }

            ctrl_header_size = pkt->size + 2 + pkt->size / 255 + 1;
            if (ts_st->opus_pending_trim_start)
              ctrl_header_size += 2;
            if (trim_end)
              ctrl_header_size += 2;

            data = av_malloc(ctrl_header_size);
1573 1574 1575 1576 1577
            if (!data)
                return AVERROR(ENOMEM);

            data[0] = 0x7f;
            data[1] = 0xe0;
1578 1579 1580 1581
            if (ts_st->opus_pending_trim_start)
                data[1] |= 0x10;
            if (trim_end)
                data[1] |= 0x08;
1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592

            n = pkt->size;
            i = 2;
            do {
                data[i] = FFMIN(n, 255);
                n -= 255;
                i++;
            } while (n >= 0);

            av_assert0(2 + pkt->size / 255 + 1 == i);

1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604
            if (ts_st->opus_pending_trim_start) {
                trim_start = FFMIN(ts_st->opus_pending_trim_start, opus_samples);
                AV_WB16(data + i, trim_start);
                i += 2;
                ts_st->opus_pending_trim_start -= trim_start;
            }
            if (trim_end) {
                trim_end = FFMIN(trim_end, opus_samples - trim_start);
                AV_WB16(data + i, trim_end);
                i += 2;
            }

1605 1606
            memcpy(data + i, pkt->data, pkt->size);
            buf     = data;
1607
            size    = ctrl_header_size;
1608 1609 1610 1611 1612
        } else {
            /* TODO: Can we get TS formatted data here? If so we will
             * need to count the samples of that too! */
            av_log(s, AV_LOG_WARNING, "Got MPEG-TS formatted Opus data, unhandled");
        }
1613 1614
    }

1615 1616
    if (pkt->dts != AV_NOPTS_VALUE) {
        int i;
1617
        for(i=0; i<s->nb_streams; i++) {
1618 1619
            AVStream *st2 = s->streams[i];
            MpegTSWriteStream *ts_st2 = st2->priv_data;
1620 1621
            if (   ts_st2->payload_size
               && (ts_st2->payload_dts == AV_NOPTS_VALUE || dts - ts_st2->payload_dts > delay/2)) {
1622 1623 1624 1625
                mpegts_write_pes(s, st2, ts_st2->payload, ts_st2->payload_size,
                                ts_st2->payload_pts, ts_st2->payload_dts,
                                ts_st2->payload_flags & AV_PKT_FLAG_KEY);
                ts_st2->payload_size = 0;
1626 1627 1628 1629
            }
        }
    }

1630 1631 1632
    if (ts_st->payload_size && (ts_st->payload_size + size > ts->pes_payload_size ||
        (dts != AV_NOPTS_VALUE && ts_st->payload_dts != AV_NOPTS_VALUE &&
         av_compare_ts(dts - ts_st->payload_dts, st->time_base,
1633 1634
                       s->max_delay, AV_TIME_BASE_Q) >= 0) ||
        ts_st->opus_queued_samples + opus_samples >= 5760 /* 120ms */)) {
1635
        mpegts_write_pes(s, st, ts_st->payload, ts_st->payload_size,
1636 1637
                         ts_st->payload_pts, ts_st->payload_dts,
                         ts_st->payload_flags & AV_PKT_FLAG_KEY);
1638
        ts_st->payload_size = 0;
1639
        ts_st->opus_queued_samples = 0;
1640 1641
    }

1642
    if (st->codec->codec_type != AVMEDIA_TYPE_AUDIO || size > ts->pes_payload_size) {
1643
        av_assert0(!ts_st->payload_size);
1644
        // for video and subtitle, write a single pes packet
D
Diego Biurrun 已提交
1645 1646
        mpegts_write_pes(s, st, buf, size, pts, dts,
                         pkt->flags & AV_PKT_FLAG_KEY);
1647
        ts_st->opus_queued_samples = 0;
1648 1649 1650 1651
        av_free(data);
        return 0;
    }

1652
    if (!ts_st->payload_size) {
D
Diego Biurrun 已提交
1653 1654
        ts_st->payload_pts   = pts;
        ts_st->payload_dts   = dts;
1655
        ts_st->payload_flags = pkt->flags;
1656
    }
1657

1658 1659
    memcpy(ts_st->payload + ts_st->payload_size, buf, size);
    ts_st->payload_size += size;
1660
    ts_st->opus_queued_samples += opus_samples;
1661

1662 1663
    av_free(data);

1664 1665 1666
    return 0;
}

1667
static void mpegts_write_flush(AVFormatContext *s)
1668 1669 1670 1671
{
    int i;

    /* flush current packets */
D
Diego Biurrun 已提交
1672
    for (i = 0; i < s->nb_streams; i++) {
1673 1674
        AVStream *st = s->streams[i];
        MpegTSWriteStream *ts_st = st->priv_data;
1675 1676
        if (ts_st->payload_size > 0) {
            mpegts_write_pes(s, st, ts_st->payload, ts_st->payload_size,
1677 1678
                             ts_st->payload_pts, ts_st->payload_dts,
                             ts_st->payload_flags & AV_PKT_FLAG_KEY);
1679
            ts_st->payload_size = 0;
1680
            ts_st->opus_queued_samples = 0;
1681
        }
1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695
    }
}

static int mpegts_write_packet(AVFormatContext *s, AVPacket *pkt)
{
    if (!pkt) {
        mpegts_write_flush(s);
        return 1;
    } else {
        return mpegts_write_packet_internal(s, pkt);
    }
}

static int mpegts_write_end(AVFormatContext *s)
1696 1697 1698 1699 1700 1701 1702 1703
{
    if (s->pb)
        mpegts_write_flush(s);

    return 0;
}

static void mpegts_deinit(AVFormatContext *s)
1704 1705 1706 1707 1708
{
    MpegTSWrite *ts = s->priv_data;
    MpegTSService *service;
    int i;

D
Diego Biurrun 已提交
1709
    for (i = 0; i < s->nb_streams; i++) {
1710 1711
        AVStream *st = s->streams[i];
        MpegTSWriteStream *ts_st = st->priv_data;
1712 1713 1714 1715 1716 1717
        if (ts_st) {
            av_freep(&ts_st->payload);
            if (ts_st->amux) {
                avformat_free_context(ts_st->amux);
                ts_st->amux = NULL;
            }
1718
        }
1719
    }
1720

D
Diego Biurrun 已提交
1721
    for (i = 0; i < ts->nb_services; i++) {
1722 1723 1724
        service = ts->services[i];
        av_freep(&service->provider_name);
        av_freep(&service->name);
1725
        av_freep(&service);
1726
    }
1727
    av_freep(&ts->services);
1728
}
1729

1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745
static int mpegts_check_bitstream(struct AVFormatContext *s, const AVPacket *pkt)
{
    int ret = 1;
    AVStream *st = s->streams[pkt->stream_index];

    if (st->codec->codec_id == AV_CODEC_ID_H264) {
        if (pkt->size >= 5 && AV_RB32(pkt->data) != 0x0000001 &&
                              AV_RB24(pkt->data) != 0x000001)
            ret = ff_stream_add_bitstream_filter(st, "h264_mp4toannexb", NULL);
    } else if (st->codec->codec_id == AV_CODEC_ID_HEVC) {
        if (pkt->size >= 5 && AV_RB32(pkt->data) != 0x0000001 &&
                              AV_RB24(pkt->data) != 0x000001)
            ret = ff_stream_add_bitstream_filter(st, "hevc_mp4toannexb", NULL);
    }

    return ret;
1746 1747
}

1748 1749
static const AVOption options[] = {
    { "mpegts_transport_stream_id", "Set transport_stream_id field.",
D
Diego Biurrun 已提交
1750 1751
      offsetof(MpegTSWrite, transport_stream_id), AV_OPT_TYPE_INT,
      { .i64 = 0x0001 }, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM },
1752
    { "mpegts_original_network_id", "Set original_network_id field.",
D
Diego Biurrun 已提交
1753 1754
      offsetof(MpegTSWrite, original_network_id), AV_OPT_TYPE_INT,
      { .i64 = 0x0001 }, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM },
1755
    { "mpegts_service_id", "Set service_id field.",
D
Diego Biurrun 已提交
1756 1757
      offsetof(MpegTSWrite, service_id), AV_OPT_TYPE_INT,
      { .i64 = 0x0001 }, 0x0001, 0xffff, AV_OPT_FLAG_ENCODING_PARAM },
1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781
    { "mpegts_service_type", "Set service_type field.",
      offsetof(MpegTSWrite, service_type), AV_OPT_TYPE_INT,
      { .i64 = 0x01 }, 0x01, 0xff, AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "digital_tv", "Digital Television.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_DIGITAL_TV }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "digital_radio", "Digital Radio.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_DIGITAL_RADIO }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "teletext", "Teletext.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_TELETEXT }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "advanced_codec_digital_radio", "Advanced Codec Digital Radio.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_RADIO }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "mpeg2_digital_hdtv", "MPEG2 Digital HDTV.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_MPEG2_DIGITAL_HDTV }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "advanced_codec_digital_sdtv", "Advanced Codec Digital SDTV.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_SDTV }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
    { "advanced_codec_digital_hdtv", "Advanced Codec Digital HDTV.",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_SERVICE_TYPE_ADVANCED_CODEC_DIGITAL_HDTV }, 0x01, 0xff,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_service_type" },
1782
    { "mpegts_pmt_start_pid", "Set the first pid of the PMT.",
D
Diego Biurrun 已提交
1783
      offsetof(MpegTSWrite, pmt_start_pid), AV_OPT_TYPE_INT,
1784
      { .i64 = 0x1000 }, 0x0010, 0x1f00, AV_OPT_FLAG_ENCODING_PARAM },
1785
    { "mpegts_start_pid", "Set the first pid.",
D
Diego Biurrun 已提交
1786
      offsetof(MpegTSWrite, start_pid), AV_OPT_TYPE_INT,
1787
      { .i64 = 0x0100 }, 0x0020, 0x0f00, AV_OPT_FLAG_ENCODING_PARAM },
1788
    { "mpegts_m2ts_mode", "Enable m2ts mode.",
1789
      offsetof(MpegTSWrite, m2ts_mode), AV_OPT_TYPE_BOOL,
1790
      { .i64 = -1 }, -1, 1, AV_OPT_FLAG_ENCODING_PARAM },
D
Diego Biurrun 已提交
1791 1792 1793
    { "muxrate", NULL,
      offsetof(MpegTSWrite, mux_rate), AV_OPT_TYPE_INT,
      { .i64 = 1 }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
1794
    { "pes_payload_size", "Minimum PES packet payload in bytes",
D
Diego Biurrun 已提交
1795 1796 1797 1798
      offsetof(MpegTSWrite, pes_payload_size), AV_OPT_TYPE_INT,
      { .i64 = DEFAULT_PES_PAYLOAD_SIZE }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
    { "mpegts_flags", "MPEG-TS muxing flags",
      offsetof(MpegTSWrite, flags), AV_OPT_TYPE_FLAGS, { .i64 = 0 }, 0, INT_MAX,
1799 1800
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_flags" },
    { "resend_headers", "Reemit PAT/PMT before writing the next packet",
D
Diego Biurrun 已提交
1801 1802
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_FLAG_REEMIT_PAT_PMT }, 0, INT_MAX,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_flags" },
1803
    { "latm", "Use LATM packetization for AAC",
D
Diego Biurrun 已提交
1804 1805
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_FLAG_AAC_LATM }, 0, INT_MAX,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_flags" },
1806 1807 1808
    { "pat_pmt_at_frames", "Reemit PAT and PMT at each video frame",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_FLAG_PAT_PMT_AT_FRAMES}, 0, INT_MAX,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_flags" },
1809 1810 1811
    { "system_b", "Conform to System B (DVB) instead of System A (ATSC)",
      0, AV_OPT_TYPE_CONST, { .i64 = MPEGTS_FLAG_SYSTEM_B }, 0, INT_MAX,
      AV_OPT_FLAG_ENCODING_PARAM, "mpegts_flags" },
1812 1813
    // backward compatibility
    { "resend_headers", "Reemit PAT/PMT before writing the next packet",
D
Diego Biurrun 已提交
1814 1815
      offsetof(MpegTSWrite, reemit_pat_pmt), AV_OPT_TYPE_INT,
      { .i64 = 0 }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
1816
    { "mpegts_copyts", "don't offset dts/pts",
1817
      offsetof(MpegTSWrite, copyts), AV_OPT_TYPE_BOOL,
1818
      { .i64 = -1 }, -1, 1, AV_OPT_FLAG_ENCODING_PARAM },
1819
    { "tables_version", "set PAT, PMT and SDT version",
1820 1821
      offsetof(MpegTSWrite, tables_version), AV_OPT_TYPE_INT,
      { .i64 = 0 }, 0, 31, AV_OPT_FLAG_ENCODING_PARAM },
1822
    { "omit_video_pes_length", "Omit the PES packet length for video packets",
1823
      offsetof(MpegTSWrite, omit_video_pes_length), AV_OPT_TYPE_BOOL,
1824
      { .i64 = 1 }, 0, 1, AV_OPT_FLAG_ENCODING_PARAM },
1825
    { "pcr_period", "PCR retransmission time",
D
Diego Biurrun 已提交
1826 1827
      offsetof(MpegTSWrite, pcr_period), AV_OPT_TYPE_INT,
      { .i64 = PCR_RETRANS_TIME }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
1828
    { "pat_period", "PAT/PMT retransmission time limit in seconds",
1829
      offsetof(MpegTSWrite, pat_period), AV_OPT_TYPE_DOUBLE,
1830
      { .dbl = INT_MAX }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
1831
    { "sdt_period", "SDT retransmission time limit in seconds",
1832
      offsetof(MpegTSWrite, sdt_period), AV_OPT_TYPE_DOUBLE,
1833
      { .dbl = INT_MAX }, 0, INT_MAX, AV_OPT_FLAG_ENCODING_PARAM },
1834 1835 1836 1837
    { NULL },
};

static const AVClass mpegts_muxer_class = {
D
Diego Biurrun 已提交
1838 1839 1840 1841
    .class_name = "MPEGTS muxer",
    .item_name  = av_default_item_name,
    .option     = options,
    .version    = LIBAVUTIL_VERSION_INT,
1842 1843
};

1844
AVOutputFormat ff_mpegts_muxer = {
D
Diego Biurrun 已提交
1845 1846
    .name           = "mpegts",
    .long_name      = NULL_IF_CONFIG_SMALL("MPEG-TS (MPEG-2 Transport Stream)"),
1847 1848
    .mime_type      = "video/MP2T",
    .extensions     = "ts,m2t,m2ts,mts",
D
Diego Biurrun 已提交
1849 1850 1851
    .priv_data_size = sizeof(MpegTSWrite),
    .audio_codec    = AV_CODEC_ID_MP2,
    .video_codec    = AV_CODEC_ID_MPEG2VIDEO,
1852
    .init           = mpegts_init,
D
Diego Biurrun 已提交
1853 1854
    .write_packet   = mpegts_write_packet,
    .write_trailer  = mpegts_write_end,
1855 1856
    .deinit         = mpegts_deinit,
    .check_bitstream = mpegts_check_bitstream,
1857
    .flags          = AVFMT_ALLOW_FLUSH | AVFMT_VARIABLE_FPS,
D
Diego Biurrun 已提交
1858
    .priv_class     = &mpegts_muxer_class,
1859
};