Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFmpeg
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
libremedia
Tethys
FFmpeg
Commits
56a059ac
Commit
56a059ac
authored
18 years ago
by
Diego Biurrun
Browse files
Options
Downloads
Patches
Plain Diff
Make the X11 frame grabber disabled by default.
Originally committed as revision 7353 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
df32bc12
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
configure
+11
-0
11 additions, 0 deletions
configure
libavformat/Makefile
+4
-1
4 additions, 1 deletion
libavformat/Makefile
with
15 additions
and
1 deletion
configure
+
11
−
0
View file @
56a059ac
...
...
@@ -88,6 +88,7 @@ show_help(){
echo
" --enable-amr_if2 enable amr_wb IF2 audio codec"
echo
" --enable-sunmlib use Sun medialib [default=no]"
echo
" --enable-pthreads use pthreads [default=no]"
echo
" --enable-x11grab enable X11 grabbing [default=no]"
echo
" --enable-dc1394 enable IIDC-1394 grabbing using libdc1394"
echo
" and libraw1394 [default=no]"
echo
" --enable-swscaler software scaler support [default=no]"
...
...
@@ -442,6 +443,7 @@ CONFIG_LIST='
video4linux
video4linux2
wince
x11grab
x264
xvid
zlib
...
...
@@ -574,6 +576,7 @@ video4linux2="yes"
bktr
=
"no"
audio_oss
=
"yes"
audio_beos
=
"no"
x11grab
=
"no"
dv1394
=
"yes"
dc1394
=
"no"
network
=
"yes"
...
...
@@ -955,6 +958,8 @@ for opt do
;;
--enable-avisynth
)
avisynth
=
"yes"
;
;;
--enable-x11grab
)
x11grab
=
"yes"
;
;;
--enable-dc1394
)
dc1394
=
"yes"
pkg_requires
=
"
$pkg_requires
libraw1394"
;;
...
...
@@ -1163,6 +1168,11 @@ EOF
echo
"FAAD test failed."
fi
fi
if
test
"
$x11grab
"
!=
"no"
;
then
echo
"The X11 grabber is under GPL and --enable-gpl is not specified."
fail
=
"yes"
fi
fi
if
test
"
$fail
"
=
"yes"
;
then
...
...
@@ -1661,6 +1671,7 @@ struct v4l2_buffer dummy1;
EOF
# Deal with the x11 frame grabber
enabled x11grab
&&
enabled gpl
&&
enabled x11_grab_device_demuxer
&&
check_header X11/Xlib.h
&&
...
...
This diff is collapsed.
Click to expand it.
libavformat/Makefile
+
4
−
1
View file @
56a059ac
...
...
@@ -123,12 +123,15 @@ OBJS-$(CONFIG_WC3_DEMUXER) += wc3movie.o
OBJS-$(CONFIG_WSAUD_DEMUXER)
+=
westwood.o
OBJS-$(CONFIG_WSVQA_DEMUXER)
+=
westwood.o
OBJS-$(CONFIG_WV_DEMUXER)
+=
wv.o
OBJS-$(CONFIG_X11_GRAB_DEVICE_DEMUXER)
+=
x11grab.o
OBJS-$(CONFIG_YUV4MPEGPIPE_MUXER)
+=
yuv4mpeg.o
OBJS-$(CONFIG_YUV4MPEGPIPE_DEMUXER)
+=
yuv4mpeg.o
OBJS
+=
framehook.o
ifeq
($(CONFIG_X11GRAB),yes)
OBJS-$(CONFIG_X11_GRAB_DEVICE_DEMUXER)
+=
x11grab.o
endif
ifeq
($(CONFIG_VIDEO4LINUX),yes)
OBJS-$(CONFIG_VIDEO_GRAB_DEVICE_DEMUXER)
+=
grab.o
endif
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment