Searched defs:time_base (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/media/ffmpeg/
H A Dffmpeg_common_unittest.cc53 stream_.time_base = kTimeBase;
71 AVRational time_base; local
72 time_base.num = static_cast<int>(test_data[i][0]);
73 time_base.den = static_cast<int>(test_data[i][1]);
75 TimeDelta time_delta = ConvertFromTimeBase(time_base, test_data[i][2]);
78 EXPECT_EQ(ConvertToTimeBase(time_base, time_delta), test_data[i][4]);
H A Dffmpeg_common.cc51 base::TimeDelta ConvertFromTimeBase(const AVRational& time_base, argument
53 int64 microseconds = av_rescale_q(timestamp, time_base, kMicrosBase);
57 int64 ConvertToTimeBase(const AVRational& time_base, argument
59 return av_rescale_q(timestamp.InMicroseconds(), kMicrosBase, time_base);
/external/stlport/stlport/stl/
H A D_time_facets.h57 * time_base class, which has a default constructor and two protected.
90 class _STLP_CLASS_DECLSPEC time_base { class
110 time_base::dateorder _M_dateorder;
124 time_base::dateorder _M_dateorder;
131 class time_get : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> {
200 typedef time_base::dateorder dateorder;
248 class time_put : public locale::facet, public time_base, public _STLP_PRIV time_init<_Ch> {
287 typedef time_base::dateorder dateorder;
/external/chromium_org/media/filters/
H A Dffmpeg_demuxer.cc75 duration_ = ConvertStreamTimestamp(stream->time_base, stream->duration);
188 stream_->time_base, packet->pts));
190 stream_->time_base, packet->duration));
281 return ConvertStreamTimestamp(stream_->time_base, stream_->cur_dts);
340 const AVRational& time_base, int64 timestamp) {
344 return ConvertFromTimeBase(time_base, timestamp);
623 stream->time_base, stream->first_dts);
710 "time_base",
712 video_codec->time_base.num,
713 video_codec->time_base
339 ConvertStreamTimestamp( const AVRational& time_base, int64 timestamp) argument
[all...]

Completed in 104 milliseconds