diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-06-07 16:34:48 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-06-07 16:34:48 +0100 |
| commit | 0799f9481791f8a70589bf9e6991883f48e27b3d (patch) | |
| tree | 83e7b079b0dafacdb73aedd23a3a1cdccf35bdd3 /src/lib/video_content.cc | |
| parent | 75de8898265611a4fc7068c40668ca697e6c1864 (diff) | |
Improve VideoContent ratio handling slightly.
Diffstat (limited to 'src/lib/video_content.cc')
| -rw-r--r-- | src/lib/video_content.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/video_content.cc b/src/lib/video_content.cc index 84dee81d1..99471edc1 100644 --- a/src/lib/video_content.cc +++ b/src/lib/video_content.cc @@ -40,7 +40,7 @@ VideoContent::VideoContent (shared_ptr<const Film> f, Time s, ContentVideoFrame : Content (f, s) , _video_length (len) , _video_frame_rate (0) - , _ratio (0) + , _ratio (Ratio::from_id ("185")) { } @@ -49,7 +49,7 @@ VideoContent::VideoContent (shared_ptr<const Film> f, boost::filesystem::path p) : Content (f, p) , _video_length (0) , _video_frame_rate (0) - , _ratio (0) + , _ratio (Ratio::from_id ("185")) { } |
