diff --git a/SConstruct b/SConstruct index 2fed496..f278d93 100644 --- a/SConstruct +++ b/SConstruct @@ -22,7 +22,6 @@ ffmpeg_args += ' --disable-programs --disable-ffmpeg --disable-ffplay --disable- ffmpeg_args += ' --disable-doc --disable-htmlpages --disable-manpages --disable-podpages --disable-txtpages' ffmpeg_args += ' --quiet' ffmpeg_args += ' --disable-sndio' -ffmpeg_args += ' --enable-libx264' ffmpeg_args += f' --arch={arch}' diff --git a/src/video.cpp b/src/video.cpp index 0e27dc3..55fe804 100644 --- a/src/video.cpp +++ b/src/video.cpp @@ -619,8 +619,6 @@ void Video::_copy_frame_data() { UtilityFunctions::printerr("Error transferring the frame to system memory!"); return; } - UtilityFunctions::print(av_hw_frame->linesize[0]); - UtilityFunctions::print(av_hw_frame->linesize[1]); memcpy(y_data.ptrw(), av_hw_frame->data[0], y_data.size()); memcpy(u_data.ptrw(), av_hw_frame->data[1], u_data.size()); diff --git a/test_room/addons/gde_gozen/video_playback.gd b/test_room/addons/gde_gozen/video_playback.gd index 8d1aac5..f216fc1 100644 --- a/test_room/addons/gde_gozen/video_playback.gd +++ b/test_room/addons/gde_gozen/video_playback.gd @@ -110,7 +110,6 @@ func update_video(a_video: Video) -> void: var l_image: Image = Image.create_empty(_resolution.x, _resolution.y, false, Image.FORMAT_L8) texture_rect.texture.set_image(l_image) - print(video.get_padding()) _uv_resolution = Vector2i((_resolution.x + video.get_padding()) / 2, _resolution.y / 2) if video.get_pixel_format().begins_with("yuv"): _shader_material.shader = preload("res://addons/gde_gozen/shaders/yuv420p.gdshader")