X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=blobdiff_plain;f=src%2Flib%2Fffmpeg_file_encoder.cc;h=d645c4c6b854eb56df0b3bb2ef01b3afaa7b5186;hp=9189c3e8347d8403d077a27448d0178c4543a7be;hb=f7b6c0595fe13be3f4a10bcce88dd895b1111b57;hpb=59953282b9f9da1164f39181347a01672c4f674c diff --git a/src/lib/ffmpeg_file_encoder.cc b/src/lib/ffmpeg_file_encoder.cc index 9189c3e83..d645c4c6b 100644 --- a/src/lib/ffmpeg_file_encoder.cc +++ b/src/lib/ffmpeg_file_encoder.cc @@ -241,12 +241,6 @@ FFmpegFileEncoder::FFmpegFileEncoder ( _audio_codec_name = "aac"; av_dict_set_int (&_video_options, "crf", x264_crf, 0); break; - case ExportFormat::H264_PCM: - _sample_format = AV_SAMPLE_FMT_S32; - _video_codec_name = "libx264"; - _audio_codec_name = "pcm_s24le"; - av_dict_set_int (&_video_options, "crf", x264_crf, 0); - break; default: DCPOMATIC_ASSERT (false); } @@ -290,7 +284,6 @@ FFmpegFileEncoder::pixel_format (ExportFormat format) case ExportFormat::PRORES: return AV_PIX_FMT_YUV422P10; case ExportFormat::H264_AAC: - case ExportFormat::H264_PCM: return AV_PIX_FMT_YUV420P; default: DCPOMATIC_ASSERT (false);