Package: lynkeos.app
Version: 1.2-1
Severity: normal
Tags: patch

Hi,

Attached is the diff for my lynkeos.app 1.2-1.1 NMU.

-- 
Julien Danjou
// <[EMAIL PROTECTED]>     http://julien.danjou.info
// 9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD
// My root password is
diff -u lynkeos.app-1.2/Sources/GNUmakefile lynkeos.app-1.2/Sources/GNUmakefile
--- lynkeos.app-1.2/Sources/GNUmakefile
+++ lynkeos.app-1.2/Sources/GNUmakefile
@@ -1,7 +1,7 @@
 include $(GNUSTEP_MAKEFILES)/common.make
 
 # Change this to your special installation of FFmeg library
-ADDITIONAL_INCLUDE_DIRS += -I/usr/include/ffmpeg/
+ADDITIONAL_INCLUDE_DIRS += -I/usr/include/ffmpeg/ 
-I/usr/include/GNUstep/Headers/
 
 
 APP_NAME = Lynkeos
@@ -39,7 +39,7 @@
 
 Lynkeos_APPLICATION_ICON=Lynkeos.png
 
-ADDITIONAL_OBJC_LIBS += -lavformat -lavcodec -ldts -lfftw3f_threads 
-lfftw3_threads -lfftw3f -lfftw3 -lm
+ADDITIONAL_OBJC_LIBS += -lavformat -lavcodec -lavutil -lfftw3f_threads 
-lfftw3_threads -lfftw3f -lfftw3 -lvorbis -lvorbisenc -ltheora -logg -ldts 
-la52 -lraw1394 -ldc1394_control -lgsm -lz -lm
 #ADDITIONAL_LIB_DIRS += -L/home/thecat/Devel/ffmpeg-0.4.8/libavformat/ 
-L/home/thecat/Devel/ffmpeg-0.4.8/libavcodec
 
 ADDITIONAL_CPPFLAGS += -DFLOAT_PIXELS
diff -u lynkeos.app-1.2/debian/changelog lynkeos.app-1.2/debian/changelog
--- lynkeos.app-1.2/debian/changelog
+++ lynkeos.app-1.2/debian/changelog
@@ -1,3 +1,14 @@
+lynkeos.app (1.2-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix FTBFS
+    - Build-dep on libgnustep-gui0.10-dev instead of libgnustep-gui0.9-dev
+      (Closes: #350429)
+    - Fix problem with libavcodec-dev (Closes: #327429)
+    - Add an include path to Sources/GNUmakefile
+
+ -- Julien Danjou <[EMAIL PROTECTED]>  Thu,  1 Jun 2006 11:46:49 +0200
+
 lynkeos.app (1.2-1) unstable; urgency=low
 
   * Initial Release. (closes: #300000)
diff -u lynkeos.app-1.2/debian/control lynkeos.app-1.2/debian/control
--- lynkeos.app-1.2/debian/control
+++ lynkeos.app-1.2/debian/control
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Gürkan Sengün <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), libavcodec-dev, libavformat-dev, 
libdts-dev, fftw3-dev, libgnustep-gui0.9-dev, gnustep-make, openssl
+Build-Depends: debhelper (>= 4.0.0), libavcodec-dev, libavformat-dev, 
libdts-dev, fftw3-dev, libgnustep-gui0.10-dev, gnustep-make, openssl
 Standards-Version: 3.6.1
 
 Package: lynkeos.app
only in patch2:
unchanged:
--- lynkeos.app-1.2.orig/Sources/ffmpeg_access.c
+++ lynkeos.app-1.2/Sources/ffmpeg_access.c
@@ -240,7 +240,7 @@
     // Find the first video stream
     videoStream=-1;
     for(i=0; i<pFormatCtx->nb_streams; i++)
-        if(pFormatCtx->streams[i]->codec.codec_type==CODEC_TYPE_VIDEO)
+        if(pFormatCtx->streams[i]->codec->codec_type==CODEC_TYPE_VIDEO)
         {
             videoStream=i;
             break;
@@ -284,12 +284,6 @@
       return _ffmpegErrorOccuredFlag;
     }
 
-    // Hack to correct wrong frame rates that seem to be generated by some 
-    // codecs
-    if(pCodecCtx->frame_rate>1000 && pCodecCtx->frame_rate_base==1){
-        pCodecCtx->frame_rate_base=1000;
-    }
-
     // Allocate video frame
     pFrame=avcodec_alloc_frame();
 

Attachment: signature.asc
Description: Digital signature

Reply via email to