| |||||||
| 0.2.3.0 RC1 and SVN Builds Post bugs you have found in 0.2.3.0 RC1 or any SVN-Snapshot here. |
![]() |
| | LinkBack | Thread Tools | Display Modes |
| | #1 (permalink) |
| Portal Developer Join Date: Feb 2007 Location: Hamburg Age: 34
Posts: 515
Thanks: 26
Thanked 41 Times in 15 Posts
Country: | Hi all. This is a minor Bug bug but it may lead to some misunderstandings and is easy to fix ... so here we go ![]() After updating my PowerDVD 7.3 (Build 2605 ??) to Build 2911 I noticed that the Decode settings dialog under "Configuration.exe/DirectShow Filter Control" has changed from "PowerDVD7 Decoder Settings" to "PowerDVD6 Decoder Settings". This was a problem to me because I have to disable the dxva for h.264 content on my current config (long story ) and the "PowerDVD6 Decoder Settings" does not offer this option. (OK, I know there are registry values do edit ... but ...)A brief look into the code shows that the Config is searching for all audio codecs and enables the "PowerDVD6 Decoder Settings" when it founds a "CyberLink Audio Decoder" and the "PowerDVD7 Decoder Settings" when "CyberLink Audio Decoder (PDVD7)" is found. The problem seems to be that after updating PowerDVD 7.3 to latest version (2911) the audio codec has changed is name back to "CyberLink Audio Decoder", and because of this only the "PowerDVD6 Decoder Settings" are shown. The easiest fix seems to be to change the query in the "SettingsForm.cs" from "CyberLink Audio Decoder (PDVD7)" to "CyberLink Audio Decode (PDVD7.x)". (The query is in line: 264) In this case the "PowerDVD7 Decoder Settings" show up again but the "PowerDVD6 Decoder Settings" stay visible as well (not a real problem). Maybe there can be something similar done to the PowerDVD6 query the avoid that both settings are shown. (I don't have PowerDVD 6 so I can't say if there is also such a PDVDx.x thing ... Bye Lars
__________________ Using a wide screen and tired of changing the aspect ratio via remote all the time? Use the ViewModeSwitcher Plugin and everything is working automatically. Are you able to find your home in MediaPortal? Yes you are! With the WorldMap plugin! Last edited by lkuech; 2007-07-09 at 12:07. |
| | |
| |
| | #2 (permalink) |
| Portal Member Join Date: Jan 2007 Location: Hertfordshire Age: 37
Posts: 183
Thanks: 8
Thanked 11 Times in 8 Posts
Country: | Hi Just a note to say that PowerDVD 7.3 patch 3104 was released on 11/07/2007 so any changes will need to take this into account. I haven't checked if the naming is the same or not but I don't see a PowerDVD 7 option under "Configuration.exe/DirectShow Filter Control" in the SVNs of 11/07/2007. Mew |
| | |
| | #3 (permalink) |
| Portal Developer Join Date: Feb 2007 Location: Hamburg Age: 34
Posts: 515
Thanks: 26
Thanked 41 Times in 15 Posts
Country: | patch 3104 ?? Good to know. Thanx Bye Lars
__________________ Using a wide screen and tired of changing the aspect ratio via remote all the time? Use the ViewModeSwitcher Plugin and everything is working automatically. Are you able to find your home in MediaPortal? Yes you are! With the WorldMap plugin! |
| | |
| | #4 (permalink) |
| Portal Member Join Date: Jan 2007 Location: Hertfordshire Age: 37
Posts: 183
Thanks: 8
Thanked 11 Times in 8 Posts
Country: | Hi Lars It would have helped if I posted the link to the patch. Here it is: http://www.cyberlink.com/multi/downl...7_112_ENU.html The site doesn't detail the version number. I found out about it on AVS Forum. I think someone looked at the version of the filters and concluded it was version 3104a. Mew |
| | |
| | #5 (permalink) |
| Portal Developer Join Date: Feb 2007 Location: Hamburg Age: 34
Posts: 515
Thanks: 26
Thanked 41 Times in 15 Posts
Country: | I have checked the patch 3104a yesterday evening... The still now PDVD7 settings tab... just PDVD6. So I would say (without checking it) that the filter is still named "CyberLink Audio Decoder". Has any Dev noticed this thread? Or should I open a bug report at sourceforge? Or should I become a dev myself? ![]() Bye Lars
__________________ Using a wide screen and tired of changing the aspect ratio via remote all the time? Use the ViewModeSwitcher Plugin and everything is working automatically. Are you able to find your home in MediaPortal? Yes you are! With the WorldMap plugin! |
| | |
| | #6 (permalink) |
| Retired Team Member Join Date: Feb 2006 Location: Germany Age: 24
Posts: 482
Thanks: 3
Thanked 0 Times in 0 Posts
| just by the way: i'm using cyberlink codecs for ages now, and i never changed any of the settings in MP's configuration. i just change it in the powerDVD application itself (audio-video config) which has the same effect. |
| | |
| | #7 (permalink) |
| Portal Developer Join Date: Feb 2007 Location: Hamburg Age: 34
Posts: 515
Thanks: 26
Thanked 41 Times in 15 Posts
Country: | Hi smnnekho. But via application itself it seems not possible to choose separate settings for Mpg2 and H.264. And you change the settings globally for all your applications not just for MediaPortal. What the filter settings tab of MediaPortal does is to change the registry values under "HKEY_CURRENT_USER\Software\CyberLink\Common\ xxx \MediaPortal". Which seems to be more flexible. Bye Lars
__________________ Using a wide screen and tired of changing the aspect ratio via remote all the time? Use the ViewModeSwitcher Plugin and everything is working automatically. Are you able to find your home in MediaPortal? Yes you are! With the WorldMap plugin! |
| | |
| | #8 (permalink) | |
| Portal Member Join Date: Jan 2007 Location: Hertfordshire Age: 37
Posts: 183
Thanks: 8
Thanked 11 Times in 8 Posts
Country: | Hi Quote:
http://www.cyberlink.com/multi/downl...s_112_ENU.html Mew | |
| | |
| | #9 (permalink) |
| Portal Member Join Date: Jul 2007 Location: Munich Age: 37
Posts: 25
Thanks: 0
Thanked 2 Times in 2 Posts
Country: | Hi, I was trying to follow the advise in the first post, however I can not find the file SettingsForm.cs - could someone be so nice to let me know where it is? Thank you very much! Sebastian |
| | |
| | #10 (permalink) |
| Portal Member Join Date: Jan 2007 Location: Hertfordshire Age: 37
Posts: 183
Thanks: 8
Thanked 11 Times in 8 Posts
Country: | Hi Sebastian The SettingsForm.cs is in the MediaPortal source. If you download the source code as described in the Wiki and then open the MediaPortal.sln in Visual Studio 2005 the SettingsForm.cs can be found under the MediaPortal.Configuration branch in the Solution Explorer. If you rebuild the solution with the corrected code the filter page for PowerDVD 7 will be shown (if it is installed). Building on Lars suggestion above I would guess, although I don't know C#, that the line should probably read something like: if (filter.Equals("CyberLink Audio Decoder (PDVD7)")||filter.Equals("CyberLink Audio Decode (PDVD7.x)")) to cater for patched and non-patched PowerDVD 7 installations. Mew Last edited by Mew; 2007-08-13 at 19:19. |
| | |
![]() |
| Bookmarks |
| Tags |
| decoder, powerdvd, powerdvdupdate, settings, wrong |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Wrong HDV video WxH : 1934x1088 with PowerDVD Decoder | elCutty | 0.2.2.0 Final and SVN Builds | 6 | 2007-06-20 13:01 |
| Powerdvd 7 issues | WouterC | Installation, configuration support | 1 | 2006-05-24 10:26 |
| PowerDVD 6 | NorthernJohn | Codecs, External Players | 6 | 2006-02-14 06:01 |
| [Patch] Basic Powerdvd 6 audio codec settings form | CoolHammer | General Development (no feature request here!) | 1 | 2006-01-25 11:32 |
| getting mp to work with PowerDVD 6 | Anonymous | Installation, configuration support | 4 | 2006-01-04 17:12 |