Login
Username:

Password:

Remember me



Lost Password?

Register now!

Sections

Who's Online
99 user(s) are online (55 user(s) are browsing Forums)

Members: 0
Guests: 99

more...

Headlines

 
  Register To Post  

« 1 ... 62 63 64 (65) 66 67 68 ... 72 »
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@kas1e

If app doesn't call SDL_Quit(), then our thread subsystem will not be cleaned up. Maybe I should try again constructor/destructor approach which might solve this implicitly.

@samo79

Not yet.

Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@Capehill
Btw, in SDL1, there was the SDL_VideoModeOK() function, which tested whether the specific video modes worked, and I didn't see it in SDL2, so perhaps it no longer exists?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@All
Did i understand right, that if i want to use SDL2's scaling, i should create Renderer in any case ? Right now that what i do:


-- SDL_Init_everything

-- SDL_CreateWindow with SDL_WINDOW_FULLSCREEN_DESKTOP (so it open 1920x1080 screen for me), but with the window of 640x480 size

-- screen = SDL_GetWindowSurface(_Window);

And then, use this screen just like it was used in SDL1 (as surfaces still supported in SDL2).

When i need to flip frames i just call SDL_UpdateWindowSurface(_Window);


Question is how i can scale by SDL2 my 640x480 window in this case, to the whole 1920x1080 ? Should i create renderers for ? Or i can do so by some function even with surfaces ?

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@kas1e

I didn't see function similar to SDL_VideoModeOK either.

Scaling seems to exist for surface (https://wiki.libsdl.org/SDL2/SDL_BlitScaled) but if you want to accelerate it, you should create a renderer and a texture, and copy surface to texture each frame.

SDL_WINDOW_FULLSCREEN_DESKTOP is not working properly (it was never supported so far) but I started to test it yesterday. Need some debugging.

Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@Capehill
For me need at least even slow method to see how it will be. The point is that i just make some hack&slash to change SDL1 in the EUAE to SDL2, and while i do have now all renders on screen, i want to make the usually 320x240 windowses scale to 1920x1080. For that i open window with FULLSCREEN desctop , and it already open 1920x1080 screen for me, but, just with the the same small window.

If you in interest to have a brief looks of changes with SDL2, there they are:

https://kas1e.mikendezign.com/aos4/uae/sdl2/sdlgfx_v1.c

There i just create dektop_kind window , so it opens in 1920x1080, but inside still open the same small uae window (520x732 or something), which i want to scale till full 1920x1080. Just to see how it will be looks like, and if it at all worth to add SDL2 support to EUAE. Of course by itself swith to SDL2 need it, but i mostly worry there about scaling to fullscreen (and later may add some better scaling algos, etc once it will works with SDL2 scaling)

Join us to improve dopus5!
AmigaOS4 on youtube
Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@Capehill

ScummVM full build with new SDL2 working fine

Thank you very much

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
2.26.1 RC2 is available: https://github.com/AmigaPorts/SDL-2.0/ ... /tag/v2.26.1-rc2-amigaos4

Changes:

- Fix joystick GUID generation and update internal gamecontroller database with new GUIDs. Remove related RC1 workaround. Please use the SDL 2.26.1 RC2 (or newer) library when providing new controller mappings.
- Support SDL_WINDOW_FULLSCREEN_DESKTOP flag. It's implemented as a custom screen (instead of WB).
- Refactor library init/quit routines: initialize thread subsystem using constructor.
- Refactor shared library management: open common libraries in constructor and close them in destructor.
- Require ogles2.library minimum version 2 (instead of 0).

Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@Capehill

Did a full build of ScummVM without problems, thank you very much

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@Capehill

Do you maybe know if SDL2 and/or SDL2_mixer supports surround (5.1+) sound output?

And would it be possible to (make) use (of) it on AmigaOS4 SDL2 ports?

Thank you

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@Raziel

I think that the SDL2 core supports surround but our AHI backend doesn't yet. Maybe it could be added.

Go to top
Re: SDL2
Quite a regular
Quite a regular


See User information
@Capehill

switch(_this->spec.format) {
        case 
AUDIO_S8:
        case 
AUDIO_U8:
            
os4data->ahiType = (_this->spec.channels 2) ? AHIST_M8S AHIST_S8S;
            break;

        default:
            
os4data->ahiType = (_this->spec.channels 2) ? AHIST_M16S AHIST_S16S;
            break;


Maximum is stereo. Even if requested channels is > 2.

Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@geennaam

Is it correct that AHI supports surround (7.1) only in 32-bit mode? So if application is requesting 8 channels in 16 bits that should fallback to stereo? Or if application is asking 3-7 channels, that should fallback to stereo?

Go to top
Re: SDL2
Quite a regular
Quite a regular


See User information
@Capehill

First of all, I'm am not an AHI expert. Sniffing through the AHI device sourcecode is still on my todo list.

But this is how I understand AHI so far:

Yes, AHI expects 32bit samples in a 7.1 mode.

According to AHI.h:
#define AHIST_L7_1 (0x00c3000aUL) /* 7.1, 32 bit signed (8xLONG) */

It's the format of the application output buffer itself that determines how many independant ouput channels are presented to the driver.

After that, AHI does 1:1 mapping of channels in your databuffer.

If you present a stereo buffer to AHI when a 7.1 audiomode is selected for your application, AHI will do no channel upmixing for you. It simple present a stereo buffer to the driver and my driver will playback only on front left and right. The other channels will be muted.

If you present a 7.1 buffer when a 7.1 audio mode is selected then all 8 channels will be played. The order of the samples in the buffer will determine on which speaker the channel is played.
If your application has for example just 5.1 data then do the correct channel mapping in your 7.1 buffer and leave the other two channels empty.

HIFI modes will always present 32bit mixing buffers to the driver.
When you present a 16bit stereo buffer to any HIFI mode, AHI will upmix the format to 32bit and presents a 32bit stereo mixing buffer to the driver.

Unfortunately AHI doesn't know a 16bit 7.1 buffer format. So in case of multichannel 16bit sound, I would do int16->int32 conversion instead of clipping to stereo. It will not cost much processing power:
*output_channel = (int32)*input_channel*65536;

Hope this helps.


Edited by geennaam on 2023/2/18 14:58:14
Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@geennaam

Thanks for the ideas, conversion sounds doable. SDL supports also unsigned and float buffers, so they could be converted as well.

Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
It seems that SDL should do the format conversions automatically when needed so application can use almost any format.

@geennaam

I tried to test 32-bit audio a little bit, and it works nicely in stereo mode. But in 7.1 mode there is some kind of extra noise on FL/FR. I don't have surround speakers so cannot verify 7.1 mode properly.

Test programs here: http://capehill.kapsi.fi/sdl2/SDL2_32bit_sound_test.lha

Go to top
Re: SDL2
Quite a regular
Quite a regular


See User information
@Capehill

Good progress!

The noise that you are referring to sounds like a looping sample click. Basically, the end of the sample doesn't fit the the start of the sample.
I don't hear any other noise.

Surround works. Only the channel mapping is off.

testsurround32 output -> soundcard channel

"Front center" -> Rear left
"Low Frequency Effect" -> Rear Right
"Back Left" -> Side left
"Back right" -> Side Right
"Side Left" -> Center
"Side right" -> LFE

Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information

Go to top
Re: SDL2
Quite a regular
Quite a regular


See User information
@Capehill

Yes, channel mapping is correct. Good work!

I do wonder if the clicking noise is caused by a wong buffer lenght. Afterall the stereo test works fine with the same tone generator.

Go to top
Re: SDL2
Home away from home
Home away from home


See User information
@geennaam
@Capehill

Wow, unexpected and very nice addition to sdl

Awesome

People are dying.
Entire ecosystems are collapsing.
We are in the beginning of a mass extinction.
And all you can talk about is money and fairytales of eternal economic growth.
How dare you!
– Greta Thunberg
Go to top
Re: SDL2
Just can't stay away
Just can't stay away


See User information
@geennaam

Increasing sample buffer reduces clicking. AHI test sound doesn't give me clicks when I try to use 7.1 mode.

@Raziel

Yep, hopefully there will be some nice apps :)

Go to top

  Register To Post
« 1 ... 62 63 64 (65) 66 67 68 ... 72 »

 




Currently Active Users Viewing This Thread: 3 ( 0 members and 3 Anonymous Users )




Powered by XOOPS 2.0 © 2001-2023 The XOOPS Project