diff options
| author | Carl Hetherington <cth@carlh.net> | 2024-01-04 23:56:04 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2024-01-04 23:56:04 +0100 |
| commit | 1b8deeaaaeb80b64bed4e61f05086a3326c104e1 (patch) | |
| tree | 800d589de9b660d150631cb1260e88e854b68081 | |
| parent | 9289657288a73a32063db6703792a60bf60e66a4 (diff) | |
Cleanup: longer variable name.
| -rw-r--r-- | src/lib/ffmpeg.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ffmpeg.cc b/src/lib/ffmpeg.cc index 4b8d7b8ab..a500e8df3 100644 --- a/src/lib/ffmpeg.cc +++ b/src/lib/ffmpeg.cc @@ -126,14 +126,14 @@ FFmpeg::setup_general () optional<int> video_stream_undefined_frame_rate; for (uint32_t i = 0; i < _format_context->nb_streams; ++i) { - auto s = _format_context->streams[i]; - if (s->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && avcodec_find_decoder(s->codecpar->codec_id)) { - auto const frame_rate = av_q2d(s->avg_frame_rate); + auto stream = _format_context->streams[i]; + if (stream->codecpar->codec_type == AVMEDIA_TYPE_VIDEO && avcodec_find_decoder(stream->codecpar->codec_id)) { + auto const frame_rate = av_q2d(stream->avg_frame_rate); if (frame_rate < 1 || frame_rate > 1000) { /* Ignore video streams with crazy frame rates. These are usually things like album art on MP3s. */ continue; } - if (s->avg_frame_rate.num > 0 && s->avg_frame_rate.den > 0) { + if (stream->avg_frame_rate.num > 0 && stream->avg_frame_rate.den > 0) { /* This is definitely our video stream */ _video_stream = i; } else { |
