summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-04-05 14:04:15 +0200
committerGitHub <noreply@github.com>2021-04-05 14:04:15 +0200
commit390eeb6335be4408e2427232f2531ed2431f745c (patch)
tree890b670622cfbcf836b1b5472e68b6c99a402658
parent90327c5958c3eebbcf6a7d3e70187d8c929aed0e (diff)
parent9a8fed5b26a2fc0b07286e0715fa86cb1bd8c314 (diff)
Merge pull request #3770 from uklotzde/soundsourceffmpeg
SoundSourceProviderFFmpeg: Rename local variable
-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) {
///////////////////////////////////////////////////////////