diff options
author | Denis Loh <denis.loh@gmail.com> | 2009-10-28 12:35:54 +0100 |
---|---|---|
committer | Denis Loh <denis.loh@gmail.com> | 2009-10-28 12:35:54 +0100 |
commit | eb0522f864623adc5ade2475961d7f2f429da8d7 (patch) | |
tree | d44643286b2dae333c2cd4f1155e2f2b30407e46 /upnpcomponents/dlna.cpp | |
parent | b3e11cd2c33627da84867efa0069ddcd3c9c391e (diff) | |
download | vdr-plugin-upnp-eb0522f864623adc5ade2475961d7f2f429da8d7.tar.gz vdr-plugin-upnp-eb0522f864623adc5ade2475961d7f2f429da8d7.tar.bz2 |
Removed missing & signs since last revision
Diffstat (limited to 'upnpcomponents/dlna.cpp')
-rw-r--r-- | upnpcomponents/dlna.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/upnpcomponents/dlna.cpp b/upnpcomponents/dlna.cpp index 1d57d0e..0b15cbe 100644 --- a/upnpcomponents/dlna.cpp +++ b/upnpcomponents/dlna.cpp @@ -45,7 +45,7 @@ void cDlna::registerProfile(DLNAProfile* Profile, int Op, const char* Ps, int Ci } void cDlna::registerMainProfiles(){ - this->registerProfile(&DLNA_PROFILE_MPEG2_TS_SD_EU, -1, NULL, -1, DLNA_FLAGS_PLUGIN_SUPPORT); + this->registerProfile(&DLNA_PROFILE_MPEG_TS_SD_EU, -1, NULL, -1, DLNA_FLAGS_PLUGIN_SUPPORT); this->registerProfile(&DLNA_PROFILE_AVC_TS_HD_EU, -1, NULL, -1, DLNA_FLAGS_PLUGIN_SUPPORT); } @@ -73,7 +73,7 @@ DLNAProfile* cDlna::getProfileOfChannel(cChannel* Channel){ switch(Channel->Vtype()){ case 0x02: // MPEG2 Video - return &DLNA_PROFILE_MPEG2_TS_SD_EU; + return &DLNA_PROFILE_MPEG_TS_SD_EU; case 0x1B: return &DLNA_PROFILE_AVC_TS_HD_EU; default: |