]> git.sesse.net Git - nageru/blobdiff - shared/mux.cpp
Remove the --http-uncompressed-video flag.
[nageru] / shared / mux.cpp
index 0a2eaef6a8310f53b5f7ea0d9a175ea1eb226570..2130752b4c98f0e8bfa5f94c228bc7a947ff215c 100644 (file)
@@ -61,9 +61,6 @@ Mux::Mux(AVFormatContext *avctx, int width, int height, Codec video_codec, const
                avstream_video->codecpar->codec_id = AV_CODEC_ID_H264;
        } else if (video_codec == CODEC_AV1) {
                avstream_video->codecpar->codec_id = AV_CODEC_ID_AV1;
-       } else if (video_codec == CODEC_NV12) {
-               avstream_video->codecpar->codec_id = AV_CODEC_ID_RAWVIDEO;
-               avstream_video->codecpar->codec_tag = avcodec_pix_fmt_to_codec_tag(AV_PIX_FMT_NV12);
        } else {
                assert(video_codec == CODEC_MJPEG);
                avstream_video->codecpar->codec_id = AV_CODEC_ID_MJPEG;