From: Carl Hetherington Date: Sun, 8 Feb 2015 20:07:50 +0000 (+0000) Subject: Speculative simplification of FFmpegStream::uses_index. X-Git-Tag: v2.0.48~208 X-Git-Url: https://main.carlh.net/gitweb/?a=commitdiff_plain;h=2fb904332e75a7bffb0665ef1adc5c9cf23313d8;p=dcpomatic.git Speculative simplification of FFmpegStream::uses_index. --- 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 *