HomeSort by relevance Sort by last modified time
    Searched refs:time_base (Results 1 - 25 of 34) sorted by null

1 2

  /external/libcxx/test/localization/locale.categories/category.time/locale.time.get/
time_base.pass.cpp 12 // class time_base
23 std::time_base::dateorder d = std::time_base::no_order;
24 assert(std::time_base::no_order == 0);
25 assert(std::time_base::dmy == 1);
26 assert(std::time_base::mdy == 2);
27 assert(std::time_base::ymd == 3);
28 assert(std::time_base::ydm == 4);
Android.mk 27 test_name := localization/locale.categories/category.time/locale.time.get/time_base
28 test_src := time_base.pass.cpp
types.pass.cpp 12 // class time_base
21 // public time_base
35 static_assert((std::is_base_of<std::time_base, std::time_get<char> >::value), "");
36 static_assert((std::is_base_of<std::time_base, std::time_get<wchar_t> >::value), "");
  /external/chromium_org/third_party/libvpx/source/libvpx/
video_common.h 20 struct VpxRational time_base; member in struct:__anon17659
video_reader.c 53 reader->info.time_base.numerator = mem_get_le32(header + 16);
54 reader->info.time_base.denominator = mem_get_le32(header + 20);
video_writer.c 28 cfg.g_timebase.num = info->time_base.numerator;
29 cfg.g_timebase.den = info->time_base.denominator;
  /external/libvpx/libvpx/
video_common.h 20 struct VpxRational time_base; member in struct:__anon4382
video_reader.c 53 reader->info.time_base.numerator = mem_get_le32(header + 16);
54 reader->info.time_base.denominator = mem_get_le32(header + 20);
video_writer.c 28 cfg.g_timebase.num = info->time_base.numerator;
29 cfg.g_timebase.den = info->time_base.denominator;
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.get.byname/
date_order.pass.cpp 36 assert(f.date_order() == std::time_base::mdy);
40 assert(f.date_order() == std::time_base::dmy);
44 assert(f.date_order() == std::time_base::dmy);
48 assert(f.date_order() == std::time_base::ymd);
date_order_wide.pass.cpp 36 assert(f.date_order() == std::time_base::mdy);
40 assert(f.date_order() == std::time_base::dmy);
44 assert(f.date_order() == std::time_base::dmy);
48 assert(f.date_order() == std::time_base::ymd);
  /external/libcxx/test/localization/locale.categories/category.time/locale.time.get/locale.time.get.members/
date_order.pass.cpp 33 assert(f.date_order() == std::time_base::mdy);
  /external/chromium_org/media/ffmpeg/
ffmpeg_common_unittest.cc 44 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]);
ffmpeg_common.h 73 // Converts an int64 timestamp in |time_base| units to a base::TimeDelta.
74 // For example if |timestamp| equals 11025 and |time_base| equals {1, 44100}
77 MEDIA_EXPORT base::TimeDelta ConvertFromTimeBase(const AVRational& time_base,
80 // Converts a base::TimeDelta into an int64 timestamp in |time_base| units.
81 // For example if |timestamp| is 0.5 seconds and |time_base| is {1, 44100}, then
84 MEDIA_EXPORT int64 ConvertToTimeBase(const AVRational& time_base,
ffmpeg_unittest.cc 131 av_stream->time_base, av_stream->duration).InMicroseconds();
194 ConvertFromTimeBase(av_audio_stream()->time_base, packet->pts)
199 ConvertFromTimeBase(av_video_stream()->time_base, packet->pts)
261 ConvertFromTimeBase(av_audio_stream()->time_base, packet.pts)
310 ConvertFromTimeBase(av_video_stream()->time_base,
ffmpeg_common.cc 52 base::TimeDelta ConvertFromTimeBase(const AVRational& time_base,
54 int64 microseconds = av_rescale_q(timestamp, time_base, kMicrosBase);
58 int64 ConvertToTimeBase(const AVRational& time_base,
60 return av_rescale_q(timestamp.InMicroseconds(), kMicrosBase, time_base);
  /external/chromium_org/third_party/libvpx/source/libvpx/examples/
simple_encoder.c 192 info.time_base.numerator = 1;
193 info.time_base.denominator = fps;
219 cfg.g_timebase.num = info.time_base.numerator;
220 cfg.g_timebase.den = info.time_base.denominator;
vp8cx_set_ref.c 130 info.time_base.numerator = 1;
131 info.time_base.denominator = fps;
153 cfg.g_timebase.num = info.time_base.numerator;
154 cfg.g_timebase.den = info.time_base.denominator;
vp9_lossless_encoder.c 86 info.time_base.numerator = 1;
87 info.time_base.denominator = fps;
109 cfg.g_timebase.num = info.time_base.numerator;
110 cfg.g_timebase.den = info.time_base.denominator;
set_maps.c 187 info.time_base.numerator = 1;
188 info.time_base.denominator = fps;
210 cfg.g_timebase.num = info.time_base.numerator;
211 cfg.g_timebase.den = info.time_base.denominator;
  /external/libvpx/libvpx/examples/
simple_encoder.c 191 info.time_base.numerator = 1;
192 info.time_base.denominator = fps;
218 cfg.g_timebase.num = info.time_base.numerator;
219 cfg.g_timebase.den = info.time_base.denominator;
vp8cx_set_ref.c 126 info.time_base.numerator = 1;
127 info.time_base.denominator = fps;
149 cfg.g_timebase.num = info.time_base.numerator;
150 cfg.g_timebase.den = info.time_base.denominator;
set_maps.c 179 info.time_base.numerator = 1;
180 info.time_base.denominator = fps;
202 cfg.g_timebase.num = info.time_base.numerator;
203 cfg.g_timebase.den = info.time_base.denominator;
twopass_encoder.c 150 info.time_base.numerator = 1;
151 info.time_base.denominator = fps;
179 cfg.g_timebase.num = info.time_base.numerator;
180 cfg.g_timebase.den = info.time_base.denominator;
  /external/chromium_org/media/filters/
ffmpeg_demuxer.cc 69 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_buffer->pkt.pts)
    [all...]

Completed in 3271 milliseconds

1 2