You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
Fix xcbgrab build if shm is not available.
This commit is contained in:
@@ -47,7 +47,9 @@ typedef struct XCBGrabContext {
|
|||||||
xcb_connection_t *conn;
|
xcb_connection_t *conn;
|
||||||
xcb_screen_t *screen;
|
xcb_screen_t *screen;
|
||||||
xcb_window_t window;
|
xcb_window_t window;
|
||||||
|
#if CONFIG_LIBXCB_SHM
|
||||||
xcb_shm_seg_t segment;
|
xcb_shm_seg_t segment;
|
||||||
|
#endif
|
||||||
|
|
||||||
int64_t time_frame;
|
int64_t time_frame;
|
||||||
AVRational time_base;
|
AVRational time_base;
|
||||||
@@ -611,7 +613,9 @@ static av_cold int xcbgrab_read_header(AVFormatContext *s)
|
|||||||
return AVERROR(EIO);
|
return AVERROR(EIO);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if CONFIG_LIBXCB_SHM
|
||||||
c->segment = xcb_generate_id(c->conn);
|
c->segment = xcb_generate_id(c->conn);
|
||||||
|
#endif
|
||||||
|
|
||||||
ret = create_stream(s);
|
ret = create_stream(s);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user