]> git.sesse.net Git - ffmpeg/blobdiff - libavformat/mpegtsenc.c
lavf: Constify the probe function argument.
[ffmpeg] / libavformat / mpegtsenc.c
index 099d003f426d9ecd609fd2eef04d222dd238c7e2..fc0ea225c6cb1acc40a9546bc8152c92ec4da6be 100644 (file)
@@ -606,6 +606,8 @@ static int mpegts_write_pmt(AVFormatContext *s, MpegTSService *service)
                 put_registration_descriptor(&q, MKTAG('d', 'r', 'a', 'c'));
             } else if (stream_type == STREAM_TYPE_VIDEO_VC1) {
                 put_registration_descriptor(&q, MKTAG('V', 'C', '-', '1'));
+            } else if (stream_type == STREAM_TYPE_VIDEO_HEVC && s->strict_std_compliance <= FF_COMPLIANCE_NORMAL) {
+                put_registration_descriptor(&q, MKTAG('H', 'E', 'V', 'C'));
             }
             break;
         case AVMEDIA_TYPE_DATA: