Changeset 4880
- Timestamp:
- Jun 13, 2014, 7:41:12 AM (9 years ago)
- Location:
- libpipi/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libpipi/trunk/ThePimp/Makefile.am
r3561 r4880 1 1 # $Id: $ 2 2 3 pkglibdir = $(libdir)/ThePimp3 mypkglibdir = $(libdir)/ThePimp 4 4 5 5 pimp_sources = \ … … 33 33 34 34 if USE_CSHARP 35 pkglib_DATA = ThePimp.exe35 mypkglib_DATA = ThePimp.exe 36 36 bin_SCRIPTS = pimp 37 37 endif -
libpipi/trunk/bootstrap
r3644 r4880 38 38 # Check for automake 39 39 amvers="no" 40 for v in 1 1 10 9 8 7 6 5; do40 for v in 15 14 13 12 11 10 9 8 7 6 5; do 41 41 if automake-1.${v} --version >/dev/null 2>&1; then 42 42 amvers="-1.${v}" -
libpipi/trunk/configure.ac
r4692 r4880 5 5 AC_CONFIG_AUX_DIR(.auto) 6 6 AC_CANONICAL_SYSTEM 7 AM_INIT_AUTOMAKE([ no-define tar-ustar])7 AM_INIT_AUTOMAKE([subdir-objects no-define tar-ustar silent-rules]) 8 8 dnl AM_MAINTAINER_MODE 9 9 … … 233 233 PKG_CHECK_MODULES([LIBSWSCALE], [libswscale], [:], [ac_cv_my_have_ffmpeg=no]) 234 234 fi 235 # Disable for now 236 ac_cv_my_have_ffmpeg="no" 235 237 if test "${ac_cv_my_have_ffmpeg}" != "no"; then 236 238 AC_DEFINE(USE_FFMPEG, 1, Define to 1 to use FFmpeg) -
libpipi/trunk/examples/dumpmovie.c
r4704 r4880 101 101 } 102 102 103 avcodec_decode_video (ctx, frame, &finished, packet.data, packet.size);103 avcodec_decode_video2(ctx, frame, &finished, packet.data, packet.size); 104 104 if(!finished) 105 105 { -
libpipi/trunk/examples/storyboard.c
r4736 r4880 115 115 } 116 116 117 avcodec_decode_video (ctx, frame, &finished, packet.data, packet.size);117 avcodec_decode_video2(ctx, frame, &finished, packet.data, packet.size); 118 118 if(!finished) 119 119 {
Note: See TracChangeset
for help on using the changeset viewer.