Skip to content
This repository was archived by the owner on Oct 25, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions modules/video_coding/codecs/h264/h264.cc
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,11 @@ std::vector<SdpVideoFormat> SupportedH264Codecs(bool add_scalability_modes) {

std::vector<SdpVideoFormat> SupportedH264DecoderCodecs() {
TRACE_EVENT0("webrtc", __func__);

#ifndef OWT_USE_FFMPEG
return std::vector<SdpVideoFormat>();
#endif

if (!IsH264CodecSupported())
return std::vector<SdpVideoFormat>();

Expand Down