diff --git a/common/src/ffmpeg-hardware-acceleration.ts b/common/src/ffmpeg-hardware-acceleration.ts index 9904e09bc4..310835315a 100644 --- a/common/src/ffmpeg-hardware-acceleration.ts +++ b/common/src/ffmpeg-hardware-acceleration.ts @@ -70,11 +70,7 @@ export function getH264DecoderArgs(): CodecArgs { ], }; - if (isRaspberryPi()) { - ret['Raspberry Pi'] = ['-c:v', 'h264_mmal']; - ret[V4L2] = ['-c:v', 'h264_v4l2m2m']; - } - else if (os.platform() === 'linux') { + if (os.platform() === 'linux') { ret[V4L2] = ['-c:v', 'h264_v4l2m2m']; } else if (os.platform() === 'win32') {