aboutsummaryrefslogtreecommitdiffstats
path: root/examples/alffplay.cpp
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2018-01-01 18:54:15 -0800
committerChris Robinson <[email protected]>2018-01-01 18:54:15 -0800
commit91e20dc12ef9398fea6c26d9c9987341978e4209 (patch)
tree383aac8fec51ad588b965b9cc6da047c8f9d906a /examples/alffplay.cpp
parentaecfa0b4269f927f778a4cece741b4937a4b4f6b (diff)
Fix a couple alffplay comments still referencing Alure
Diffstat (limited to 'examples/alffplay.cpp')
-rw-r--r--examples/alffplay.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/alffplay.cpp b/examples/alffplay.cpp
index 9f6a1aec..12b924ae 100644
--- a/examples/alffplay.cpp
+++ b/examples/alffplay.cpp
@@ -173,9 +173,9 @@ struct AudioState {
AVFramePtr mDecodedFrame;
SwrContextPtr mSwresCtx;
- /* Conversion format, for what gets fed to Alure */
- int mDstChanLayout{0};
- enum AVSampleFormat mDstSampleFmt{AV_SAMPLE_FMT_NONE};
+ /* Conversion format, for what gets fed to OpenAL */
+ int mDstChanLayout{0};
+ AVSampleFormat mDstSampleFmt{AV_SAMPLE_FMT_NONE};
/* Storage of converted samples */
uint8_t *mSamples{nullptr};
@@ -564,7 +564,7 @@ int AudioState::handler()
std::unique_lock<std::recursive_mutex> lock(mSrcMutex);
ALenum fmt;
- /* Find a suitable format for Alure. */
+ /* Find a suitable format for OpenAL. */
mDstChanLayout = 0;
if(mCodecCtx->sample_fmt == AV_SAMPLE_FMT_U8 || mCodecCtx->sample_fmt == AV_SAMPLE_FMT_U8P)
{