Commit cb939468 authored by Thierry Foucu's avatar Thierry Foucu Committed by Michael Niedermayer

mpegtsenc: Add support to mux s302 stream

Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 352a67e6
......@@ -306,6 +306,14 @@ static void mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
*q++=1; // 1 byte, all flags sets to 0
*q++=0; // omit all fields...
}
if(st->codec->codec_id==CODEC_ID_S302M){
*q++ = 0x05; /* MPEG-2 registration descriptor*/
*q++ = 4;
*q++ = 'B';
*q++ = 'S';
*q++ = 'S';
*q++ = 'D';
}
if (lang) {
char *p;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment