-
Notifications
You must be signed in to change notification settings - Fork 10
Implement building from sources #45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Draft
shssoichiro
wants to merge
2
commits into
master
Choose a base branch
from
build-sources
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| /* | ||
| * Copyright (c) 2016, Alliance for Open Media. All rights reserved | ||
| * | ||
| * This source code is subject to the terms of the BSD 2 Clause License and | ||
| * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License | ||
| * was not distributed with this source code in the LICENSE file, you can | ||
| * obtain it at www.aomedia.org/license/software. If the Alliance for Open | ||
| * Media Patent License 1.0 was not distributed with this source code in the | ||
| * PATENTS file, you can obtain it at www.aomedia.org/license/patent. | ||
| */ | ||
| #include <aom/aomdx.h> | ||
| #include <stdlib.h> | ||
|
|
||
| #ifdef __cplusplus | ||
| extern "C" { | ||
| #endif // __cplusplus | ||
|
|
||
| #define AOM_ACCOUNTING_HASH_SIZE (1021) | ||
|
|
||
| /* Max number of entries for symbol types in the dictionary (increase as | ||
| necessary). */ | ||
| #define MAX_SYMBOL_TYPES (256) | ||
|
|
||
| /*The resolution of fractional-precision bit usage measurements, i.e., | ||
| 3 => 1/8th bits.*/ | ||
| #define AOM_ACCT_BITRES (3) | ||
|
|
||
| typedef struct { | ||
| int16_t x; | ||
| int16_t y; | ||
| } AccountingSymbolContext; | ||
|
|
||
| typedef struct { | ||
| AccountingSymbolContext context; | ||
| uint32_t id; | ||
| /** Number of bits in units of 1/8 bit. */ | ||
| uint32_t bits; | ||
| uint32_t samples; | ||
| } AccountingSymbol; | ||
|
|
||
| /** Dictionary for translating strings into id. */ | ||
| typedef struct { | ||
| char *strs[MAX_SYMBOL_TYPES]; | ||
| int num_strs; | ||
| } AccountingDictionary; | ||
|
|
||
| typedef struct { | ||
| /** All recorded symbols decoded. */ | ||
| AccountingSymbol *syms; | ||
| /** Number of syntax actually recorded. */ | ||
| int num_syms; | ||
| /** Raw symbol decoding calls for non-binary values. */ | ||
| int num_multi_syms; | ||
| /** Raw binary symbol decoding calls. */ | ||
| int num_binary_syms; | ||
| /** Dictionary for translating strings into id. */ | ||
| AccountingDictionary dictionary; | ||
| } AccountingSymbols; | ||
|
|
||
| struct Accounting { | ||
| AccountingSymbols syms; | ||
| /** Size allocated for symbols (not all may be used). */ | ||
| int num_syms_allocated; | ||
| int16_t hash_dictionary[AOM_ACCOUNTING_HASH_SIZE]; | ||
| AccountingSymbolContext context; | ||
| uint32_t last_tell_frac; | ||
| }; | ||
|
|
||
| void aom_accounting_init(Accounting *accounting); | ||
| void aom_accounting_reset(Accounting *accounting); | ||
| void aom_accounting_clear(Accounting *accounting); | ||
| void aom_accounting_set_context(Accounting *accounting, int16_t x, int16_t y); | ||
| int aom_accounting_dictionary_lookup(Accounting *accounting, const char *str); | ||
| void aom_accounting_record(Accounting *accounting, const char *str, | ||
| uint32_t bits); | ||
| void aom_accounting_dump(Accounting *accounting); | ||
| #ifdef __cplusplus | ||
| } // extern "C" | ||
| #endif // __cplusplus |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
here you should call build.