Skip to content

Commit

Permalink
Make FfmpegLibrary H264/HEVC aware
Browse files Browse the repository at this point in the history
Issue: #2159
PiperOrigin-RevId: 301351495
  • Loading branch information
ojw28 committed Mar 19, 2020
1 parent 235c631 commit b7a5ace
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,10 @@ public static boolean supportsFormat(String mimeType) {
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;
}
Expand Down

0 comments on commit b7a5ace

Please sign in to comment.