<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">p.MsoNormal,p.MsoNoSpacing{margin:0}</style>
</head>
<body><div><br></div>
<div><br></div>
<div>On Mon, Nov 26, 2018, at 16:40, Shaleen Jain wrote:<br></div>
<blockquote type="cite"><div>On Mon, 2018-11-26 at 16:00 +0100, Thomas Guillem wrote:<br></div>
<blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre>I like the idea of this patch, and this is what VLC should do but I have some concerns.<br></pre><pre><br></pre><pre>Did you test all these profiles on every OS/VLC-ports ?<br></pre></blockquote><div><br></div>
<div>The profile list here is used only to match which profile a paticular dlna device supports and can decode successfully since no two<br></div>
<div>dlna devices are guaranteed to be same unlike chromecast.<br></div>
<div><br></div>
<blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre><br></pre><pre>I'm afraid it's quite an impossible task.<br></pre><pre><br></pre><pre>For chromecast, we decided to focus on few profile/codecs, that we tested on all platforms. We had several issues:<br></pre><pre> - Lake of x264 on iOS/macOS (license issue)<br></pre><pre> - VPX encoder broken on arm (need to be fixed)<br></pre><pre> - Lake of AAC encoder on some OS (license issue)<br></pre><pre><br></pre><pre>For the lake of H264 encoder, we decided to plug hardware encoders via mediacodec, videotoolbox and QSV. Nevertheless, these HW encoders can't encode everything and sometimes, we need to fallback to VPX (on iOS, VT can't handle lowres for example).<br></pre><pre><br></pre><pre>For the lake of AAC encoders, we could use HW encoders too, but it's not done yet.<br></pre><pre><br></pre><pre>SO I'm afraid, we support only these codecs for encoding (on all platforms)<br></pre><pre> - H264<br></pre><pre> - VPX<br></pre><pre> - mp3<br></pre><pre> - ogg<br></pre><pre> - opus<br></pre></blockquote><div><br></div>
<div>The encodering is done only when the dlna device does not support decoding of the file the user is trying to play<br></div>
<div>(or is not supported by us through the dlna_profile_list).<br></div>
<div><br></div>
<div>Even then it is only ever transcoded to H264 and AAC since the profile these two make up (AVC_MP4_MP_SD) is<br></div>
<div>the only default profile that every dlna certified device is capable of decoding.<br></div>
<div><br></div>
<div>So we only need support for two encoders on all platforms:<br></div>
<div>* H264<br></div>
<div>* ACC<br></div>
<div><br></div>
<div>I can try changing the default transcoding to H264 and MP3 but that may result in some dlna devices not being able to play the file,<br></div>
</blockquote><div>No it's OK, you can keep AAC.<br></div>
<div><br></div>
<blockquote type="cite"><div>even after being transcoded by VLC as we cannot possibly check every dlna device if they support it and is not guaranteed by the dlna spec/certification.<br></div>
<div><br></div>
<blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre><br></pre><pre>So, should you shrink your profile_list to support only those ^^ ?<br></pre></blockquote><div><br></div>
<div>Still the current profile list is only with video codecs H264/HEVC and audio MP3/AAC/AC-3<br></div>
<div>with many of other codecs not added.<br></div>
</blockquote><div><br></div>
<div>Yes, but I don't think we have HEVC and AC-3 encoder on all platforms.<br></div>
<div><br></div>
<blockquote type="cite"><div><br></div>
<blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre><br></pre><pre>On Tue, Oct 23, 2018, at 07:51, Shaleen Jain wrote:<br></pre><blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre>Adds support for querying media formats supported<br></pre><pre>by a Media Renderer device. Profiles related to<br></pre><pre>H264/HEVC and MP3/AAC/AC-3 codecs are added.<br></pre><pre><br></pre><pre>We transcode to the default/mandatory DLNA audio and video profiles<br></pre><pre>for any non-supported formats since these are suppose<br></pre><pre>to be supported by every DLNA certified device.<br></pre><pre>---<br></pre><pre> modules/services_discovery/Makefile.am    |   1 +<br></pre><pre> modules/stream_out/dlna/dlna.cpp          | 273 ++++++-<br></pre><pre> modules/stream_out/dlna/dlna.hpp          |  28 +-<br></pre><pre> modules/stream_out/dlna/profile_names.hpp | 833 ++++++++++++++++++++++<br></pre><pre> 4 files changed, 1099 insertions(+), 36 deletions(-)<br></pre><pre> create mode 100644 modules/stream_out/dlna/profile_names.hpp<br></pre><pre><br></pre><pre>diff --git a/modules/services_discovery/Makefile.am b/modules/<br></pre><pre>services_discovery/Makefile.am<br></pre><pre>index 1b59cb1e4f..0b3dea0247 100644<br></pre><pre>--- a/modules/services_discovery/Makefile.am<br></pre><pre>+++ b/modules/services_discovery/Makefile.am<br></pre><pre>@@ -29,6 +29,7 @@ sd_LTLIBRARIES += $(LTLIBmtp)<br></pre><pre> libupnp_plugin_la_SOURCES = services_discovery/upnp.cpp <br></pre><pre>services_discovery/upnp.hpp \<br></pre><pre>                       services_discovery/upnp-wrapper.hpp \<br></pre><pre>                          services_discovery/upnp-wrapper.cpp \<br></pre><pre>+                         stream_out/dlna/profile_names.hpp \<br></pre><pre>                            stream_out/dlna/dlna_common.hpp \<br></pre><pre>                      stream_out/dlna/dlna.hpp \<br></pre><pre>                             stream_out/dlna/dlna.cpp<br></pre><pre>diff --git a/modules/stream_out/dlna/dlna.cpp b/modules/stream_out/dlna/<br></pre><pre>dlna.cpp<br></pre><pre>index e0c266d8e3..39acfd0150 100644<br></pre><pre>--- a/modules/stream_out/dlna/dlna.cpp<br></pre><pre>+++ b/modules/stream_out/dlna/dlna.cpp<br></pre><pre>@@ -66,8 +66,9 @@ struct sout_stream_sys_t<br></pre><pre>     std::shared_ptr<MediaRenderer> renderer;<br></pre><pre>     UpnpInstanceWrapper *p_upnp;<br></pre><pre> <br></pre><pre>-    bool canDecodeAudio( vlc_fourcc_t i_codec ) const;<br></pre><pre>-    bool canDecodeVideo( vlc_fourcc_t i_codec ) const;<br></pre><pre>+    ProtocolPtr canDecodeAudio( vlc_fourcc_t i_codec ) const;<br></pre><pre>+    ProtocolPtr canDecodeVideo( vlc_fourcc_t audio_codec,<br></pre><pre>+                         vlc_fourcc_t video_codec ) const;<br></pre><pre>     bool startSoutChain( sout_stream_t* p_stream,<br></pre><pre>                          const std::vector<sout_stream_id_sys_t*> &new_streams,<br></pre><pre>                          const std::string &sout );<br></pre><pre>@@ -84,6 +85,7 @@ struct sout_stream_sys_t<br></pre><pre>     int                                 http_port;<br></pre><pre>     std::vector<sout_stream_id_sys_t*>  streams;<br></pre><pre>     std::vector<sout_stream_id_sys_t*>  out_streams;<br></pre><pre>+    std::vector<protocol_info_t>        device_protocols;<br></pre><pre> <br></pre><pre> private:<br></pre><pre>     std::string GetVencOption( sout_stream_t *, vlc_fourcc_t *,<br></pre><pre>@@ -154,14 +156,66 @@ char *getServerIPAddress() {<br></pre><pre>     return ip;<br></pre><pre> }<br></pre><pre> <br></pre><pre>-bool sout_stream_sys_t::canDecodeAudio(vlc_fourcc_t i_codec) const<br></pre><pre>+std::string dlna_write_protocol_info (dlna_transport_protocol_t type,<br></pre><pre>+                                      dlna_org_conversion_t ci,<br></pre><pre>+                                      dlna_org_operation_t op,<br></pre><pre>+                                      dlna_org_flags_t flags,<br></pre><pre>+                                      dlna_profile_t p)<br></pre><pre> {<br></pre><pre>-    return i_codec == VLC_CODEC_MP4A;<br></pre><pre>+    std::ostringstream protocol;<br></pre><pre>+    char dlna_info[448];<br></pre><pre>+<br></pre><pre>+    if (type == DLNA_TRANSPORT_PROTOCOL_HTTP)<br></pre><pre>+        protocol << "http-get:*:";<br></pre><pre>+<br></pre><pre>+    protocol << p.mime;<br></pre><pre>+    protocol << ":";<br></pre><pre>+<br></pre><pre>+    if (p.name != "*")<br></pre><pre>+        protocol << "DLNA.ORG_PN=" << p.name.c_str() << ";";<br></pre><pre>+<br></pre><pre>+    sprintf (dlna_info, "%s=%.2x;%s=%d;%s=%.8x%.24x",<br></pre><pre>+               "DLNA.ORG_OP", op, "DLNA.ORG_CI", ci,<br></pre><pre>+               "DLNA.ORG_FLAGS", flags, 0);<br></pre><pre>+    protocol << dlna_info;<br></pre><pre>+<br></pre><pre>+    return protocol.str();<br></pre><pre> }<br></pre><pre> <br></pre><pre>-bool sout_stream_sys_t::canDecodeVideo(vlc_fourcc_t i_codec) const<br></pre><pre>+std::vector<std::string> split(const std::string &s, char delim) {<br></pre><pre>+    std::stringstream ss(s);<br></pre><pre>+    std::string item;<br></pre><pre>+    std::vector<std::string> elems;<br></pre><pre>+    while (std::getline(ss, item, delim)) {<br></pre><pre>+        elems.push_back(item);<br></pre><pre>+    }<br></pre><pre>+    return elems;<br></pre><pre>+}<br></pre><pre>+<br></pre><pre>+ProtocolPtr sout_stream_sys_t::canDecodeAudio(vlc_fourcc_t audio_codec) const<br></pre><pre> {<br></pre><pre>-    return i_codec == VLC_CODEC_H264;<br></pre><pre>+    for (protocol_info_t protocol : device_protocols) {<br></pre><pre>+        if (protocol.profile.media == DLNA_CLASS_AUDIO<br></pre><pre>+                && protocol.profile.audio_codec == audio_codec)<br></pre><pre>+        {<br></pre><pre>+            return std::make_unique<protocol_info_t>(protocol);<br></pre><pre>+        }<br></pre><pre>+    }<br></pre><pre>+    return nullptr;<br></pre><pre>+}<br></pre><pre>+<br></pre><pre>+ProtocolPtr sout_stream_sys_t::canDecodeVideo(vlc_fourcc_t audio_codec,<br></pre><pre>+                vlc_fourcc_t video_codec) const<br></pre><pre>+{<br></pre><pre>+    for (protocol_info_t protocol : device_protocols) {<br></pre><pre>+        if (protocol.profile.media == DLNA_CLASS_AV<br></pre><pre>+                && protocol.profile.audio_codec == audio_codec<br></pre><pre>+                && protocol.profile.video_codec == video_codec)<br></pre><pre>+        {<br></pre><pre>+            return std::make_unique<protocol_info_t>(protocol);<br></pre><pre>+        }<br></pre><pre>+    }<br></pre><pre>+    return nullptr;<br></pre><pre> }<br></pre><pre> <br></pre><pre> bool sout_stream_sys_t::startSoutChain(sout_stream_t *p_stream,<br></pre><pre>@@ -495,32 +549,12 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t <br></pre><pre>*p_stream )<br></pre><pre>         const es_format_t *p_es = &stream->fmt;<br></pre><pre>         if (p_es->i_cat == AUDIO_ES)<br></pre><pre>         {<br></pre><pre>-            if (!canDecodeAudio( p_es->i_codec ))<br></pre><pre>-            {<br></pre><pre>-                msg_Dbg( p_stream, "can't remux audio track %d codec <br></pre><pre>%4.4s",<br></pre><pre>-                        p_es->i_id, (const char*)&p_es->i_codec );<br></pre><pre>-                p_original_audio = p_es;<br></pre><pre>-                canRemux = false;<br></pre><pre>-            }<br></pre><pre>-            else if (i_codec_audio == 0)<br></pre><pre>-            {<br></pre><pre>-                i_codec_audio = p_es->i_codec;<br></pre><pre>-            }<br></pre><pre>+            p_original_audio = p_es;<br></pre><pre>             new_streams.push_back(stream);<br></pre><pre>         }<br></pre><pre>         else if (b_supports_video && p_es->i_cat == VIDEO_ES)<br></pre><pre>         {<br></pre><pre>-            if (!canDecodeVideo( p_es->i_codec ))<br></pre><pre>-            {<br></pre><pre>-                msg_Dbg( p_stream, "can't remux video track %d codec <br></pre><pre>%4.4s",<br></pre><pre>-                        p_es->i_id, (const char*)&p_es->i_codec );<br></pre><pre>-                p_original_video = p_es;<br></pre><pre>-                canRemux = false;<br></pre><pre>-            }<br></pre><pre>-            else if (i_codec_video == 0)<br></pre><pre>-            {<br></pre><pre>-                i_codec_video = p_es->i_codec;<br></pre><pre>-            }<br></pre><pre>+      p_original_video = p_es;<br></pre><pre>             new_streams.push_back(stream);<br></pre><pre>         }<br></pre><pre>     }<br></pre><pre>@@ -528,6 +562,62 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t <br></pre><pre>*p_stream )<br></pre><pre>     if (new_streams.empty())<br></pre><pre>         return VLC_SUCCESS;<br></pre><pre> <br></pre><pre>+    ProtocolPtr stream_protocol;<br></pre><pre>+    // check if we have an audio only stream<br></pre><pre>+    if (!p_original_video && p_original_audio)<br></pre><pre>+    {<br></pre><pre>+        if( !(stream_protocol = canDecodeAudio(p_original_audio-<br></pre><blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre>i_codec)) )<br></pre></blockquote><pre>+        {<br></pre><pre>+        msg_Dbg( p_stream, "can't remux audio track %d codec %4.4s",<br></pre><pre>+                p_original_audio->i_id, (const char*)&p_original_audio->i_codec );<br></pre><pre>+            stream_protocol = make_protocol(default_audio_protocol);<br></pre><pre>+            canRemux = false;<br></pre><pre>+        }<br></pre><pre>+      else<br></pre><pre>+      i_codec_audio = p_original_audio->i_codec;<br></pre><pre>+    }<br></pre><pre>+    // video only stream<br></pre><pre>+    else if (p_original_video && !p_original_audio)<br></pre><pre>+    {<br></pre><pre>+        if( !(stream_protocol = canDecodeVideo(VLC_CODEC_NONE,<br></pre><pre>+                        p_original_video->i_codec)) )<br></pre><pre>+        {<br></pre><pre>+       msg_Dbg(p_stream, "can't remux video track %d codec: %4.4s",<br></pre><pre>+                p_original_video->i_id, (const char*)&p_original_video->i_codec);<br></pre><pre>+            stream_protocol = make_protocol(default_video_protocol);<br></pre><pre>+            canRemux = false;<br></pre><pre>+        }<br></pre><pre>+       else<br></pre><pre>+            i_codec_video = p_original_video->i_codec;<br></pre><pre>+    }<br></pre><pre>+    else<br></pre><pre>+    {<br></pre><pre>+        if( !(stream_protocol = canDecodeVideo( p_original_audio-<br></pre><blockquote type="cite" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-color:rgb(114, 159, 207);border-left-style:solid;border-left-width:2px;padding-left:1ex;"><pre>i_codec,<br></pre></blockquote><pre>+                        p_original_video->i_codec)) )<br></pre><pre>+        {<br></pre><pre>+            msg_Dbg(p_stream, "can't remux video track %d with audio: %4.4s and <br></pre><pre>video: %4.4s",<br></pre><pre>+                 p_original_video->i_id, (const char*)&p_original_audio->i_codec,<br></pre><pre>+                    (const char*)&p_original_video->i_codec);<br></pre><pre>+            stream_protocol = make_protocol(default_video_protocol);<br></pre><pre>+            canRemux = false;<br></pre><pre>+<br></pre><pre>+            // check which codec needs transcoding<br></pre><pre>+            if (stream_protocol->profile.audio_codec == <br></pre><pre>p_original_audio->i_codec)<br></pre><pre>+            i_codec_audio = p_original_audio->i_codec;<br></pre><pre>+            if (stream_protocol->profile.video_codec == <br></pre><pre>p_original_video->i_codec)<br></pre><pre>+                i_codec_video = p_original_video->i_codec;<br></pre><pre>+        }<br></pre><pre>+    else<br></pre><pre>+  {<br></pre><pre>+            i_codec_audio = p_original_audio->i_codec;<br></pre><pre>+            i_codec_video = p_original_video->i_codec;<br></pre><pre>+       }<br></pre><pre>+    }<br></pre><pre>+<br></pre><pre>+    msg_Dbg( p_stream, "using DLNA profile %s:%s",<br></pre><pre>+                stream_protocol->profile.mime.c_str(),<br></pre><pre>+                stream_protocol->profile.name.c_str() );<br></pre><pre>+<br></pre><pre>     std::ostringstream ssout;<br></pre><pre>     if ( !canRemux )<br></pre><pre>     {<br></pre><pre>@@ -554,13 +644,13 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t <br></pre><pre>*p_stream )<br></pre><pre>         ssout << "transcode{";<br></pre><pre>         if ( i_codec_audio == 0 && p_original_audio )<br></pre><pre>         {<br></pre><pre>-            i_codec_audio = VLC_CODEC_MP4A;<br></pre><pre>+            i_codec_audio = stream_protocol->profile.audio_codec;<br></pre><pre>             ssout << GetAcodecOption( p_stream, &i_codec_audio,<br></pre><pre>                                       &p_original_audio->audio, <br></pre><pre>i_quality );<br></pre><pre>         }<br></pre><pre>         if ( i_codec_video == 0 && p_original_video )<br></pre><pre>         {<br></pre><pre>-            i_codec_video = VLC_CODEC_H264;<br></pre><pre>+            i_codec_video = stream_protocol->profile.video_codec;<br></pre><pre>             ssout << GetVcodecOption( p_stream, &i_codec_video,<br></pre><pre>                                       &p_original_video->video, <br></pre><pre>i_quality );<br></pre><pre>         }<br></pre><pre>@@ -575,8 +665,8 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t <br></pre><pre>*p_stream )<br></pre><pre>     std::string root_url = ss.str();<br></pre><pre> <br></pre><pre>     ssout << "http{dst=:" << http_port << root_url<br></pre><pre>-          << ",mux=" << "mp4stream"<br></pre><pre>-          << ",access=http{mime=" << "video/mp4" << "}}";<br></pre><pre>+          << ",mux=" << stream_protocol->profile.mux<br></pre><pre>+          << ",access=http{mime=" << stream_protocol->profile.mime << "}}";<br></pre><pre> <br></pre><pre>     char *ip = getServerIPAddress();<br></pre><pre>     if (ip == NULL)<br></pre><pre>@@ -595,7 +685,7 @@ int sout_stream_sys_t::UpdateOutput( sout_stream_t <br></pre><pre>*p_stream )<br></pre><pre> <br></pre><pre>     msg_Dbg(p_stream, "AVTransportURI: %s", uri);<br></pre><pre>     renderer->Stop();<br></pre><pre>-    renderer->SetAVTransportURI(uri);<br></pre><pre>+    renderer->SetAVTransportURI(uri, *stream_protocol);<br></pre><pre>     renderer->Play("1");<br></pre><pre> <br></pre><pre>     free(uri);<br></pre><pre>@@ -713,15 +803,126 @@ int MediaRenderer::Stop()<br></pre><pre>     return VLC_SUCCESS;<br></pre><pre> }<br></pre><pre> <br></pre><pre>-int MediaRenderer::SetAVTransportURI(const char* uri)<br></pre><pre>+std::vector<protocol_info_t> MediaRenderer::GetProtocolInfo()<br></pre><pre> {<br></pre><pre>+    std::string protocol_csv;<br></pre><pre>+    std::vector<protocol_info_t> supported_protocols;<br></pre><pre>+    std::list<std::pair<const char*, const char*>> arg_list;<br></pre><pre>+<br></pre><pre>+    IXML_Document *response = SendAction("GetProtocolInfo",<br></pre><pre>+                                CONNECTION_MANAGER_SERVICE_TYPE, <br></pre><pre>arg_list);<br></pre><pre>+    if(!response)<br></pre><pre>+    {<br></pre><pre>+        return supported_protocols;<br></pre><pre>+    }<br></pre><pre>+<br></pre><pre>+    // Get the CSV list of protocols/profiles supported by the device<br></pre><pre>+    if( IXML_NodeList *protocol_list = <br></pre><pre>ixmlDocument_getElementsByTagName( response , "Sink" ) )<br></pre><pre>+    {<br></pre><pre>+        if ( IXML_Node* protocol_node = <br></pre><pre>ixmlNodeList_item( protocol_list, 0 ) )<br></pre><pre>+        {<br></pre><pre>+            IXML_Node* p_text_node = <br></pre><pre>ixmlNode_getFirstChild( protocol_node );<br></pre><pre>+            if ( p_text_node )<br></pre><pre>+            {<br></pre><pre>+                <br></pre><pre>protocol_csv.assign(ixmlNode_getNodeValue( p_text_node ));<br></pre><pre>+            }<br></pre><pre>+        }<br></pre><pre>+        ixmlNodeList_free( protocol_list);<br></pre><pre>+    }<br></pre><pre>+    ixmlDocument_free(response);<br></pre><pre>+<br></pre><pre>+    msg_Dbg(parent, "Device supports protocols: %s", <br></pre><pre>protocol_csv.c_str());<br></pre><pre>+    // parse the CSV list<br></pre><pre>+    // format: <transportProtocol>:<network>:<mime>:<additionalInfo><br></pre><pre>+    std::vector<std::string> protocols = split(protocol_csv, ',');<br></pre><pre>+    for (std::string protocol : protocols ) {<br></pre><pre>+        std::vector<std::string> protocol_info = split(protocol, ':');<br></pre><pre>+<br></pre><pre>+        // We only support http transport for now.<br></pre><pre>+        if (protocol_info.size() == 4 && protocol_info.at(0) == "http-<br></pre><pre>get")<br></pre><pre>+        {<br></pre><pre>+            protocol_info_t proto;<br></pre><pre>+<br></pre><pre>+            // Get the DLNA profile name<br></pre><pre>+            std::string profile_name;<br></pre><pre>+            std::string tag = "DLNA.ORG_PN=";<br></pre><pre>+<br></pre><pre>+            if (protocol_info.at(3) == "*")<br></pre><pre>+            {<br></pre><pre>+               profile_name = "*";<br></pre><pre>+            }<br></pre><pre>+            else if (std::size_t index = <br></pre><pre>protocol_info.at(3).find(tag) != std::string::npos)<br></pre><pre>+            {<br></pre><pre>+                std::size_t end = protocol_info.at(3).find(';', index + <br></pre><pre>1);<br></pre><pre>+                int start = index + tag.length() - 1;<br></pre><pre>+                int length = end - start;<br></pre><pre>+                profile_name = protocol_info.at(3).substr(start, <br></pre><pre>length);<br></pre><pre>+            }<br></pre><pre>+<br></pre><pre>+            // Match our supported profiles to device profiles<br></pre><pre>+            for (dlna_profile_t profile : dlna_profile_list) {<br></pre><pre>+                if (protocol_info.at(2) == profile.mime<br></pre><pre>+                        && (profile_name == profile.name || <br></pre><pre>profile_name == "*"))<br></pre><pre>+                {<br></pre><pre>+                    proto.profile = std::move(profile);<br></pre><pre>+                    supported_protocols.push_back(proto);<br></pre><pre>+                    // we do not break here to account for wildcards<br></pre><pre>+                    // as protocolInfo's fourth field aka <br></pre><pre><additionalInfo><br></pre><pre>+                }<br></pre><pre>+            }<br></pre><pre>+        }<br></pre><pre>+    }<br></pre><pre>+<br></pre><pre>+    msg_Dbg( parent , "Got %zu supported profiles", <br></pre><pre>supported_protocols.size() );<br></pre><pre>+    return supported_protocols;<br></pre><pre>+}<br></pre><pre>+<br></pre><pre>+int MediaRenderer::SetAVTransportURI(const char* uri, const <br></pre><pre>protocol_info_t proto)<br></pre><pre>+{<br></pre><pre>+    static const char didl[] =<br></pre><pre>+        "<DIDL-Lite "<br></pre><pre>+        "xmlns:dc=\"<br></pre><div><a href="http://purl.org/dc/elements/1.1/\"></a><br></div>
<pre><a href="http://purl.org/dc/elements/1.1/\">http://purl.org/dc/elements/1.1/\</a><br></pre><div><a href="http://purl.org/dc/elements/1.1/\"></a><br></div>
<pre>" "<br></pre><pre>+        "xmlns=\"urn:schemas-upnp-org:metadata-1-0/DIDL-Lite/\" "<br></pre><pre>+        "xmlns:upnp=\"urn:schemas-upnp-org:metadata-1-0/upnp/\" "<br></pre><pre>+        "xmlns:xsi=\"<br></pre><div><a href="http://www.w3.org/2001/XMLSchema-instance\"></a><br></div>
<pre><a href="http://www.w3.org/2001/XMLSchema-instance\">http://www.w3.org/2001/XMLSchema-instance\</a><br></pre><div><a href="http://www.w3.org/2001/XMLSchema-instance\"></a><br></div>
<pre>">"<br></pre><pre>+        "<item id=\"f-0\" parentID=\"0\" restricted=\"0\">"<br></pre><pre>+        "<dc:title>%s</dc:title>"<br></pre><pre>+        "<upnp:class>%s</upnp:class>"<br></pre><pre>+        "<res protocolInfo=\"%s\">%s</res>"<br></pre><pre>+        "</item>"<br></pre><pre>+        "</DIDL-Lite>";<br></pre><pre>+<br></pre><pre>+    bool audio = proto.profile.media == DLNA_CLASS_AUDIO;<br></pre><pre>+    dlna_org_flags_t flags = DLNA_ORG_FLAG_STREAMING_TRANSFER_MODE |<br></pre><pre>+                             DLNA_ORG_FLAG_BACKGROUND_TRANSFERT_MODE |<br></pre><pre>+                             DLNA_ORG_FLAG_CONNECTION_STALL |<br></pre><pre>+                             DLNA_ORG_FLAG_DLNA_V15;<br></pre><pre>+    std::string dlna_protocol = <br></pre><pre>dlna_write_protocol_info(proto.transport,<br></pre><pre>+                            proto.ci,<br></pre><pre>+                            DLNA_ORG_OPERATION_RANGE,<br></pre><pre>+                            flags,<br></pre><pre>+                            proto.profile<br></pre><pre>+                            );<br></pre><pre>+<br></pre><pre>+    char *meta_data;<br></pre><pre>+    if (asprintf(&meta_data, didl,<br></pre><pre>+                audio ? "Audio" : "Video",<br></pre><pre>+                audio ? "object.item.audioItem" : <br></pre><pre>"object.item.videoItem",<br></pre><pre>+                dlna_protocol.c_str(),<br></pre><pre>+                uri) < 0) {<br></pre><pre>+        return VLC_ENOMEM;<br></pre><pre>+    }<br></pre><pre>+<br></pre><pre>+    msg_Dbg(parent, "didl: %s", meta_data);<br></pre><pre>     std::list<std::pair<const char*, const char*>> arg_list;<br></pre><pre>     arg_list.push_back(std::make_pair("InstanceID", "0"));<br></pre><pre>     arg_list.push_back(std::make_pair("CurrentURI", uri));<br></pre><pre>-    arg_list.push_back(std::make_pair("CurrentURIMetaData", "")); // <br></pre><pre>NOT_IMPLEMENTED<br></pre><pre>+    arg_list.push_back(std::make_pair("CurrentURIMetaData", <br></pre><pre>meta_data));<br></pre><pre> <br></pre><pre>     IXML_Document *p_response = SendAction("SetAVTransportURI",<br></pre><pre>                                     AV_TRANSPORT_SERVICE_TYPE, arg_list);<br></pre><pre>+<br></pre><pre>+    free(meta_data);<br></pre><pre>     if(!p_response)<br></pre><pre>     {<br></pre><pre>         return VLC_EGENERIC;<br></pre><pre>@@ -855,6 +1056,8 @@ int OpenSout( vlc_object_t *p_this )<br></pre><pre>         goto error;<br></pre><pre>     }<br></pre><pre> <br></pre><pre>+    p_sys->device_protocols = p_sys->renderer->GetProtocolInfo();<br></pre><pre>+<br></pre><pre>     p_stream->pf_add     = Add;<br></pre><pre>     p_stream->pf_del     = Del;<br></pre><pre>     p_stream->pf_send    = Send;<br></pre><pre>diff --git a/modules/stream_out/dlna/dlna.hpp b/modules/stream_out/dlna/dlna.hpp<br></pre><pre>index 59ff3d6c8d..7dcc2d7007 100644<br></pre><pre>--- a/modules/stream_out/dlna/dlna.hpp<br></pre><pre>+++ b/modules/stream_out/dlna/dlna.hpp<br></pre><pre>@@ -26,6 +26,31 @@<br></pre><pre> <br></pre><pre> #include "../../services_discovery/upnp-wrapper.hpp"<br></pre><pre> #include "dlna_common.hpp"<br></pre><pre>+#include "profile_names.hpp"<br></pre><pre>+<br></pre><pre>+struct protocol_info_t {<br></pre><pre>+    dlna_transport_protocol_t transport = DLNA_TRANSPORT_PROTOCOL_HTTP;<br></pre><pre>+    dlna_org_conversion_t ci = DLNA_ORG_CONVERSION_NONE;<br></pre><pre>+    dlna_profile_t profile;<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+typedef std::unique_ptr<protocol_info_t> ProtocolPtr;<br></pre><pre>+inline ProtocolPtr make_protocol(protocol_info_t a)<br></pre><pre>+{<br></pre><pre>+    return std::make_unique<protocol_info_t>(a);<br></pre><pre>+}<br></pre><pre>+<br></pre><pre>+const protocol_info_t default_audio_protocol = {<br></pre><pre>+    DLNA_TRANSPORT_PROTOCOL_HTTP,<br></pre><pre>+    DLNA_ORG_CONVERSION_TRANSCODED,<br></pre><pre>+    default_audio_profile,<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+const protocol_info_t default_video_protocol = {<br></pre><pre>+    DLNA_TRANSPORT_PROTOCOL_HTTP,<br></pre><pre>+    DLNA_ORG_CONVERSION_TRANSCODED,<br></pre><pre>+    default_video_profile,<br></pre><pre>+};<br></pre><pre> <br></pre><pre> namespace DLNA<br></pre><pre> {<br></pre><pre>@@ -53,7 +78,8 @@ public:<br></pre><pre> <br></pre><pre>     int Play(const char *speed);<br></pre><pre>     int Stop();<br></pre><pre>-    int SetAVTransportURI(const char* uri);<br></pre><pre>+    std::vector<protocol_info_t> GetProtocolInfo();<br></pre><pre>+    int SetAVTransportURI(const char* uri, const protocol_info_t proto);<br></pre><pre> };<br></pre><pre> <br></pre><pre> }<br></pre><pre>diff --git a/modules/stream_out/dlna/profile_names.hpp b/modules/<br></pre><pre>stream_out/dlna/profile_names.hpp<br></pre><pre>new file mode 100644<br></pre><pre>index 0000000000..3a00f7b41a<br></pre><pre>--- /dev/null<br></pre><pre>+++ b/modules/stream_out/dlna/profile_names.hpp<br></pre><pre>@@ -0,0 +1,833 @@<br></pre><pre>+/<br></pre><pre>*****************************************************************************<br></pre><pre>+ * profile_names.hpp : DLNA media profile names<br></pre><pre>+ <br></pre><pre>*****************************************************************************<br></pre><pre>+ * Copyright (C) 2004-2018 VLC authors and VideoLAN<br></pre><pre>+ *<br></pre><pre>+ * Authors: Shaleen Jain <<br></pre><div><a href="mailto:shaleen@jain.sh"></a><br></div>
<pre><a href="mailto:shaleen@jain.sh">shaleen@jain.sh</a><br></pre><div><a href="mailto:shaleen@jain.sh"></a><br></div>
<pre>><br></pre><pre>+ *<br></pre><pre>+ * This program is free software; you can redistribute it and/or modify <br></pre><pre>it<br></pre><pre>+ * under the terms of the GNU Lesser General Public License as <br></pre><pre>published by<br></pre><pre>+ * the Free Software Foundation; either version 2.1 of the License, or<br></pre><pre>+ * (at your option) any later version.<br></pre><pre>+ *<br></pre><pre>+ * This program is distributed in the hope that it will be useful,<br></pre><pre>+ * but WITHOUT ANY WARRANTY; without even the implied warranty of<br></pre><pre>+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br></pre><pre>+ * GNU Lesser General Public License for more details.<br></pre><pre>+ *<br></pre><pre>+ * You should have received a copy of the GNU Lesser General Public <br></pre><pre>License<br></pre><pre>+ * along with this program; if not, write to the Free Software <br></pre><pre>Foundation,<br></pre><pre>+ * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.<br></pre><pre>+ <br></pre><pre>*****************************************************************************/<br></pre><pre>+<br></pre><pre>+#ifndef DLNA_PROFILES_H<br></pre><pre>+#define DLNA_PROFILES_H<br></pre><pre>+<br></pre><pre>+#include<string><br></pre><pre>+#include<vlc_common.h><br></pre><pre>+#include<vlc_fourcc.h><br></pre><pre>+#include<vector><br></pre><pre>+<br></pre><pre>+#define VLC_CODEC_NONE 0<br></pre><pre>+#define CODEC_PROFILE_NONE 0<br></pre><pre>+<br></pre><pre>+enum dlna_transport_protocol_t {<br></pre><pre>+  DLNA_TRANSPORT_PROTOCOL_UNKNOWN,<br></pre><pre>+  DLNA_TRANSPORT_PROTOCOL_HTTP,<br></pre><pre>+  DLNA_TRANSPORT_PROTOCOL_RTP,<br></pre><pre>+  DLNA_TRANSPORT_PROTOCOL_ANY<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+/**<br></pre><pre>+ * DLNA.ORG_CI: conversion indicator parameter (integer)<br></pre><pre>+ *     0 not transcoded<br></pre><pre>+ *     1 transcoded<br></pre><pre>+ */<br></pre><pre>+enum dlna_org_conversion_t {<br></pre><pre>+  DLNA_ORG_CONVERSION_NONE = 0,<br></pre><pre>+  DLNA_ORG_CONVERSION_TRANSCODED = 1,<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+/**<br></pre><pre>+ * DLNA.ORG_OP: operations parameter (string)<br></pre><pre>+ *     "00" (or "0") neither time seek range nor range supported<br></pre><pre>+ *     "01" range supported<br></pre><pre>+ *     "10" time seek range supported<br></pre><pre>+ *     "11" both time seek range and range supported<br></pre><pre>+ */<br></pre><pre>+enum dlna_org_operation_t {<br></pre><pre>+  DLNA_ORG_OPERATION_NONE                  = 0x00,<br></pre><pre>+  DLNA_ORG_OPERATION_RANGE                 = 0x01,<br></pre><pre>+  DLNA_ORG_OPERATION_TIMESEEK              = 0x10,<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+/**<br></pre><pre>+ * DLNA.ORG_FLAGS, padded with 24 trailing 0s<br></pre><pre>+ *     80000000  31  senderPaced<br></pre><pre>+ *     40000000  30  lsopTimeBasedSeekSupported<br></pre><pre>+ *     20000000  29  lsopByteBasedSeekSupported<br></pre><pre>+ *     10000000  28  playcontainerSupported<br></pre><pre>+ *      8000000  27  s0IncreasingSupported<br></pre><pre>+ *      4000000  26  sNIncreasingSupported<br></pre><pre>+ *      2000000  25  rtspPauseSupported<br></pre><pre>+ *      1000000  24  streamingTransferModeSupported<br></pre><pre>+ *       800000  23  interactiveTransferModeSupported<br></pre><pre>+ *       400000  22  backgroundTransferModeSupported<br></pre><pre>+ *       200000  21  connectionStallingSupported<br></pre><pre>+ *       100000  20  dlnaVersion15Supported<br></pre><pre>+ *<br></pre><pre>+ *     Example: (1 << 24) | (1 << 22) | (1 << 21) | (1 << 20)<br></pre><pre>+ *       DLNA.ORG_FLAGS=01700000[000000000000000000000000] // [] show <br></pre><pre>padding<br></pre><pre>+ */<br></pre><pre>+enum dlna_org_flags_t {<br></pre><pre>+  DLNA_ORG_FLAG_SENDER_PACED               = (1 << 31),<br></pre><pre>+  DLNA_ORG_FLAG_TIME_BASED_SEEK            = (1 << 30),<br></pre><pre>+  DLNA_ORG_FLAG_BYTE_BASED_SEEK            = (1 << 29),<br></pre><pre>+  DLNA_ORG_FLAG_PLAY_CONTAINER             = (1 << 28),<br></pre><pre>+  DLNA_ORG_FLAG_S0_INCREASE                = (1 << 27),<br></pre><pre>+  DLNA_ORG_FLAG_SN_INCREASE                = (1 << 26),<br></pre><pre>+  DLNA_ORG_FLAG_RTSP_PAUSE                 = (1 << 25),<br></pre><pre>+  DLNA_ORG_FLAG_STREAMING_TRANSFER_MODE    = (1 << 24),<br></pre><pre>+  DLNA_ORG_FLAG_INTERACTIVE_TRANSFERT_MODE = (1 << 23),<br></pre><pre>+  DLNA_ORG_FLAG_BACKGROUND_TRANSFERT_MODE  = (1 << 22),<br></pre><pre>+  DLNA_ORG_FLAG_CONNECTION_STALL           = (1 << 21),<br></pre><pre>+  DLNA_ORG_FLAG_DLNA_V15                   = (1 << 20),<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+inline dlna_org_flags_t operator|(dlna_org_flags_t a, dlna_org_flags_t <br></pre><pre>b)<br></pre><pre>+{<br></pre><pre>+    return static_cast<dlna_org_flags_t>(static_cast<int>(a) | <br></pre><pre>static_cast<int>(b));<br></pre><pre>+}<br></pre><pre>+<br></pre><pre>+enum dlna_media_class_t {<br></pre><pre>+  DLNA_CLASS_UNKNOWN,<br></pre><pre>+  DLNA_CLASS_IMAGE,<br></pre><pre>+  DLNA_CLASS_AUDIO,<br></pre><pre>+  DLNA_CLASS_AV,<br></pre><pre>+  DLNA_CLASS_COLLECTION<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+/**<br></pre><pre>+ * DLNA profile.<br></pre><pre>+ * This specifies the DLNA profile one file/stream is compatible with.<br></pre><pre>+ */<br></pre><pre>+class dlna_profile_t {<br></pre><pre>+public:<br></pre><pre>+    std::string name;<br></pre><pre>+    std::string mux;<br></pre><pre>+    std::string mime;<br></pre><pre>+    dlna_media_class_t media;<br></pre><pre>+    vlc_fourcc_t video_codec;<br></pre><pre>+    vlc_fourcc_t audio_codec;<br></pre><pre>+<br></pre><pre>+    dlna_profile_t()<br></pre><pre>+        : name()<br></pre><pre>+        , mux()<br></pre><pre>+        , mime()<br></pre><pre>+        , video_codec(VLC_CODEC_UNKNOWN)<br></pre><pre>+        , audio_codec(VLC_CODEC_UNKNOWN)<br></pre><pre>+        {};<br></pre><pre>+<br></pre><pre>+    dlna_profile_t(std::string profile, std::string mux, std::string <br></pre><pre>mime,<br></pre><pre>+            vlc_fourcc_t video, vlc_fourcc_t audio)<br></pre><pre>+        : name(profile)<br></pre><pre>+        , mux(mux)<br></pre><pre>+        , mime(mime)<br></pre><pre>+        , media(DLNA_CLASS_AV)<br></pre><pre>+        , video_codec(video)<br></pre><pre>+        , audio_codec(audio)<br></pre><pre>+        {};<br></pre><pre>+<br></pre><pre>+    dlna_profile_t(std::string profile, std::string mux, std::string <br></pre><pre>mime,<br></pre><pre>+            dlna_media_class_t media, vlc_fourcc_t video, vlc_fourcc_t <br></pre><pre>audio)<br></pre><pre>+        : name(profile)<br></pre><pre>+        , mux(mux)<br></pre><pre>+        , mime(mime)<br></pre><pre>+        , media(media)<br></pre><pre>+        , video_codec(video)<br></pre><pre>+        , audio_codec(audio)<br></pre><pre>+        {};<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+const dlna_profile_t default_audio_profile = {<br></pre><pre>+    "MP3",<br></pre><pre>+    "ts",<br></pre><pre>+    "audio/mpeg",<br></pre><pre>+    DLNA_CLASS_AUDIO,<br></pre><pre>+    VLC_CODEC_NONE,<br></pre><pre>+    VLC_CODEC_MPGA,<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+/**<br></pre><pre>+ * AVC Main Profile SD video with MPEG-4 AAC audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+ */<br></pre><pre>+const dlna_profile_t default_video_profile = {<br></pre><pre>+    "AVC_MP4_MP_SD",<br></pre><pre>+    "mp4stream",<br></pre><pre>+    "video/mp4",<br></pre><pre>+    DLNA_CLASS_AV,<br></pre><pre>+    VLC_CODEC_H264,<br></pre><pre>+    VLC_CODEC_MP4A,<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+std::vector<dlna_profile_t> dlna_profile_list = {<br></pre><pre>+<br></pre><pre>+    default_audio_profile,<br></pre><pre>+    default_video_profile,<br></pre><pre>+<br></pre><pre>+    //------ Audio Profiles ------//<br></pre><pre>+<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "application/ogg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_VORBIS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "application/ogg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_OPUS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "audio/x-vorbis",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_VORBIS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "audio/x-vorbis+ogg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_VORBIS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "audio/ogg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_OPUS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "*",<br></pre><pre>+        "ogg",<br></pre><pre>+        "audio/ogg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_VORBIS,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "MP3",<br></pre><pre>+        "ts",<br></pre><pre>+        "audio/mpeg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_MP3,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "MP3X",<br></pre><pre>+        "ts",<br></pre><pre>+        "audio/mpeg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_MPGA,<br></pre><pre>+    },<br></pre><pre>+    {<br></pre><pre>+        "MP3X",<br></pre><pre>+        "ts",<br></pre><pre>+        "audio/mpeg",<br></pre><pre>+        DLNA_CLASS_AUDIO,<br></pre><pre>+        VLC_CODEC_NONE,<br></pre><pre>+        VLC_CODEC_MP3,<br></pre><pre>+    },<br></pre><pre>+<br></pre><pre>+    //------ Video Profiles ------//<br></pre><pre>+<br></pre><pre>+    /**<br></pre><pre>+     * MPEG-2 HD/SD video wrapped in MPEG-2 transport stream as <br></pre><pre>constrained by<br></pre><pre>+     * SCTE-43 standards, with AC-3 audio, without a timestamp field<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_NA_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * North America region profile for MPEG-2 HD<br></pre><pre>+     * 3Dframe-compatible video with AC-3 audio,<br></pre><pre>+     * utilizing a DLNA Transport Packet without a Timestamp field<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_NA_3DFC_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * MPEG-2 Video, wrapped in MPEG-2 transport stream, Main Profile,<br></pre><pre>+     * Standard Definition, with AC-3 audio, without a timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_SD_EU_AC3_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * MPEG-2 Video, wrapped in MPEG-2 transport stream, Main Profile<br></pre><pre>+     * Standard Definition, with AC-3 audio, with a valid non-zero <br></pre><pre>timestamp<br></pre><pre>+     * field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_SD_EU_AC3_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * MPEG-2 Main Profile at Main, High-1 440 and High Level with <br></pre><pre>MPEG-2 AAC<br></pre><pre>+     * encapsulated in MPEG-2 TS with valid timestamp<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_JP_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * MPEG-2 Video, encapsulated in MPEG-2 transport stream, Main <br></pre><pre>Profile<br></pre><pre>+     * at Main Level, with MPEG-1 L2 audio, with a valid non-zero <br></pre><pre>timestamp<br></pre><pre>+     * field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "MPEG_TS_SD_JP_MPEG1_L2_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_MP2V,<br></pre><pre>+        VLC_CODEC_MP2,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio, with a valid<br></pre><pre>+     * non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio, with a valid<br></pre><pre>+     * non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio, with a valid<br></pre><pre>+     * non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio, with a valid<br></pre><pre>+     * non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP2,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio,<br></pre><pre>+     * without a timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio,<br></pre><pre>+     * without a timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio,<br></pre><pre>+     * without a timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 transport stream, as<br></pre><pre>+     * constrained by SCTE standards,<br></pre><pre>+     * with AC-3, Enhanced AC-3, MPEG-4 HE-AAC<br></pre><pre>+     * v2 or MPEG-1 Layer II audio,<br></pre><pre>+     * without a timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP2,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC high profile, HD 3D frame-compatible video<br></pre><pre>+     * wrapped in MPEG-2 transport stream with AC-3,<br></pre><pre>+     * Enhanced AC-3 or HE AAC audio, without a Timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_3DFC_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC high profile, HD 3D frame-compatible video<br></pre><pre>+     * wrapped in MPEG-2 transport stream with AC-3,<br></pre><pre>+     * Enhanced AC-3 or HE AAC audio, without a Timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_3DFC_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC high profile, HD 3D frame-compatible video<br></pre><pre>+     * wrapped in MPEG-2 transport stream with AC-3,<br></pre><pre>+     * Enhanced AC-3 or HE AAC audio, without a Timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_NA_3DFC_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 TS transport stream<br></pre><pre>+     * as constrained by DVB standards, with AC-3,<br></pre><pre>+     * Enhanced AC-3 and MPEG-4 HE-AAC v2 audio.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_EU_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 TS transport stream<br></pre><pre>+     * as constrained by DVB standards, with AC-3,<br></pre><pre>+     * Enhanced AC-3 and MPEG-4 HE-AAC v2 audio.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_EU_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video wrapped in MPEG-2 TS transport stream<br></pre><pre>+     * as constrained by DVB standards, with AC-3,<br></pre><pre>+     * Enhanced AC-3 and MPEG-4 HE-AAC v2 audio.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_EU_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * European region profile for HD/SD resolution.<br></pre><pre>+     * AVC video using the Scalable High Profile (SVC)<br></pre><pre>+     * wrapped in MPEG-2 Transport Stream with AC-3 audio,<br></pre><pre>+     * with a valid non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_SHP_HD_EU_AC3_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * European region profile for HD/SD resolution. AVC video using <br></pre><pre>the<br></pre><pre>+     * Scalable High Profile (SVC) wrapped in MPEG-2 Transport Stream<br></pre><pre>+     * with MPEG-4 HE-AAC v2 Level 4 audio, with a valid non-zero <br></pre><pre>timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_SHP_HD_EU_HEAACv2_L4_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/vnd.dlna.mpeg-tts",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC HD/SD video with AC-3 audio including dual-mono channel <br></pre><pre>mode, wrapped<br></pre><pre>+     * in MPEG-2 TS with valid timestamp for 24 Hz system.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_HD_24_AC3_X_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC HD/SD video with AC-3 audio including dual-mono channel <br></pre><pre>mode, wrapped<br></pre><pre>+     * in MPEG-2 TS with valid timestamp for 50 Hz system.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_HD_50_AC3_X_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC HD/SD video with AC-3 audio including dual-mono channel <br></pre><pre>mode,<br></pre><pre>+     * wrapped in MPEG-2 TS with valid timestamp for 60 Hz system.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_HD_60_AC3_X_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC wrapped in MPEG-2 transport stream, Main/High profile, with<br></pre><pre>+     * MPEG-2 AAC audio, with a valid non-zero timestamp field.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_TS_JP_AAC_T",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mpeg",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video with MPEG-4 HE-AAC v2<br></pre><pre>+     * and Enhanced AC-3 audio, encapsulated in MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_EU",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC video with MPEG-4 HE-AAC v2<br></pre><pre>+     * and Enhanced AC-3 audio, encapsulated in MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_EU",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_A52,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC wrapped in MP4 baseline profile CIF15 with AAC LC audio.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_BL_CIF15_AAC_520",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC wrapped in MP4 baseline profile CIF30 with AAC LC audio.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_BL_CIF30_AAC_940",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with Enhanced AC-3 audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_MP_SD_EAC3",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile HD video with MPEG-4 AAC audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_MP_SD",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with Enhanced AC-3 audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_HP_HD_EAC3",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_EAC3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC high profile video with HE AAC v2 stereo or HE AAC 7.1-<br></pre><pre>channel audio,<br></pre><pre>+     * encapsulated in an MP4 file.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MP4_HD_HEAACv2_L6",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with MPEG-4 AAC audio, encapsulated in <br></pre><pre>MKV.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_MP_HD_AAC_MULT5",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with MPEG-4 HE-AAC audio, encapsulated in <br></pre><pre>MKV.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_MP_HD_HEAAC_L4",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with MP3 audio, encapsulated in MKV<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_MP_HD_MPEG1_L3",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MPGA,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with MP3 audio, encapsulated in MKV<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_MP_HD_MPEG1_L3",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with MP3 audio, encapsulated in MKV<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_HP_HD_MPEG1_L3",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MPGA,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with MP3 audio, encapsulated in MKV<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_HP_HD_MPEG1_L3",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP3,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with MPEG-4 AAC audio, encapsulated in <br></pre><pre>MKV.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_HP_HD_AAC_MULT5",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with MPEG-4 HE-AAC audio, encapsulated in <br></pre><pre>MKV.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "AVC_MKV_HP_HD_HEAAC_L4",<br></pre><pre>+        "avformat{mux=matroska,options={live=1}}",<br></pre><pre>+        "video/x-matroska",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC SD video wrapped in MPEG-2 transport stream, as constrained <br></pre><pre>by<br></pre><pre>+     * SCTE standards, with AAC audio and optional enhanced audio,<br></pre><pre>+     * without a timestamp field and constrained to an SD video profile<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_TS_SD_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mp2t",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC HD video wrapped in MPEG-2 transport stream, as constrained <br></pre><pre>by<br></pre><pre>+     * SCTE standards, with AAC audio and optional enhanced audio,<br></pre><pre>+     * without a timestamp field and constrained to an HD video profile<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_TS_HD_ISO",<br></pre><pre>+        "ts",<br></pre><pre>+        "video/mp2t",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile SD video with AAC audio and optional enhanced <br></pre><pre>audio,<br></pre><pre>+     * encapsulated in MP4 conforming to the additional DECE CFF <br></pre><pre>requirements<br></pre><pre>+     * including encryption and constrained to the DECE SD profile <br></pre><pre>requirements.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_MP4_SD",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile HD video with AAC audio and optional enhanced <br></pre><pre>audio,<br></pre><pre>+     * encapsulated in MP4 conforming to the additional DECE CFF <br></pre><pre>requirements<br></pre><pre>+     * including encryption and constrained to the DECE HD profile <br></pre><pre>requirements.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_MP4_HD",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC Main Profile video with HE AACv2 L4 audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_MP4_SD_HEAACv2_L4",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC High Profile video with HE AACv2 L4 audio, encapsulated in <br></pre><pre>MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_MP4_HD_HEAACv2_L4",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * AVC high profile video with HE AAC v2 stereo or HE AAC 7.1-<br></pre><pre>channel audio,<br></pre><pre>+     * encapsulated in an MP4 file suitable for MPEG DASH conformant <br></pre><pre>adaptive delivery<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_AVC_MP4_HD_HEAACv2_L6",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_H264,<br></pre><pre>+        VLC_CODEC_MP4A,<br></pre><pre>+    },<br></pre><pre>+    /**<br></pre><pre>+     * HEVC High Profile HD and UHD video with AC-3,<br></pre><pre>+     * Enhanced AC-3, HE-AACv2 or MPEG-1 LII audio,<br></pre><pre>+     * encapsulated in MP4.<br></pre><pre>+     */<br></pre><pre>+    {<br></pre><pre>+        "DASH_HEVC_MP4_UHD_NA",<br></pre><pre>+        "mp4stream",<br></pre><pre>+        "video/mp4",<br></pre><pre>+        VLC_CODEC_HEVC,<br></pre><pre>+        VLC_CODEC_MP2,<br></pre><pre>+    },<br></pre><pre>+};<br></pre><pre>+<br></pre><pre>+#endif /* DLNA_PROFILES_H */<br></pre><pre>-- <br></pre><pre>2.19.1<br></pre><pre><br></pre><pre>_______________________________________________<br></pre><pre>vlc-devel mailing list<br></pre><pre>To unsubscribe or modify your subscription options:<br></pre><div><a href="https://mailman.videolan.org/listinfo/vlc-devel"></a><br></div>
<pre><a href="https://mailman.videolan.org/listinfo/vlc-devel">https://mailman.videolan.org/listinfo/vlc-devel</a><br></pre><div><a href="https://mailman.videolan.org/listinfo/vlc-devel"></a><br></div>
<pre><br></pre></blockquote><pre><br></pre><pre>_______________________________________________<br></pre><pre>vlc-devel mailing list<br></pre><pre>To unsubscribe or modify your subscription options:<br></pre><div><a href="https://mailman.videolan.org/listinfo/vlc-devel"></a><br></div>
<pre><a href="https://mailman.videolan.org/listinfo/vlc-devel">https://mailman.videolan.org/listinfo/vlc-devel</a><br></pre><div><a href="https://mailman.videolan.org/listinfo/vlc-devel"></a><br></div>
</blockquote><div><div><span></span><br></div>
<pre><span>-- </span><br></pre><div style="width:71ch;"><span>Regards,</span><br></div>
<div style="width:71ch;"><span>Shaleen Jain</span><br></div>
<div><span></span><br></div>
</div>
<div><u>_______________________________________________</u><br></div>
<div>vlc-devel mailing list<br></div>
<div>To unsubscribe or modify your subscription options:<br></div>
<div><a href="https://mailman.videolan.org/listinfo/vlc-devel">https://mailman.videolan.org/listinfo/vlc-devel</a><br></div>
</blockquote><div><br></div>
</body>
</html>