Skip to content
Snippets Groups Projects
Commit 66575acc authored by Thomas Daede's avatar Thomas Daede Committed by Thomas Daede
Browse files

Update to Jan 22.

parent a1324258
No related branches found
No related tags found
No related merge requests found
......@@ -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
```
......
Subproject commit 34ff768fe5c488bd613e77e962c14ecd640bb12b
Subproject commit d14e087da7493b346076121c58e7f077825327b0
......@@ -39,7 +39,7 @@ echo $ACTUAL_VERSION > $GITHASH
git submodule update --init
# Get configure command from readme
CONFIGURE_CMD=$(fgrep configure README.md)
CONFIGURE_CMD=$(fgrep cmake README.md)
# Create aom_test folder if none
mkdir -p $AOM_TEST
......
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment