Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Clean up some gotos and non-optimal casts | Chris Robinson | 2023-12-26 | 5 | -19/+18 |
| | |||||
* | Use standard methods for rounding | Chris Robinson | 2023-12-25 | 1 | -2/+2 |
| | |||||
* | Avoid assignments in if conditions | Chris Robinson | 2023-12-23 | 1 | -1/+2 |
| | |||||
* | Fix implicit widening after multiplication | Chris Robinson | 2023-12-23 | 2 | -14/+14 |
| | |||||
* | Ensure struct members are initialized | Chris Robinson | 2023-12-20 | 2 | -2/+2 |
| | |||||
* | Fix some implicit conversions | Chris Robinson | 2023-12-17 | 1 | -1/+1 |
| | |||||
* | Fix clang-tidy warnings from the examples and utilities | Chris Robinson | 2023-12-13 | 3 | -21/+21 |
| | |||||
* | Much more clang-tidy cleanup | Chris Robinson | 2023-12-10 | 2 | -43/+41 |
| | |||||
* | Fix some clang-tidy warnings | Chris Robinson | 2023-12-08 | 1 | -33/+28 |
| | |||||
* | Add missing include for examples to have a UTF-8 main | Chris Robinson | 2023-12-06 | 8 | -0/+16 |
| | |||||
* | Remove a dead store | Chris Robinson | 2023-12-04 | 1 | -1/+0 |
| | |||||
* | Rename the convolution reverb effect to just convolution | Chris Robinson | 2023-10-12 | 1 | -16/+16 |
| | | | | | While the common use case, convolution can do more than just reverb, and it nicely shortens the name. | ||||
* | Fix waveforms generated by altonegen | Chris Robinson | 2023-08-28 | 1 | -32/+41 |
| | |||||
* | Fix some typos (#872) | Dirk Stolle | 2023-07-04 | 8 | -12/+12 |
| | |||||
* | Make the API functions noexcept | Chris Robinson | 2023-05-22 | 2 | -8/+8 |
| | | | | | | | | | | | Only relevant for C++, but these functions can't throw as it's a C-based API. Letting the compiler know that helps improve code generation. Extension callbacks must also not let exceptions leave the callback, or else Bad Things can happen. The macro AL_DISABLE_NOEXCEPT may be defined before including the headers to not mark functions as noexcept, but this should only be done if the caller can't otherwise be fixed. | ||||
* | Fix compiling examples with an older libsndfile | Chris Robinson | 2023-03-05 | 3 | -9/+18 |
| | | | | Which lack the SF_FORMAT_MPEG_LAYER_* enums. | ||||
* | Make sure the fmt chunk is large enough | Chris Robinson | 2023-03-05 | 3 | -4/+4 |
| | |||||
* | Remove a couple unused variables | Chris Robinson | 2023-03-04 | 1 | -2/+2 |
| | |||||
* | Support float and ADPCM formats in alstream | Chris Robinson | 2023-02-17 | 1 | -19/+210 |
| | |||||
* | Cleanup the examples' loading functions slightly | Chris Robinson | 2023-02-17 | 2 | -59/+59 |
| | |||||
* | Handle Int16 and ADPCM formats in alstreamcb | Chris Robinson | 2023-02-16 | 1 | -25/+181 |
| | |||||
* | Support loading as float or ADPCM in alplay | Chris Robinson | 2023-02-16 | 1 | -12/+164 |
| | |||||
* | Add more formats for displaying in examples | Chris Robinson | 2022-11-29 | 1 | -0/+35 |
| | |||||
* | Avoid overriding main with SDL | Chris Robinson | 2022-11-23 | 2 | -0/+10 |
| | |||||
* | Fix an ambisonic layout check in alffplay | Chris Robinson | 2022-09-24 | 1 | -1/+1 |
| | |||||
* | Update alffplay to support newer ffmpeg versions | Chris Robinson | 2022-08-20 | 1 | -115/+138 |
| | |||||
* | More agressively hide PipeWire and SDL header warnings | Chris Robinson | 2022-05-09 | 1 | -4/+4 |
| | |||||
* | Avoid an ugly and confusing generate_n | Chris Robinson | 2022-05-08 | 1 | -13/+7 |
| | |||||
* | Clean up readAudio some | Chris Robinson | 2022-05-08 | 1 | -76/+40 |
| | |||||
* | Drain audio frames when stopping playback in alffplay | Chris Robinson | 2022-05-07 | 1 | -7/+16 |
| | |||||
* | Define FUNCTION_CAST in a common header | Chris Robinson | 2022-04-22 | 7 | -46/+15 |
| | |||||
* | Finalize AL_SOFT_UHJ | Chris Robinson | 2022-04-13 | 1 | -36/+2 |
| | |||||
* | Finalize AL_SOFT_callback_buffer | Chris Robinson | 2022-04-01 | 2 | -33/+2 |
| | |||||
* | Remove the unused flags parameter from alBufferCallbackSOFT | Chris Robinson | 2022-04-01 | 2 | -7/+4 |
| | |||||
* | Remove a dead store | Chris Robinson | 2022-03-30 | 1 | -1/+0 |
| | |||||
* | Use a more C99-compliant function cast | Chris Robinson | 2022-02-26 | 4 | -4/+48 |
| | |||||
* | Constify the AVCodec* returned by avcodec_find_decoder | Chris Robinson | 2022-02-19 | 1 | -1/+1 |
| | |||||
* | Make sure alffplay properly stops when quiting | Chris Robinson | 2021-12-27 | 1 | -10/+13 |
| | | | | | | The parser thread could be waiting on the threads to join after queueing all packets, so it wouldn't see mQuit to flush the queue. So make a stop method that forces a flush when setting mQuit. | ||||
* | Heavily update alffplay packet handling | Chris Robinson | 2021-12-26 | 1 | -157/+209 |
| | | | | | Avoid deprecated use of raw AVPacket objects, and use a separate thread to send packets than receives the decoded frames. | ||||
* | Remove unnecessary ifdefs from alffplay | Chris Robinson | 2021-12-24 | 1 | -32/+9 |
| | | | | We already assume OpenAL Soft's alext.h, which these are part of now. | ||||
* | Use the audio clock as the default in alffplay | Chris Robinson | 2021-12-24 | 1 | -49/+59 |
| | |||||
* | Add an option to use Super Stereo in alffplay | Chris Robinson | 2021-12-15 | 1 | -0/+23 |
| | |||||
* | Update some in-progress extension types | Chris Robinson | 2021-11-10 | 1 | -2/+2 |
| | |||||
* | Fix short initial packet preparation in alffplay | Chris Robinson | 2021-05-20 | 1 | -3/+11 |
| | |||||
* | Add an option to decode stereo as UHJ in alffplay | Chris Robinson | 2021-04-02 | 1 | -76/+137 |
| | |||||
* | Use float formats in examples/alstreamcb | Chris Robinson | 2021-03-21 | 1 | -10/+10 |
| | | | | | | | libsndfile apparently has issues reading floating-point wave files as 16-bit samples (produces silence). Even on other file formats, reading float samples as integer samples has no over/underflow protection, so this is better for those formats too. | ||||
* | Fix some tabs and missing cast | Chris Robinson | 2020-12-04 | 1 | -11/+10 |
| | |||||
* | Add a gain argument to altonegen (#502) | Eliot Miranda | 2020-12-04 | 1 | -4/+24 |
| | | | | | | * Fix a speeling rorre in an error message. Add a gain command-line argument to altonegen.c * Fix some formatting issues and a copy/paste error. | ||||
* | Check for the right extension string in alffplay | Chris Robinson | 2020-10-26 | 1 | -1/+1 |
| | |||||
* | Finalize AL_SOFT_events | Chris Robinson | 2020-10-26 | 1 | -16/+0 |
| |