4 releases

0.0.4 Aug 1, 2023
0.0.3 Jul 26, 2023
0.0.2 May 1, 2023
0.0.1 Apr 28, 2023

#130 in Unix APIs

Download history 407/week @ 2024-01-05 584/week @ 2024-01-12 367/week @ 2024-01-19 527/week @ 2024-01-26 417/week @ 2024-02-02 383/week @ 2024-02-09 541/week @ 2024-02-16 588/week @ 2024-02-23 539/week @ 2024-03-01 579/week @ 2024-03-08 546/week @ 2024-03-15 546/week @ 2024-03-22 497/week @ 2024-03-29 692/week @ 2024-04-05 557/week @ 2024-04-12 345/week @ 2024-04-19

2,155 downloads per month

BSD-3-Clause

2MB
18K SLoC

Cros-codecs

A lightweight, simple, low-dependency, and hopefully safe crate for hardware-accelerated video decoding and encoding on Linux.

It is developed for use in ChromeOS (particularly crosvm), but has no dependency to ChromeOS and should be usable anywhere.

This crate is still under heavy development and is not recommended for use yet.

Current features

  • Simple decoder API,
  • VAAPI decoder support (using cros-libva) for H.264, VP8 and VP9.

Planned features:

  • Stateful V4L2 decoder support.
  • Stateless V4L2 decoder support.
  • Vaapi encoder support.
  • V4L2 encoder support.
  • Support for H.265 and AV1.
  • C API to be used in non-Rust projects.

Non-goals

  • Support for systems other than Linux.

Example programs

The ccdec example program can decode an encoded stream and write the decoded frames to a file. As such it can be used for testing purposes.

$ cargo build --examples
$ ./target/debug/examples/ccdec --help
Usage: ccdec <input> [--output <output>] --input-format <input-format> [--output-format <output-format>] [--synchronous] [--compute-md5 <compute-md5>]

Simple player using cros-codecs

Positional Arguments:
  input             input file

Options:
  --output          output file to write the decoded frames to
  --input-format    input format to decode from.
  --output-format   pixel format to decode into. Default: i420
  --synchronous     whether to decode frames synchronously
  --compute-md5     whether to display the MD5 of the decoded stream, and at
                    which granularity (stream or frame)
  --help            display usage information

Testing

Fluster can be used for testing, using the ccdec example program described above. This branch contains support for cros-codecs testing. Just make sure the ccdec binary is in your PATH, and run Fluster using one of the ccdec decoders, e.g.

$ python fluster.py run -d ccdec-H.264 -ts JVT-AVC_V1

Dependencies