2012-06-01, 06:37
... cool thing. I'll stick with the nightlies.
:-)
:-)
(2012-05-31, 19:56)DDDamian Wrote: tjcinnamon - not a bug - if you want HD audio it requires exclusive mode. If you want sound from other apps use DirectSound.
(2012-06-08, 08:55)shanndogg Wrote: However, I just read that using this option does not allow "passthrough." My receiver still shows DTS-HD MSTR on it's display, so I assume XBMC is still bitstreaming the audio? Am I confusing "passthrough" with "bitstreaming?"Who said that? If your receiver display DTS-HD MSTR, it is the real deal. If everything work fine with "Sync playback to display" enabled and "Video Clock(resample audio)" selected, congratulation.......it's time to enjoy the movie......
(2012-06-08, 18:16)bluray Wrote: Who said that? If your receiver display DTS-HD MSTR, it is the real deal. If everything work fine with "Sync playback to display" enabled and "Video Clock(resample audio)" selected, congratulation.......it's time to enjoy the movie......
(2012-06-08, 18:25)DDDamian Wrote: Kinda the opposite - resample audio does nothing when bitstreaming - it's ignored. It only does anything when playing pcm. You cannot resample passthrough with the existing code - there's no code there to do it.
(2012-06-08, 19:48)shanndogg Wrote:I read it and I saw it a long time ago.....well, you said it work fine with it in your HTPC and your receiver display DTS-HD......and you had problem without it..........(2012-06-08, 18:16)bluray Wrote: Who said that? If your receiver display DTS-HD MSTR, it is the real deal. If everything work fine with "Sync playback to display" enabled and "Video Clock(resample audio)" selected, congratulation.......it's time to enjoy the movie......
It's posted in the XBMC Wiki found here. This is the exact sentence: "The disadvantage of resampling is that it doesn't work with passthrough, and there is a slight loss of audio quality."
else if (m_synctype == SYNC_RESAMPLE)
{
//reset the integral on big errors, failsafe
if (fabs(m_error) > DVD_TIME_BASE)
m_integral = 0;
else if (fabs(m_error) > DVD_MSEC_TO_TIME(5))
m_integral += m_error / DVD_TIME_BASE / INTEGRAL;
(2012-03-10, 22:50)DDDamian Wrote:Jaypeg Wrote:Anyone having any trouble playing mp3 audio on avi-files using this patch, the error seems to be consistent throughout my avi files with mp3 audio?
Furthermore, I don't get any audio on avi-files with ogg audio, but that is a general issue for Eden? I've seen some posts on the forum regarding this, but you guys might know something I guessed
Update: It seems I have the same problem on normal RC2 client. The problem disappears when I set audio output to analog
It looks like it's trying to open the mp3 as passthrough, which most receivers will not accept. Not sure why it would do that (mine doesn't) unless you have the tag enabled in guisettings.xml
Code:<audiooutput>
<ac3passthrough>true</ac3passthrough>
<audiodevice>wasapi:AMD HDMI Output (AMD High Definition Audio Device)</audiodevice>
<channellayout>9</channellayout>
<dontnormalizelevels>false</dontnormalizelevels>
<dtspassthrough>true</dtspassthrough>
<mode>2</mode>
<passthroughaac>true</passthroughaac>
<passthroughmp1>false</passthroughmp1>
<passthroughmp2>false</passthroughmp2>
[b]<passthroughmp3>false</passthroughmp3>[/b]
</audiooutput>
Have a look and make sure it's false.
For OGG I can't say - don't have any to test with.