HomeIndustry & Policyリアルタイム通信へのAV1大規模導入:Metaの取り組み

リアルタイム通信へのAV1大規模導入:Metaの取り組みAdopting AV1 for Real-Time Communication (RTC) at Scale

AI2 点サマリSummary highlight
  • MetaがAV1コーデックをリアルタイム通信(RTC)へ大規模導入した複数年の取り組みを公開。
  • コーデック選定、デバイス適格性、レート制御、エラー耐性などの技術的・運用的知見を共有し、低帯域でも高品質な映像通話を目指す。

Meta details its multi-year effort to bring the AV1 codec to real-time communication at scale, covering codec selection, device eligibility, rate control, and error resilience for higher-quality video calls.

要約と収集メタデータをもとに生成した AI 解説本文です。元記事全文の転載・翻訳ではありません。This AI explainer is generated from the summaries and collected metadata, not from a reproduction or translation of the full source article.

Metaが、新世代の映像コーデック「AV1」をビデオ通話などのリアルタイム通信(RTC)へ大規模導入するまでの、複数年にわたる取り組みを技術ブログで公開した。配信型ストリーミングで普及が進むAV1を、遅延に厳しいRTC領域へ本格展開した事例として注目される。

AV1は、GoogleやNetflix、Amazon、Microsoft、Metaなどが参画する業界団体Alliance for Open Media(AOMedia)が策定したロイヤリティフリーのコーデックだ。H.264や、Googleが主導したVP9と比べて、同等の画質をより低いビットレートで届けられるとされ、帯域が限られる環境での品質向上が期待されている。一方で高い圧縮効率は計算量の増大と表裏一体であり、ソフトウェアによる符号化・復号は端末への負荷が大きい点が課題とされてきた。

特にRTCでは、録画済み映像を時間をかけて圧縮できるVODと異なり、撮影から表示までを数十ミリ秒で処理する必要がある。Metaは、どの端末でAV1を有効化するかを見極める「デバイス適格性」の判定を重視したという。ハードウェアによるAV1対応は比較的新しい世代のチップに限られるため、CPU性能や発熱、消費電力を考慮し、ソフトウェア処理でも実用に耐える端末を選別する仕組みを整えたと見られる。

コーデック選定、デバイス適格性、レート制御、エラー耐性などの技術的・運用的知見を共有し、低帯域でも高品質な映像通話を目指す。
📰 Industry & Policy · 本記事のポイント

加えて、刻々と変動するネットワーク帯域へ追随するレート制御や、パケット損失が起きても映像の破綻を最小限に抑えるエラー耐性の作り込みが鍵になったとしている。再送に頼りにくいリアルタイム通信では、フレーム間の参照構造を工夫し、欠落から素早く復帰できる設計が求められる。

AV1の活用はWebRTCの仕様面でも進みつつあり、高速なデコーダ「dav1d」や符号化器「SVT-AV1」といったオープンソース実装の成熟も後押ししている。ロイヤリティ負担を避けつつ品質と効率を高めたいという狙いは各社で共通しており、Metaによる今回の知見公開は、同様の課題に向き合う開発者にとって実践的な参考になりそうだ。

Meta has detailed a multi-year program to bring the AV1 video codec into its real-time communication (RTC) stack, the technology that powers video calls across products such as Messenger, Instagram, and WhatsApp. The move matters because real-time video has stricter constraints than streaming on demand, and a more efficient codec can translate directly into better call quality on constrained networks, lower bandwidth costs, and improved reach in regions where connectivity is limited.

AV1 is an open, royalty-free codec developed by the Alliance for Open Media, an industry group whose members include Meta, Google, Amazon, Netflix, Microsoft, and others. It is positioned as a successor to VP9 and a competitor to HEVC, and it is widely cited as offering meaningful compression gains over older standards such as H.264 and VP8 at the same visual quality. Those gains are attractive for RTC, but they come at the cost of higher computational complexity, which is the central tension Meta describes navigating throughout the effort.

According to the company, the work began with codec selection, weighing AV1 against the codecs already deployed in its calling infrastructure. Streaming services have adopted AV1 primarily for video on demand, where encoding can be performed offline and decoders have time to buffer. Real-time communication is different: the encoder and decoder both run live, latency budgets are measured in milliseconds, and there is no opportunity to re-encode. This means the theoretical compression advantage of AV1 must be balanced against whether a device can sustain real-time encoding and decoding without overheating, draining battery, or dropping frames.

Device eligibility is therefore a recurring theme. Meta explains that not every phone or computer can run AV1 in real time, particularly on the encode path, which is more demanding than decode. The company appears to rely on a tiering or gating approach, enabling AV1 only where a device has sufficient hardware or software capability and falling back to other codecs otherwise. Hardware AV1 decode support has been expanding in newer mobile chipsets and GPUs, while software decoders such as dav1d are used to broaden compatibility where hardware support is absent. On the encoding side, real-time-oriented implementations are needed, since reference encoders like libaom were designed with quality and offline use in mind rather than the speed RTC requires.

Rate control is another pillar of the work. In real-time calls, the available bandwidth fluctuates constantly as users move between networks, and the encoder must adjust its bitrate moment to moment to avoid congestion and latency spikes. Meta notes that it had to adapt rate control specifically for AV1's characteristics so that the codec responds quickly to bandwidth estimates from the transport layer. This is closely tied to techniques common in modern RTC systems, including scalable video coding and simulcast, which let a sender produce multiple quality layers so that participants on different connections each receive an appropriate stream.

Error resilience rounds out the technical agenda. Real-time media is typically carried over unreliable transport, so packet loss is expected rather than exceptional. Unlike a streaming player that can pause and rebuffer, an RTC system must keep the picture moving through lost or late packets. Meta describes investing in resilience so that AV1 streams degrade gracefully under loss, using mechanisms to limit error propagation and recover quickly rather than freezing the video.

The broader context is an industry-wide shift toward AV1 in interactive media. The codec has been integrated into the WebRTC ecosystem, browsers have added support, and several large platforms have signaled interest in using it for conferencing as hardware acceleration becomes more common. Meta's account is notable mainly for the scale and the operational detail, covering not just compression results but the practical questions of how to deploy a demanding codec across a heterogeneous fleet of consumer devices.

Meta frames the project as ongoing rather than finished, and the published findings are likely intended both to document its engineering choices and to inform others working on similar systems. As more devices ship with native AV1 acceleration, the trade-offs the company outlines around eligibility and complexity should ease, potentially making efficient, royalty-free real-time video more widely available across the industry.

  • 出典SourceMeta Engineering公式Official
  • 直近30件の平均重要度Avg importance, last 301=Info · 2=Medium · 3=High
  • 配信形式FormatブログBlog
  • 重要度Importance重要度 InfoInformational(Industry & Policy 427件中、同等以上 427件)(427 of 427 Industry & Policy entries are equal or higher)
  • 情報の寿命Half-life🏛️ 長期 (アーキテクチャ)Long-term (architecture)
  • 原文言語Source languageEN
  • 収集日時Collected2026/07/15 20:20

本ページの本文と要約は AI による自動生成です。日本語版と英語版は言語ごとに独立して生成されるため、表現や詳しさが異なる場合があります。正確性は元記事 (engineering.fb.com) をご確認ください。The body and summaries are AI-generated independently for each language, so wording and detail may differ. Verify accuracy at the original source (engineering.fb.com).

📰Industry & Policy の他の記事More from Industry & Policyもっと見る →View more →