![]() |
|
AudioEngine branch - DO NOT REQUEST BINARY BUILDS - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Development (/forumdisplay.php?fid=93) +--- Thread: AudioEngine branch - DO NOT REQUEST BINARY BUILDS (/showthread.php?tid=78289) Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
- fincheresque - 2012-01-27 03:10 I'll see if I can test Windows passthrough later tonight. My laptop has a 6560 in it ... off to (theoretically) compile... back in a bit! Well, I can't say what's wrong, but I couldn't get anything to play. No audio whatsoever. I blame ATI. I'm sure this is my laptop being a problem rather than it being any issue with the code. Sigh. - Hack_kid - 2012-01-27 04:12 yeah i'll give it a go too, i have an ATI with something along the lines as the poster above. the same pc is also already setup for compiling so i should be back pretty quick Behavior question - cdhesse - 2012-01-27 04:33 So - my preamp supports multichannel PCM, but not TrueHD or DTS Master. It also supports normal DTS and dolby digital. With the latest AE build on ubuntu, what should I expect when playing a DTS Master track? Should it decode and send MPCM? Or strip out and play just regular DTS? My current experience is that xbmc just crashes, but I'm just wondering what is supposed to happen while I dig through code... BTW I have "Supports PCM, DTS, and DD" all checked, the rest are unchecked. Thanks! - gnif - 2012-01-27 04:45 @cdhesse - Currently we can not decode DTS-HD, only core, so in your case, core will be bit-streamed to the amp. TrueHD however we can decode all channels and they will be sent as LPCM if your amp doesn't support TrueHD @fincheresque - Please provide your xbmc log. It is EXTREMELY rare that I will work on XBMC under windows, so while I have this dev environment setup and can be assed putting up with MS Visual C++ and Windblows, please provide prompt and as much information as possible if you would like your issues fixed. - Hack_kid - 2012-01-27 05:20 gnif Wrote:It is EXTREMELY rare that I will work on XBMC under windows, so while I have this dev environment setup and can be assed putting up with MS Visual C++ and Windblows, please provide prompt and as much information as possible if you would like your issues fixed. Okay, just compiled and did a quick test with my windows laptop with ati 58xx series video card. the results were not what i expected as i use linux mainly and AE is a lot more stable on that platform. Analog sound was fine but hdmi passthrough did not seem to be working. If i turned exclusive mode on i would get no sound, not even the navigation clicks. if i turned it off i could get that and 2ch pcm but if i tryed a DD or DTS or DTS HD Master (no TrueHD to test) i got no audio, the AVR tryed to switch with the DTS HD master audio but failed and resulted in the video playing very slowly (5 - 10 fps at most) this is similar to the issue you expierience in linux with nvidia cards and no modprobe ffff fff2, and using the custom audio output (plughw) as opposed to the modprobe approach and selecting the actual alsa device. When i chose dts core or DD the AVR didnt seem to even try to switch and the video played extremely fast. Now keep in mind this is not on a already working windows/XBMC setup its just my laptop that happens to have windows and a hdmi port. so there could be a configuration issue. but i dont think so as i have watched DTS HD audio though the hdmi port before using vlc or wmp (cant remember which) and it played fine. Hope that was of some help, keep up to great work, Albinoman887 (hack_kid) - DDDamian - 2012-01-27 05:30 Hey gnif, there's some issues with frame size going to the WASAPI AddPackets method, and with the While loop in that method. Also the frame size will now have to be calculated so it's byte-aligned. Don't even worry about them for now, have many changes to the sink, but haven't committed them yet - still working at it. Hack_kid's issue with no output it Exclusive I've got fixed. Just be patient - I should have the changes to accomodate the new event-driven approach working shortly
- fincheresque - 2012-01-27 05:30 @gnif Sorry, I didn't post logs because I wasn't actually asking for help, I really did think it was my build/laptop. But maybe not. Here are some debug logs for you: TrueHD DTSMA Note, that XBMC becomes unresponsive once movies start, so I couldn't do a graceful shutdown. log - Hack_kid - 2012-01-27 05:37 gnif, heres a log. pastebin said i went over the maximum limit so i put it up on rapidshare. anyways i start with excluive mode on play a dts hd track a dd track none work switch it off menu sounds work play a 2ch flac file it works go to play dts hd it trys to switch but doesnt play dd it does nothing https://rapidshare.com/files/2823496255/xbmc.log - gnif - 2012-01-27 05:52 @DDDamian - Great! Can't wait to see the patch. @Hack_kid - In future please do what @fincheresque has done and produce a clean log, start XBMC, play a file, quit xbmc, and upload, nothing more. I am not going to look any further into this issue as it seems DDDamian has it fixed. - DDDamian - 2012-01-27 05:55 gnif Wrote:@DDDamian - Great! Can't wait to see the patch. I've added sh*tloads of debug info too gnif - just to double your coding stats ![]() I'm close - will PM when comfortable with it. |