Crash >> Clicking the Preview window of the Video Sequencer #62996

Closed
opened 2019-03-27 09:37:33 +01:00 by Ovionis · 13 comments

System Information
Operating system: Windows-7-6.1.7601-SP1 64 Bits
Graphics card: GeForce GTX 770/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 419.35

Blender Version
Broken: version: 2.80 (sub 51), branch: blender2.7, commit date: 2019-03-25 00:55, hash: 07f6be87a9

Short description of error
In the Video Sequencer window,, just click the Preview area.
The area where the images/videos/etc are visually displayed.
The strips area slides like normal but clicking the image area just crashes Blender.

Note: (Action mouse click)
Left Click in right-click default
Right Click in left-click default

**System Information** Operating system: Windows-7-6.1.7601-SP1 64 Bits Graphics card: GeForce GTX 770/PCIe/SSE2 NVIDIA Corporation 4.5.0 NVIDIA 419.35 **Blender Version** Broken: version: 2.80 (sub 51), branch: blender2.7, commit date: 2019-03-25 00:55, hash: `07f6be87a9` **Short description of error** In the Video Sequencer window,, just click the Preview area. The area where the images/videos/etc are visually displayed. The strips area slides like normal but clicking the image area just crashes Blender. Note: (Action mouse click) Left Click in right-click default Right Click in left-click default
Author

Added subscriber: @Phigon

Added subscriber: @Phigon

#63159 was marked as duplicate of this issue

#63159 was marked as duplicate of this issue

#63094 was marked as duplicate of this issue

#63094 was marked as duplicate of this issue

#62998 was marked as duplicate of this issue

#62998 was marked as duplicate of this issue
Member

Added subscriber: @JacquesLucke

Added subscriber: @JacquesLucke
Member

Does this happen always, or just when some image/video is loaded in the sequencer? Can you prepare a .blend file that shows the issue?
Also, a screenshot/short screenrecording would help to reproduce the issue.

Does this happen always, or just when some image/video is loaded in the sequencer? Can you prepare a .blend file that shows the issue? Also, a screenshot/short screenrecording would help to reproduce the issue.
Author
[2019-03-27 08-01-26.mp4](https://archive.blender.org/developer/F6890779/2019-03-27_08-01-26.mp4)
Member

GPU_framebuffer_active_get in sequencer_ibuf_get returns NULL, which leads to the crash later on.

GPU_framebuffer_bind(GPUFrameBuffer * fb) (/home/jacques/blender-git/blender/source/blender/gpu/intern/gpu_framebuffer.c:497)
sequencer_ibuf_get(struct Main * bmain, struct Depsgraph * depsgraph, Scene * scene, SpaceSeq * sseq, int cfra, int frame_ofs, const char * viewname) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_draw.c:990)
sample_apply(bContext * C, wmOperator * op, const wmEvent * event) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_view.c:91)
sample_invoke(bContext * C, wmOperator * op, const wmEvent * event) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_view.c:189)
wm_operator_invoke(bContext * C, wmOperatorType * ot, wmEvent * event, PointerRNA * properties, ReportList * reports, const _Bool poll_only, _Bool use_last_properties) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:1343)
wm_handler_operator_call(bContext * C, ListBase * handlers, wmEventHandler * handler_base, wmEvent * event, PointerRNA * properties) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2144)
wm_handlers_do_intern(bContext * C, wmEvent * event, ListBase * handlers) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2462)
wm_handlers_do(bContext * C, wmEvent * event, ListBase * handlers) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2720)
wm_event_do_handlers(bContext * C) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:3141)
WM_main(bContext * C) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm.c:418)
main(int argc, const char ** argv) (/home/jacques/blender-git/blender/source/creator/creator.c:505)
`GPU_framebuffer_active_get` in `sequencer_ibuf_get` returns `NULL`, which leads to the crash later on. ``` GPU_framebuffer_bind(GPUFrameBuffer * fb) (/home/jacques/blender-git/blender/source/blender/gpu/intern/gpu_framebuffer.c:497) sequencer_ibuf_get(struct Main * bmain, struct Depsgraph * depsgraph, Scene * scene, SpaceSeq * sseq, int cfra, int frame_ofs, const char * viewname) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_draw.c:990) sample_apply(bContext * C, wmOperator * op, const wmEvent * event) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_view.c:91) sample_invoke(bContext * C, wmOperator * op, const wmEvent * event) (/home/jacques/blender-git/blender/source/blender/editors/space_sequencer/sequencer_view.c:189) wm_operator_invoke(bContext * C, wmOperatorType * ot, wmEvent * event, PointerRNA * properties, ReportList * reports, const _Bool poll_only, _Bool use_last_properties) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:1343) wm_handler_operator_call(bContext * C, ListBase * handlers, wmEventHandler * handler_base, wmEvent * event, PointerRNA * properties) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2144) wm_handlers_do_intern(bContext * C, wmEvent * event, ListBase * handlers) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2462) wm_handlers_do(bContext * C, wmEvent * event, ListBase * handlers) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:2720) wm_event_do_handlers(bContext * C) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm_event_system.c:3141) WM_main(bContext * C) (/home/jacques/blender-git/blender/source/blender/windowmanager/intern/wm.c:418) main(int argc, const char ** argv) (/home/jacques/blender-git/blender/source/creator/creator.c:505) ```

Added subscribers: @gadic, @iss

Added subscribers: @gadic, @iss

Added subscriber: @robertzaku1

Added subscriber: @robertzaku1

Added subscriber: @papapa

Added subscriber: @papapa

This issue was referenced by b936d7b16c

This issue was referenced by b936d7b16c627963d99c4dce0ab9319a748503f3

Changed status from 'Open' to: 'Resolved'

Changed status from 'Open' to: 'Resolved'
Sign in to join this conversation.
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
5 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#62996
No description provided.