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

/external/chromium_org/third_party/libvpx/source/libvpx/
H A Dvideo_common.h20 struct VpxRational time_base; member in struct:__anon13034
/external/libvpx/libvpx/
H A Dvideo_common.h20 struct VpxRational time_base; member in struct:__anon24830
/external/chromium_org/media/ffmpeg/
H A Dffmpeg_common_unittest.cc44 AVRational time_base; local
45 time_base.num = static_cast<int>(test_data[i][0]);
46 time_base.den = static_cast<int>(test_data[i][1]);
49 ConvertFromTimeBase(time_base, test_data[i][2]);
52 EXPECT_EQ(ConvertToTimeBase(time_base, time_delta), test_data[i][4]);
H A Dffmpeg_common.cc52 base::TimeDelta ConvertFromTimeBase(const AVRational& time_base, argument
54 int64 microseconds = av_rescale_q(timestamp, time_base, kMicrosBase);
58 int64 ConvertToTimeBase(const AVRational& time_base, argument
60 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.cc69 std::min(ConvertFromTimeBase(stream->time_base, stream->start_time),
75 ConvertFromTimeBase(stream->time_base, stream->pts_buffer[0]);
149 duration_ = ConvertStreamTimestamp(stream->time_base, stream->duration);
284 ConvertStreamTimestamp(stream_->time_base, packet->duration));
295 ConvertStreamTimestamp(stream_->time_base, packet->pts);
462 return ConvertStreamTimestamp(stream_->time_base, stream_->cur_dts);
527 const AVRational& time_base, int64 timestamp) {
531 return ConvertFromTimeBase(time_base, timestamp);
634 ConvertToTimeBase(seeking_stream->time_base, seek_time),
818 ConvertFromTimeBase(stream->time_base, packet_buffe
526 ConvertStreamTimestamp( const AVRational& time_base, int64 timestamp) argument
[all...]

Completed in 182 milliseconds