diff options
| author | Carl Hetherington <cth@carlh.net> | 2022-06-05 21:09:55 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2022-06-06 23:10:58 +0200 |
| commit | f7b6c0595fe13be3f4a10bcce88dd895b1111b57 (patch) | |
| tree | eacad37f58b04c70d0f775ff9a989524be721e1d /src/lib/ffmpeg_file_encoder.cc | |
| parent | 59953282b9f9da1164f39181347a01672c4f674c (diff) | |
Remove unused H246_PCM export code.
Diffstat (limited to 'src/lib/ffmpeg_file_encoder.cc')
| -rw-r--r-- | src/lib/ffmpeg_file_encoder.cc | 7 |
1 files changed, 0 insertions, 7 deletions
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); |
