103

GitHub - xiph/rav1e: The fastest and safest AV1 encoder.

 6 years ago
source link: https://github.com/xiph/rav1e
Go to the source link to view the article. You can view the picture content, updated content and better typesetting reading experience. If the link is broken, please click the button below to view the snapshot at that time.

README.md

The fastest and safest AV1 encoder.

Build Status

Overview

rav1e is an experimental AV1 video encoder. It is designed to eventually cover all use cases, though in its current form it is most suitable for cases where libaom (the reference encoder) is too slow.

Because AV1 is not yet frozen, it relies on an exact decoder version and configuration that is periodically updated.

Features

  • Intra frames
  • 64x64 superblocks
  • H, V, and DC prediction modes
  • 4x4 DCT and ADST transforms
  • ~5 fps encoding @ 480p (see issue #124)

Building

This repository uses a git submodule, to initialize it, do:

git submodule update --init

This is also required everytime you switch branch or pull code and the submodule changed.

Compressing video

Input videos must be 8-bit 4:2:0, in y4m format.

cargo run --bin rav1e -- input.y4m -o output.ivf

Decompressing video

mkdir aom_test
cd aom_test
../aom_build/aom/configure --disable-av1-encoder --enable-debug --enable-experimental --disable-unit-tests --disable-aom_qm --disable-ext-intra --disable-ext_partition --disable-ext_partition_types --disable-loopfilter_level --disable-intra_edge --disable-cfl --disable-kf-ctx --disable-striped_loop_restoration --disable-max_tile --disable-ext-intra-mod --disable-frame_size --disable-q_adapt_probs --disable-simplify_tx_mode --disable-obu --disable-filter-intra --disable-ext_skip
make -j8
./aomdec ../output.ivf -o output.y4m

Design

  • src/lib.rs - The top level library, contains code to write headers, manage buffers, and iterate throught each superblock.
  • src/ec.rs - Low-level implementation of the entropy coder, which directly writes the bitstream.
  • src/context.rs - High-level functions that write symbols to the bitstream, and maintain context.
  • src/partition.rs - Functions and enums to manage partitions (subdivisions of a superblock).
  • src/predict.rs - Intra prediction implementations.
  • src/quantize.rs - Quantization and dequantization functions for coefficients.
  • src/transform.rs - Implementations of DCT and ADST transforms.
  • src/bin/rav1e.rs - rav1e command line tool.
  • src/bin/rav1erepl.rs - Command line tool for debugging.
  • aom_build/ - Local submodule of libaom. Some C functions and constants are used directly. Also used for benchmarking and testing.

About Joyk


Aggregate valuable and interesting links.
Joyk means Joy of geeK