summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorUwe Klotz <uklotz@mixxx.org>2021-04-05 11:25:10 +0200
committerUwe Klotz <uklotz@mixxx.org>2021-04-05 11:25:10 +0200
commit9a8fed5b26a2fc0b07286e0715fa86cb1bd8c314 (patch)
tree890b670622cfbcf836b1b5472e68b6c99a402658 /src
parent90327c5958c3eebbcf6a7d3e70187d8c929aed0e (diff)
SoundSourceProviderFFmpeg: Rename local variable
Diffstat (limited to 'src')
-rw-r--r--src/sources/soundsourceffmpeg.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sources/soundsourceffmpeg.cpp b/src/sources/soundsourceffmpeg.cpp
index ff83b5b2d7..5b5b66ed38 100644
--- a/src/sources/soundsourceffmpeg.cpp
+++ b/src/sources/soundsourceffmpeg.cpp
@@ -353,8 +353,8 @@ QStringList SoundSourceProviderFFmpeg::getSupportedFileExtensions() const {
while ((pavInputFormat = av_iformat_next(pavInputFormat))) {
#else
const AVInputFormat* pavInputFormat = nullptr;
- void* iInputFormat = nullptr;
- while ((pavInputFormat = av_demuxer_iterate(&iInputFormat))) {
+ void* pOpaqueInputFormatIterator = nullptr;
+ while ((pavInputFormat = av_demuxer_iterate(&pOpaqueInputFormatIterator))) {
#endif
if (pavInputFormat->flags | AVFMT_SEEK_TO_PTS) {
///////////////////////////////////////////////////////////