]> git.sesse.net Git - nageru/blobdiff - nageru/kaeru.cpp
Allow dynamic frame sizes for FFmpeg inputs.
[nageru] / nageru / kaeru.cpp
index 2bdc6861f2dffa5a17a0d81922e38adcbaf0b95b..caa71c6527fc3bd0cdde79dc88cc9154bae34e5b 100644 (file)
@@ -267,7 +267,7 @@ int main(int argc, char *argv[])
        }
        global_x264_encoder = x264_encoder.get();
 
-       FFmpegCapture video(argv[optind], global_flags.width, global_flags.height);
+       FFmpegCapture video(argv[optind], global_flags.width, global_flags.height, /*surface=*/nullptr);
        video.set_pixel_format(FFmpegCapture::PixelFormat_NV12);
        if (global_flags.transcode_video) {
                video.set_frame_callback(bind(video_frame_callback, &video, x264_encoder.get(), audio_encoder.get(), _1, _2, _3, _4, _5, _6, _7, _8, _9, _10, _11));