Add friendly name and description for h264_omx. Fixes https://github.com/owncast/owncast/issues/1521

This commit is contained in:
Gabe Kangas 2021-11-11 14:53:15 -08:00
parent 6b7cbfe458
commit 7a712a7ae3

View file

@ -15,6 +15,7 @@ import {
import { ServerStatusContext } from '../../utils/server-status-context'; import { ServerStatusContext } from '../../utils/server-status-context';
import FormStatusIndicator from './form-status-indicator'; import FormStatusIndicator from './form-status-indicator';
// eslint-disable-next-line react/function-component-definition
export default function CodecSelector() { export default function CodecSelector() {
const serverStatusData = useContext(ServerStatusContext); const serverStatusData = useContext(ServerStatusContext);
const { serverConfig, setFieldInConfigState } = serverStatusData || {}; const { serverConfig, setFieldInConfigState } = serverStatusData || {};
@ -87,6 +88,8 @@ export default function CodecSelector() {
title = 'Intel QuickSync'; title = 'Intel QuickSync';
} else if (title === 'h264_v4l2m2m') { } else if (title === 'h264_v4l2m2m') {
title = 'Video4Linux hardware encoding'; title = 'Video4Linux hardware encoding';
} else if (title === 'h264_omx') {
title = 'OpenMax (omx) for Raspberry Pi';
} }
return ( return (
@ -112,6 +115,8 @@ export default function CodecSelector() {
} else if (selectedCodec === 'h264_v4l2m2m') { } else if (selectedCodec === 'h264_v4l2m2m') {
description = description =
'Video4Linux is an interface to multiple different hardware encoding platforms such as Intel and AMD.'; 'Video4Linux is an interface to multiple different hardware encoding platforms such as Intel and AMD.';
} else if (selectedCodec === 'h264_omx') {
description = 'OpenMax is a codec most often used with a Raspberry Pi.';
} }
return ( return (