Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
libvncserver
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
rasky
libvncserver
Commits
00901a2e
Commit
00901a2e
authored
Jun 07, 2004
by
dscho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add vnc2mpg, a program which makes a movie from a VNC desktop using FFMPEG
parent
c7730d9b
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
445 additions
and
2 deletions
+445
-2
Makefile.am
client_examples/Makefile.am
+12
-1
vnc2mpg.c
client_examples/vnc2mpg.c
+426
-0
configure.ac
configure.ac
+7
-1
No files found.
client_examples/Makefile.am
View file @
00901a2e
DEFINES
=
-I
..
-g
-Wall
LDADD
=
../libvncclient/libvncclient.a
if
WITH_FFMPEG
FFMPEG_HOME
=
@with_ffmpeg@
vnc2mpg_CFLAGS
=
-I
$(FFMPEG_HOME)
/libavformat
-I
$(FFMPEG_HOME)
/libavcodec
vnc2mpg_LDADD
=
$(LDADD)
$(FFMPEG_HOME)
/libavformat/libavformat.a
$(FFMPEG_HOME)
/libavcodec/libavcodec.a
-lm
FFMPEG_CLIENT
=
vnc2mpg
endif
if
HAVE_LIBSDL
SDLVIEWER
=
SDLvncviewer
...
...
@@ -9,5 +18,7 @@ SDLvncviewer_CFLAGS=`sdl-config --cflags`
SDLvncviewer_LDFLAGS
=
`
sdl-config
--libs
`
endif
noinst_PROGRAMS
=
ppmtest
$(SDLVIEWER)
noinst_PROGRAMS
=
ppmtest
$(SDLVIEWER)
$(FFMPEG_CLIENT)
client_examples/vnc2mpg.c
0 → 100644
View file @
00901a2e
This diff is collapsed.
Click to expand it.
configure.ac
View file @
00901a2e
...
...
@@ -33,6 +33,12 @@ AH_TEMPLATE(SDL_CONFIG, [Use sdl-config (for SDLvncviewer)])
AC_ARG_WITH(sdl,
[ --with-sdl use sdl-config],
, [ with_sdl=yes ])
AH_TEMPLATE(FFMPEG, [Use ffmpeg (for vnc2mpg)])
AC_ARG_WITH(ffmpeg,
[ --with-ffmpeg=dir set ffmpeg home directory],,)
#AM_DEFINE(FFMPEG, "$with_ffmpeg")
AC_SUBST(with_ffmpeg)
AM_CONDITIONAL(WITH_FFMPEG, test ! -z "$with_ffmpeg")
# Checks for X libraries
HAVE_X="false"
...
...
@@ -155,7 +161,7 @@ AC_CONFIG_FILES([Makefile
libvncclient/Makefile
client_examples/Makefile
test/Makefile
libvncs
erver.spec
LibVNCS
erver.spec
libvncserver-config])
AC_OUTPUT
chmod a+x ./libvncserver-config
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment