]> git.sesse.net Git - nageru/blobdiff - nageru/video_encoder.cpp
Remove the --http-uncompressed-video flag.
[nageru] / nageru / video_encoder.cpp
index 31c6b4d8e24834d960205a3790e8dcc02169d88f..877cbffe0521680fa8ecd71dcb3c55458039c296 100644 (file)
@@ -213,9 +213,7 @@ void VideoEncoder::open_output_stream()
        avctx->pb->ignore_boundary_point = 1;
 
        Mux::Codec video_codec;
-       if (global_flags.uncompressed_video_to_http) {
-               video_codec = Mux::CODEC_NV12;
-       } else if (global_flags.av1_video_to_http) {
+       if (global_flags.av1_video_to_http) {
                video_codec = Mux::CODEC_AV1;
        } else {
                video_codec = Mux::CODEC_H264;