From e4e4b67ad46f91aaa3e8ad1a312e3019d39ba4cc Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Sat, 13 Oct 2012 23:47:05 +0000 Subject: timecode: make subframes unsigned int git-svn-id: svn://localhost/ardour2/branches/3.0@13268 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/timecode/src/time.cc | 4 ++-- libs/timecode/timecode/time.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'libs/timecode') diff --git a/libs/timecode/src/time.cc b/libs/timecode/src/time.cc index 7e8b94c121..b993c3eba0 100644 --- a/libs/timecode/src/time.cc +++ b/libs/timecode/src/time.cc @@ -609,7 +609,7 @@ timecode_to_sample( bool use_offset, bool use_subframes, /* Note - framerate info is taken from Timecode::Time& */ double sample_frame_rate /**< may include pull up/down */, - int32_t subframes_per_frame, + uint32_t subframes_per_frame, /* optional offset - can be improved: function pointer to lazily query this*/ bool offset_is_negative, int64_t offset_samples ) @@ -711,7 +711,7 @@ sample_to_timecode ( double timecode_frames_per_second, bool timecode_drop_frames, double sample_frame_rate/**< can include pull up/down */, - int32_t subframes_per_frame, + uint32_t subframes_per_frame, /* optional offset - can be improved: function pointer to lazily query this*/ bool offset_is_negative, int64_t offset_samples ) diff --git a/libs/timecode/timecode/time.h b/libs/timecode/timecode/time.h index d9b3f01444..b1d34eebb8 100644 --- a/libs/timecode/timecode/time.h +++ b/libs/timecode/timecode/time.h @@ -116,7 +116,7 @@ timecode_to_sample( bool use_offset, bool use_subframes, /* Note - framerate info is taken from Timecode::Time& */ double sample_frame_rate /**< may include pull up/down */, - int32_t subframes_per_frame /**< must not be 0 if use_subframes==true */, + uint32_t subframes_per_frame /**< must not be 0 if use_subframes==true */, /* optional offset - can be improved: function pointer to lazily query this*/ bool offset_is_negative, int64_t offset_samples ); @@ -128,7 +128,7 @@ void sample_to_timecode ( double timecode_frames_per_second, bool timecode_drop_frames, double sample_frame_rate/**< can include pull up/down */, - int32_t subframes_per_frame, + uint32_t subframes_per_frame, /* optional offset - can be improved: function pointer to lazily query this*/ bool offset_is_negative, int64_t offset_samples ); -- cgit v1.2.3