summaryrefslogtreecommitdiff
path: root/src/lib/ffmpeg.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-13 10:36:33 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-13 10:36:33 +0100
commit37b1945ffd8c9b3084d08dbdc274c8841d9162eb (patch)
tree276b1426e7ee2f32f2cff6e815d4ce3e21903be8 /src/lib/ffmpeg.cc
parent12f80dfc3b6ad528903053d44b5810202f9f3227 (diff)
Remove out-of-date comment.
Diffstat (limited to 'src/lib/ffmpeg.cc')
-rw-r--r--src/lib/ffmpeg.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/lib/ffmpeg.cc b/src/lib/ffmpeg.cc
index 63fe9c9d8..4eee08992 100644
--- a/src/lib/ffmpeg.cc
+++ b/src/lib/ffmpeg.cc
@@ -138,9 +138,6 @@ FFmpeg::setup_general ()
for (uint32_t i = 0; i < _format_context->nb_streams; ++i) {
AVStream* s = _format_context->streams[i];
- /* Files from iTunes sometimes have two video streams, one with the avg_frame_rate.num and .den set
- to zero. Ignore these streams.
- */
if (s->codec->codec_type == AVMEDIA_TYPE_VIDEO) {
if (s->avg_frame_rate.num > 0 && s->avg_frame_rate.den > 0) {
/* This is definitely our video stream */