frame: removed native timestamp member

Wasn't used anymore.
This commit is contained in:
itsmattkc
2020-08-18 02:08:22 +10:00
parent f4feb381b1
commit 35692b9fba
2 changed files with 0 additions and 15 deletions
-10
View File
@@ -115,16 +115,6 @@ void Frame::set_timestamp(const rational &timestamp)
timestamp_ = timestamp;
}
const int64_t &Frame::native_timestamp()
{
return native_timestamp_;
}
void Frame::set_native_timestamp(const int64_t &timestamp)
{
native_timestamp_ = timestamp;
}
char *Frame::data()
{
return data_.data();
-5
View File
@@ -65,9 +65,6 @@ public:
const rational& timestamp() const;
void set_timestamp(const rational& timestamp);
const int64_t& native_timestamp();
void set_native_timestamp(const int64_t& timestamp);
/**
* @brief Get the data buffer of this frame
*/
@@ -111,8 +108,6 @@ private:
rational timestamp_;
int64_t native_timestamp_;
int linesize_;
};