mpegts muxer: DVB subtitles multiple languages support

* restore multiple languages data from extradata to PMT table
* setting correctly hearing empaired subtitling type

Reviewed-by: Marton Balint <cus@passwd.hu>
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
pull/58/head
mrlika 11 years ago committed by Michael Niedermayer
parent 13aec744c2
commit af786236cc
  1. 49
      libavformat/mpegtsenc.c

@ -377,20 +377,43 @@ static void mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
const char *language = lang && strlen(lang->value) >= 3 ? lang->value : default_language; const char *language = lang && strlen(lang->value) >= 3 ? lang->value : default_language;
if (st->codec->codec_id == AV_CODEC_ID_DVB_SUBTITLE) { if (st->codec->codec_id == AV_CODEC_ID_DVB_SUBTITLE) {
/* The descriptor tag. subtitling_descriptor */ uint8_t *len_ptr;
*q++ = 0x59; int extradata_copied = 0;
*q++ = 8;
*q++ = language[0]; *q++ = 0x59; /* subtitling_descriptor */
*q++ = language[1]; len_ptr = q++;
*q++ = language[2];
*q++ = 0x10; /* normal subtitles (0x20 = if hearing pb) */ while (strlen(language) >= 3 && (sizeof(data) - (q - data)) >= 8) { /* 8 bytes per DVB subtitle substream data */
if(st->codec->extradata_size == 4) { *q++ = *language++;
memcpy(q, st->codec->extradata, 4); *q++ = *language++;
q += 4; *q++ = *language++;
} else { /* Skip comma */
put16(&q, 1); /* page id */ if (*language != '\0')
put16(&q, 1); /* ancillary page id */ 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) { } else if (st->codec->codec_id == AV_CODEC_ID_DVB_TELETEXT) {
uint8_t *len_ptr = NULL; uint8_t *len_ptr = NULL;
int extradata_copied = 0; int extradata_copied = 0;

Loading…
Cancel
Save