From 2fb904332e75a7bffb0665ef1adc5c9cf23313d8 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Sun, 8 Feb 2015 20:07:50 +0000 Subject: [PATCH] Speculative simplification of FFmpegStream::uses_index. --- src/lib/ffmpeg_stream.cc | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/lib/ffmpeg_stream.cc b/src/lib/ffmpeg_stream.cc index ad99defee..f28a2f14e 100644 --- a/src/lib/ffmpeg_stream.cc +++ b/src/lib/ffmpeg_stream.cc @@ -1,5 +1,5 @@ /* - Copyright (C) 2013-2014 Carl Hetherington + Copyright (C) 2013-2015 Carl Hetherington This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -45,15 +45,7 @@ FFmpegStream::as_xml (xmlpp::Node* root) const bool FFmpegStream::uses_index (AVFormatContext const * fc, int index) const { - size_t i = 0; - while (i < fc->nb_streams) { - if (fc->streams[i]->id == _id) { - return int (i) == index; - } - ++i; - } - - return false; + return fc->streams[index]->id == _id; } AVStream * -- 2.30.2