HomeSort by relevance Sort by last modified time
    Searched refs:stats_buf (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/libvpx/source/libvpx/test/
svc_test.cc 87 void GetStatsData(std::string *const stats_buf) {
95 stats_buf->append(static_cast<char*>(cx_pkt->data.twopass_stats.buf),
102 std::string *const stats_buf) {
120 GetStatsData(stats_buf);
128 GetStatsData(stats_buf);
160 void Pass2EncodeNFrames(std::string *const stats_buf,
172 ASSERT_TRUE(stats_buf != NULL);
173 ASSERT_GT(stats_buf->size(), 0U);
174 codec_enc_.rc_twopass_stats_in.buf = &(*stats_buf)[0];
175 codec_enc_.rc_twopass_stats_in.sz = stats_buf->size()
520 std::string stats_buf; local
534 std::string stats_buf; local
549 std::string stats_buf; local
565 std::string stats_buf; local
590 std::string stats_buf; local
607 std::string stats_buf; local
642 std::string stats_buf; local
660 std::string stats_buf; local
677 std::string stats_buf; local
697 std::string stats_buf; local
740 std::string stats_buf; local
758 std::string stats_buf; local
779 std::string stats_buf; local
803 std::string stats_buf; local
    [all...]
  /external/libvpx/libvpx/test/
svc_test.cc 410 struct vpx_fixed_buf stats_buf; local
412 stats_buf.sz = static_cast<size_t>(ftell(stats_file));
415 stats_buf.buf = malloc(stats_buf.sz);
416 ASSERT_TRUE(stats_buf.buf != NULL);
417 const size_t bytes_read = fread(stats_buf.buf, 1, stats_buf.sz, stats_file);
418 ASSERT_EQ(bytes_read, stats_buf.sz);
420 codec_enc_.rc_twopass_stats_in = stats_buf;
469 free(stats_buf.buf)
    [all...]

Completed in 114 milliseconds