mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-01-13 19:01:03 +00:00
Merge commit 'd40815a982c36ff9da09ae3edb5e3bd7d97b5d42'
* commit 'd40815a982c36ff9da09ae3edb5e3bd7d97b5d42':
xcbgrab: Correctly make shm optional
Conflicts:
libavdevice/xcbgrab.c
See: 8c0ae9015a
Merged-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
commit
3171ac209b
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user