]> git.pld-linux.org Git - packages/cinelerra.git/commitdiff
- outdated
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 1 Nov 2005 17:16:47 +0000 (17:16 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    cinelerra-libsndfile1.patch -> 1.6

cinelerra-libsndfile1.patch [deleted file]

diff --git a/cinelerra-libsndfile1.patch b/cinelerra-libsndfile1.patch
deleted file mode 100644 (file)
index 3c4d163..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
---- cinelerra-1.1.9/cinelerra/filesndfile.C.orig       2003-10-19 11:51:37.000000000 +0200
-+++ cinelerra-1.1.9/cinelerra/filesndfile.C    2003-11-12 22:54:02.284687776 +0100
-@@ -34,7 +34,7 @@
-       FILE *fileptr = fopen(asset->path, "r");
-       if(fileptr)
-       {
--              SNDFILE *fd = sf_open_fd(fileptr, asset->path, SFM_READ, &fd_config, 0);
-+              SNDFILE *fd = sf_open_fd(fileno(fileptr), SFM_READ, &fd_config, 0);
-               if(fd)
-               {
-                       sf_close(fd);
-@@ -209,7 +209,7 @@
-                       fileptr = fopen(asset->path, "r");
-                       if(fileptr)
-                       {
--                              fd = sf_open_fd(fileptr, asset->path, SFM_READ, &fd_config, 0);
-+                              fd = sf_open_fd(fileno(fileptr), SFM_READ, &fd_config, 0);
- // Already given by user
-                               if(fd) format_to_asset();
-                       }
-@@ -218,7 +218,7 @@
-                       fileptr = fopen(asset->path, "r");
-                       if(fileptr)
-                       {
--                              fd = sf_open_fd(fileptr, asset->path, SFM_READ, &fd_config, 0);
-+                              fd = sf_open_fd(fileno(fileptr), SFM_READ, &fd_config, 0);
- // Doesn't calculate the length
-                               if(fd) format_to_asset();
-                       }
-@@ -231,7 +231,7 @@
-               fileptr = fopen(asset->path, "w");
-               if(fileptr)
-               {
--                      fd = sf_open_fd(fileptr, asset->path, SFM_WRITE, &fd_config, 0);
-+                      fd = sf_open_fd(fileno(fileptr), SFM_WRITE, &fd_config, 0);
-               }
-       }
This page took 0.068768 seconds and 4 git commands to generate.