Aras Pranckevicius aras_p
Aras Pranckevicius commented on pull request blender/blender#118503 2024-02-20 14:48:14 +01:00
VSE: Reduce playback stalls when new video clips start playing

Good catch wrt .ogg. Whoops!

So, I guess:

  • for OGG (i.e. IMB_isanim) usage, keep existing code with full-fledged detection.
  • for VSE playback (inside anim_getnew), there's no need to…
Aras Pranckevicius created pull request blender/blender#118506 2024-02-20 14:30:29 +01:00
Cleanup: Move BKE_writeavi.h to C++ and rename to BKE_writemovie.hh
Aras Pranckevicius pushed to writeavi_cpp at aras_p/blender 2024-02-20 14:30:08 +01:00
4fe07f2da8 Cleanup: Move BKE_writeavi.h to C++ and rename to BKE_writemovie.hh
Aras Pranckevicius created branch writeavi_cpp in aras_p/blender 2024-02-20 14:30:08 +01:00
Aras Pranckevicius pushed to main at blender/blender-developer-docs 2024-02-20 14:03:22 +01:00
9be732ef8b Update docs/release_notes/4.2/vfx.md
Aras Pranckevicius pushed to main at blender/blender-developer-docs 2024-02-20 14:01:24 +01:00
89172badf2 Update docs/release_notes/4.2/vfx.md
Aras Pranckevicius created pull request blender/blender#118503 2024-02-20 13:58:12 +01:00
VSE: Reduce playback stalls when new video clips start playing
Aras Pranckevicius pushed to speedup_isffmpeg at aras_p/blender 2024-02-20 13:55:41 +01:00
db9aeff87b VSE: Speedup isffmpeg by doing a simpler check
18fef523ee Cleanup: Video: remove no-op ismovie and friends
f09c7dc4ba Video: Remove non-ffmpeg AVI support
6d88285cd2 Merge branch 'blender-v4.1-release'
f5151bbbeb Fix #118116: Only hide solid mesh if overlays are enabled
Compare 10 commits »
Aras Pranckevicius created branch speedup_isffmpeg in aras_p/blender 2024-02-20 13:55:41 +01:00
Aras Pranckevicius deleted branch remove_avi from aras_p/blender 2024-02-20 13:16:03 +01:00
Aras Pranckevicius merged pull request blender/blender#118409 2024-02-20 13:16:00 +01:00
Video: Remove non-ffmpeg AVI support
Aras Pranckevicius pushed to main at blender/blender 2024-02-20 13:16:00 +01:00
f09c7dc4ba Video: Remove non-ffmpeg AVI support
Aras Pranckevicius pushed to remove_avi at aras_p/blender 2024-02-20 13:08:01 +01:00
58c8173c5c Merge branch 'main' into remove_avi
6d88285cd2 Merge branch 'blender-v4.1-release'
f5151bbbeb Fix #118116: Only hide solid mesh if overlays are enabled
a314bf7daf GPv3: Conversion function for the tint modifier
43ed74f7a2 Fix crash in GPU compositor when running from command line
Compare 92 commits »
Aras Pranckevicius commented on pull request blender/blender#118396 2024-02-20 08:51:18 +01:00
VSE: Skip rendering lower strips that are behind opaque strips above them

I still not see this actually working... Granted I am not testing this with Gold edit as you mention, but rather very simple setup. Here it says, that movie is not occluded.

Huh, I can't…

Aras Pranckevicius commented on pull request blender/blender#118468 2024-02-20 05:55:31 +01:00
CMake: Change build flags to use SSE42 if available

constistency might not be a word, even if it has const in there

Aras Pranckevicius commented on pull request blender/blender#118468 2024-02-19 20:52:33 +01:00
CMake: Change build flags to use SSE42 if available

Looking good!

Aras Pranckevicius commented on pull request blender/blender#118409 2024-02-19 08:36:33 +01:00
Video: Remove non-ffmpeg AVI support

@ideasman42 I guess a counterpoint, is that just because something compiles (i.e. a "different video backend"), does not necessarily mean it actually works. Actual case in point: today, the…

Aras Pranckevicius commented on pull request blender/blender#118396 2024-02-18 20:42:12 +01:00
VSE: Skip rendering lower strips that are behind opaque strips above them

@iss changed code to use SEQ_CACHE_STORE_RAW image for determining "was this opaque" instead of a separate planes_before_pp map, indeed it works well and is simpler. Made "generator" (zero…