HomeSort by relevance Sort by last modified time
    Searched defs:stats_file (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/third_party/webrtc/tools/frame_analyzer/
video_quality_analysis_unittest.cc 70 std::ofstream stats_file; local
71 stats_file.open(stats_filename.c_str());
72 stats_file.close();
78 std::ofstream stats_file; local
79 stats_file.open(stats_filename.c_str());
80 stats_file << "frame_0001 0100\n";
81 stats_file << "frame_0002 0101\n";
82 stats_file << "frame_0003 0101\n";
83 stats_file << "frame_0004 0106\n";
84 stats_file.close()
    [all...]
video_quality_analysis.cc 74 bool GetNextStatsLine(FILE* stats_file, char* line) {
79 size_t chars_read = fread(&buf, 1, 1, stats_file);
80 if (chars_read != 1 || feof(stats_file)) {
224 FILE* stats_file = fopen(stats_file_name, "r"); local
235 while (GetNextStatsLine(stats_file, line)) {
277 fclose(stats_file);
289 FILE* stats_file = fopen(stats_file_name.c_str(), "r"); local
290 if (stats_file == NULL) {
302 while (GetNextStatsLine(stats_file, line)) {
332 fclose(stats_file);
    [all...]
  /external/libvpx/libvpx/test/
svc_test.cc 406 FILE *const stats_file = libvpx_test::OpenTestDataFile(stats_file_name_); local
407 ASSERT_TRUE(stats_file != NULL) << "Stats file open failed. Filename: "
408 << stats_file;
411 fseek(stats_file, 0, SEEK_END);
412 stats_buf.sz = static_cast<size_t>(ftell(stats_file));
413 fseek(stats_file, 0, SEEK_SET);
417 const size_t bytes_read = fread(stats_buf.buf, 1, stats_buf.sz, stats_file);
419 fclose(stats_file);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
svc_test.cc 406 FILE *const stats_file = libvpx_test::OpenTestDataFile(stats_file_name_); local
407 ASSERT_TRUE(stats_file != NULL) << "Stats file open failed. Filename: "
408 << stats_file;
411 fseek(stats_file, 0, SEEK_END);
412 stats_buf.sz = static_cast<size_t>(ftell(stats_file));
413 fseek(stats_file, 0, SEEK_SET);
417 const size_t bytes_read = fread(stats_buf.buf, 1, stats_buf.sz, stats_file);
419 fclose(stats_file);

Completed in 8432 milliseconds