summaryrefslogtreecommitdiff
path: root/src/lib/options.h
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-12-19 23:50:17 +0000
committerCarl Hetherington <cth@carlh.net>2012-12-19 23:50:17 +0000
commit2f56f38ce56b36f20d59593f56981e7ed330c484 (patch)
tree1889f6eff9545010815775671df54064bc796201 /src/lib/options.h
parent13337c62d8c0d052ba0377af9c00fe1d940be3cc (diff)
Re-work again so that there's just one encoder; various tweaks to still-image-with-audio.
Diffstat (limited to 'src/lib/options.h')
-rw-r--r--src/lib/options.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/options.h b/src/lib/options.h
index 10cdfa8cd..55b066a2d 100644
--- a/src/lib/options.h
+++ b/src/lib/options.h
@@ -93,9 +93,9 @@ public:
Size out_size; ///< size of output images
int padding; ///< number of pixels of padding (in terms of the output size) each side of the image
- /** Range of video frames to decode */
- boost::optional<std::pair<SourceFrame, SourceFrame> > video_range;
- /** Range of audio frames to decode */
+ /** Range of video frames to encode (in DCP frames) */
+ boost::optional<std::pair<int, int> > video_range;
+ /** Range of audio frames to decode (in the DCP's sampling rate) */
boost::optional<std::pair<int64_t, int64_t> > audio_range;
/** Skip frames such that we don't decode any frame where (index % decode_video_skip) != 0; e.g.