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

  /external/libaom/libaom/av1/decoder/
accounting.h 62 struct Accounting {
71 void aom_accounting_init(Accounting *accounting);
72 void aom_accounting_reset(Accounting *accounting);
73 void aom_accounting_clear(Accounting *accounting);
74 void aom_accounting_set_context(Accounting *accounting, int16_t x, int16_t y);
75 int aom_accounting_dictionary_lookup(Accounting *accounting, const char *str)
    [all...]
accounting.c 18 #include "av1/decoder/accounting.h"
32 int aom_accounting_dictionary_lookup(Accounting *accounting, const char *str) {
36 dictionary = &accounting->syms.dictionary;
38 while (accounting->hash_dictionary[hash] != -1) {
39 if (strcmp(dictionary->strs[accounting->hash_dictionary[hash]], str) == 0) {
40 return accounting->hash_dictionary[hash];
47 accounting->hash_dictionary[hash] = dictionary->num_strs;
55 void aom_accounting_init(Accounting *accounting) {
    [all...]
inspection.h 20 #include "av1/decoder/accounting.h"
64 Accounting *accounting; member in struct:insp_frame_data
decoder.h 26 #include "av1/decoder/accounting.h"
210 Accounting accounting; member in struct:AV1Decoder
  /external/libaom/libaom/aom/
aomdx.h 40 /** Data structure that stores bit accounting for debug
42 typedef struct Accounting Accounting;
171 /** control function to retrieve a pointer to the Accounting struct. When
172 * compiled without --enable-accounting, this returns AOM_CODEC_INCAPABLE.
175 * to dereference the Accounting pointer.
288 AOM_CTRL_USE_TYPE(AV1_GET_ACCOUNTING, Accounting **)
  /external/libaom/libaom/test/
accounting_test.cc 40 Accounting accounting; local
41 aom_accounting_init(&accounting);
42 br.accounting = &accounting;
47 GTEST_ASSERT_EQ(accounting.syms.num_syms, 1);
48 GTEST_ASSERT_EQ(accounting.syms.syms[0].samples, (unsigned int)kSymbols);
50 aom_accounting_reset(&accounting);
51 GTEST_ASSERT_EQ(accounting.syms.num_syms, 0);
53 // Should record 2 * kSymbols accounting symbols
    [all...]
  /external/libaom/libaom/aom_dsp/
daalaboolreader.h 19 #include "av1/decoder/accounting.h"
35 Accounting *accounting; member in struct:daala_reader
  /external/ppp/pppd/plugins/radius/etc/
dictionary 171 VALUE Acct-Status-Type Accounting-On 7
172 VALUE Acct-Status-Type Accounting-Off 8
  /external/libaom/libaom/examples/
analyzer.cc 19 #include "av1/decoder/accounting.h"
68 bool getAccountingStruct(Accounting **acct);
150 bool AV1Decoder::getAccountingStruct(Accounting **accounting) {
151 return aom_codec_control(&codec, AV1_GET_ACCOUNTING, accounting) ==
342 Accounting *acct;
418 fprintf(stderr, "Could not allocate memory for bit accounting\n");
690 { wxCMD_LINE_SWITCH, _("a"), _("bit-accounting"), _("Enable bit accounting"),
706 "Bit accounting support not found.
    [all...]
inspect.c 35 #include "av1/decoder/accounting.h"
82 ARG_DEF("a", "accounting", 0, "Dump Accounting");
575 const Accounting *accounting = frame_data.accounting; local
576 if (accounting == NULL) {
580 const int num_syms = accounting->syms.num_syms;
581 const int num_strs = accounting->syms.dictionary.num_strs;
585 accounting->syms.dictionary.strs[i])
    [all...]
  /external/libaom/libaom/av1/
av1_dx_iface.c     [all...]

Completed in 570 milliseconds