From 92a176c899c89a33f16fd44a0479dc4b6e562314 Mon Sep 17 00:00:00 2001 From: emeric Date: Fri, 10 Oct 2014 12:53:30 +0200 Subject: [PATCH] Fixed typos --- av/Common.cpp | 2 +- database-updater/DatabaseUpdater.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/av/Common.cpp b/av/Common.cpp index d760668b..24778fa9 100644 --- a/av/Common.cpp +++ b/av/Common.cpp @@ -49,7 +49,7 @@ void AvInit() /* register all the codecs */ avcodec_register_all(); av_register_all(); - LMS_LOG(MOD_AV, SEV_INFO) << "AVCDOEC VERSION = " << avcodec_version(); + LMS_LOG(MOD_AV, SEV_INFO) << "avcodec version = " << avcodec_version(); } } // namespace Av diff --git a/database-updater/DatabaseUpdater.cpp b/database-updater/DatabaseUpdater.cpp index 60968654..aa50da09 100644 --- a/database-updater/DatabaseUpdater.cpp +++ b/database-updater/DatabaseUpdater.cpp @@ -281,7 +281,7 @@ Updater::processAudioFile( const boost::filesystem::path& file, Stats& stats) _metadataParser.parse(file, items); // We estimate this is a audio file if: - // - we found a least one audio + // - we found a least one audio stream // - the duration is not null if (items.find(MetaData::AudioStreams) == items.end() || boost::any_cast >(items[MetaData::AudioStreams]).empty())