Commit 3171ac20 authored by Michael Niedermayer's avatar Michael Niedermayer

Merge commit 'd40815a9'

* commit 'd40815a9':
  xcbgrab: Correctly make shm optional

Conflicts:
	libavdevice/xcbgrab.c

See: 8c0ae901Merged-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parents 7d56aab2 d40815a9
......@@ -54,7 +54,6 @@ typedef struct XCBGrabContext {
#if CONFIG_LIBXCB_SHM
xcb_shm_seg_t segment;
#endif
int64_t time_frame;
AVRational time_base;
......@@ -629,10 +628,6 @@ static av_cold int xcbgrab_read_header(AVFormatContext *s)
return AVERROR(EIO);
}
#if CONFIG_LIBXCB_SHM
c->segment = xcb_generate_id(c->conn);
#endif
ret = create_stream(s);
if (ret < 0) {
......@@ -641,7 +636,8 @@ static av_cold int xcbgrab_read_header(AVFormatContext *s)
}
#if CONFIG_LIBXCB_SHM
c->has_shm = check_shm(c->conn);
if ((c->has_shm = check_shm(c->conn)))
c->segment = xcb_generate_id(c->conn);
#endif
#if CONFIG_LIBXCB_XFIXES
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment