Changeset 3413 for libpipi/trunk


Ignore:
Timestamp:
Mar 29, 2009, 12:26:38 AM (14 years ago)
Author:
Sam Hocevar
Message:

makemovie: new example program; this utility reads a list of images from
stdin and encodes them into a movie (name specified on the command line).

Location:
libpipi/trunk/examples
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/examples/Makefile.am

    r3346 r3413  
    44
    55noinst_PROGRAMS = edd img2rubik sharpen floodfill line bezier histogram \
    6         colorstring $(storyboard)
     6        colorstring $(makemovie) $(storyboard)
    77
    88edd_SOURCES = edd.c
     
    3131
    3232if USE_FFMPEG
     33makemovie = makemovie
    3334storyboard = storyboard
    3435endif
     36makemovie_SOURCES = makemovie.c
     37makemovie_LDADD = ../pipi/libpipi.la
     38makemovie_CFLAGS = $(LIBAVCODEC_CFLAGS) $(LIBAVFORMAT_CFLAGS) $(LIBSWSCALE_CFLAGS)
     39makemovie_LDFLAGS = $(LIBAVCODEC_LIBS) $(LIBAVFORMAT_LIBS) $(LIBSWSCALE_LIBS)
     40
    3541storyboard_SOURCES = storyboard.c
    3642storyboard_LDADD = ../pipi/libpipi.la
Note: See TracChangeset for help on using the changeset viewer.