Commit b7a5ace4 by olly Committed by Oliver Woodman

Make FfmpegLibrary H264/HEVC aware

Issue: #2159
PiperOrigin-RevId: 301351495
parent 235c6311
......@@ -118,6 +118,10 @@ public final class FfmpegLibrary {
return "pcm_mulaw";
case MimeTypes.AUDIO_ALAW:
return "pcm_alaw";
case MimeTypes.VIDEO_H264:
return "h264";
case MimeTypes.VIDEO_H265:
return "hevc";
default:
return null;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment