Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
R
rav1e
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Timothy B. Terriberry
rav1e
Commits
66575acc
Commit
66575acc
authored
6 years ago
by
Thomas Daede
Committed by
Thomas Daede
6 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Update to Jan 22.
parent
a1324258
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
README.md
+1
-1
1 addition, 1 deletion
README.md
aom_build/aom
+1
-1
1 addition, 1 deletion
aom_build/aom
build.sh
+1
-1
1 addition, 1 deletion
build.sh
src/lib.rs
+2
-1
2 additions, 1 deletion
src/lib.rs
with
5 additions
and
4 deletions
README.md
+
1
−
1
View file @
66575acc
...
...
@@ -44,7 +44,7 @@ cargo run --bin rav1e -- input.y4m -o output.ivf
```
mkdir aom_test
cd aom_test
../aom_build/aom
/configure --disable-av1-encoder --enable-debug --enable-experimental --disable-unit-tests --disable-ext_partition --disable-ext_partition_types --disable-intra_edge --disable-cfl --disable-kf-ctx --disable-simplify_tx_mode --disable-obu --disable-filter-intra --disable-ext_skip --disable-lv_map --disable-lv_map_multi
cmake
../aom_build/aom
-DCONFIG_AV1_ENCODER=0 -DCONFIG_UNIT_TESTS=0 -DENABLE_DOCS=0 -DCONFIG_EXT_PARTITION=0 -DCONFIG_EXT_PARTITION_TYPES=0 -DCONFIG_INTRA_EDGE=0 -DCONFIG_CFL=0 -DCONFIG_KF_CTX=0 -DCONFIG_SIMPLIFY_TX_MODE=0 -DCONFIG_OBU=0 -DCONFIG_FILTER_INTRA=0 -DCONFIG_EXT_SKIP=0 -DCONFIG_LV_MAP=0 -DCONFIG_INTRABC=0 -DCONFIG_MONO_VIDEO=0
make -j8
./aomdec ../output.ivf -o output.y4m
```
...
...
This diff is collapsed.
Click to expand it.
aom
@
d14e087d
Compare
34ff768f
...
d14e087d
Subproject commit
34ff768fe5c488bd613e77e962c14ecd640bb12b
Subproject commit
d14e087da7493b346076121c58e7f077825327b0
This diff is collapsed.
Click to expand it.
build.sh
+
1
−
1
View file @
66575acc
...
...
@@ -39,7 +39,7 @@ echo $ACTUAL_VERSION > $GITHASH
git submodule update
--init
# Get configure command from readme
CONFIGURE_CMD
=
$(
fgrep c
onfigur
e README.md
)
CONFIGURE_CMD
=
$(
fgrep c
mak
e README.md
)
# Create aom_test folder if none
mkdir
-p
$AOM_TEST
...
...
This diff is collapsed.
Click to expand it.
src/lib.rs
+
2
−
1
View file @
66575acc
...
...
@@ -263,7 +263,8 @@ fn write_uncompressed_header(packet: &mut Write, sequence: &Sequence, fi: &Frame
uch
.write
(
1
,
0
)
?
;
// don't use frame ids
uch
.write_bit
(
false
)
?
;
// no override frame size
//uch.write(8+7,0)?; // frame id
uch
.write
(
3
,
0
)
?
;
// colorspace
uch
.write
(
1
,
0
)
?
;
// 8 bit video
uch
.write
(
4
,
0
)
?
;
// colorspace
uch
.write
(
1
,
0
)
?
;
// color range
uch
.write_bit
(
false
)
?
;
// no superres
uch
.write_bit
(
false
)
?
;
// scaling active
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment