@@ -33,7 +33,7 @@ namespace OFX {
3333
3434 virtual ~ClipBase () { }
3535
36- // / ctor, when copy constructing an instance from a descripto
36+ // / ctor, when copy constructing an instance from a descriptor
3737 explicit ClipBase (const ClipBase &other);
3838
3939 // / name of the clip
@@ -106,8 +106,8 @@ namespace OFX {
106106 protected:
107107 ImageEffect::Instance* _effectInstance; // /< image effect instance
108108 bool _isOutput; // /< are we the output clip
109- std::string _pixelDepth; // /< what is the bit depth we is at. Set during the clip prefernces action.
110- std::string _components; // /< what components do we have. Set during the clip prefernces action.
109+ std::string _pixelDepth; // /< what is the bit depth we is at. Set during the clip preferences action.
110+ std::string _components; // /< what components do we have. Set during the clip preferences action.
111111
112112 public:
113113 ClipInstance (ImageEffect::Instance* effectInstance, ClipDescriptor& desc);
@@ -224,8 +224,8 @@ namespace OFX {
224224 // / Field Order - Which spatial field occurs temporally first in a frame.
225225 // / \returns
226226 // / - kOfxImageFieldNone - the clip material is unfielded
227- // / - kOfxImageFieldLower - the clip material is fielded, with image rows 0,2,4.... occuring first in a frame
228- // / - kOfxImageFieldUpper - the clip material is fielded, with image rows line 1,3,5.... occuring first in a frame
227+ // / - kOfxImageFieldLower - the clip material is fielded, with image rows 0,2,4.... occurring first in a frame
228+ // / - kOfxImageFieldUpper - the clip material is fielded, with image rows line 1,3,5.... occurring first in a frame
229229 virtual const std::string &getFieldOrder () const = 0;
230230
231231 // Connected -
@@ -245,8 +245,8 @@ namespace OFX {
245245
246246 // Continuous Samples -
247247 //
248- // 0 if the images can only be sampled at discreet times (eg: the clip is a sequence of frames),
249- // 1 if the images can only be sampled continuously (eg: the clip is infact an animating roto spline and can be rendered anywhen).
248+ // 0 if the images can only be sampled at discrete times (eg: the clip is a sequence of frames),
249+ // 1 if the images can only be sampled continuously (eg: the clip is in fact an animating roto spline and can be rendered anywhen).
250250 virtual bool getContinuousSamples () const = 0;
251251
252252 // / override this to fill in the image at the given time.
@@ -271,7 +271,7 @@ namespace OFX {
271271 virtual OfxRectD getRegionOfDefinition (OfxTime time) const = 0;
272272
273273 // / given the colour component, find the nearest set of supported colour components
274- // / override this for extra wierd custom component depths
274+ // / override this for extra weird custom component depths
275275 virtual const std::string &findSupportedComp (const std::string &s) const ;
276276 };
277277
@@ -291,7 +291,7 @@ namespace OFX {
291291 ImageBase ();
292292
293293 // / construct from a clip instance, but leave the
294- // / filling it to the calling code via the propery set
294+ // / filling it to the calling code via the property set
295295 explicit ImageBase (ClipInstance& instance);
296296
297297 // Render Scale (renderScaleX,renderScaleY) -
@@ -365,7 +365,7 @@ namespace OFX {
365365 Image ();
366366
367367 // / construct from a clip instance, but leave the
368- // / filling it to the calling code via the propery set
368+ // / filling it to the calling code via the property set
369369 explicit Image (ClipInstance& instance);
370370
371371 // Render Scale (renderScaleX,renderScaleY) -
@@ -430,7 +430,7 @@ namespace OFX {
430430 Texture ();
431431
432432 // / construct from a clip instance, but leave the
433- // / filling it to the calling code via the propery set
433+ // / filling it to the calling code via the property set
434434 explicit Texture (ClipInstance& instance);
435435
436436 // Render Scale (renderScaleX,renderScaleY) -
0 commit comments