aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/ffmpeg-0.7/test.pp
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-04-18 20:53:24 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2012-04-18 20:53:24 +0000
commit9bc840d97697bc6445aab17368bad58d02018a2a (patch)
tree3e2ccb3473a5abdd4bb3eee5d11d49b5d6988403 /src/lib/ffmpeg-0.7/test.pp
parente014db6853e12ce89c49f8fd469fd4a3d2b7110f (diff)
downloadusdx-9bc840d97697bc6445aab17368bad58d02018a2a.tar.gz
usdx-9bc840d97697bc6445aab17368bad58d02018a2a.tar.xz
usdx-9bc840d97697bc6445aab17368bad58d02018a2a.zip
Rename ffmpeg7 to ffmpeg-0.7
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@2855 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/lib/ffmpeg-0.7/test.pp')
-rw-r--r--src/lib/ffmpeg-0.7/test.pp48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/lib/ffmpeg-0.7/test.pp b/src/lib/ffmpeg-0.7/test.pp
new file mode 100644
index 00000000..93ed8b46
--- /dev/null
+++ b/src/lib/ffmpeg-0.7/test.pp
@@ -0,0 +1,48 @@
+
+unit test;
+interface
+
+{
+ Automatically converted by H2Pas 1.0.0 from test.h
+ The following command line parameters were used:
+ test.h
+}
+
+{$IFDEF FPC}
+{$PACKRECORDS C}
+{$ENDIF}
+
+
+{$include <stdint.h>}
+{$include <limits.h>}
+{$include "attributes.h"}
+ {/< numerator }
+ {/< denominator }
+
+ type
+ AVRational = record
+ num : longint;
+ den : longint;
+ end;
+(* error
+ int tmp;
+ in declarator_list *)
+(* error
+ if(tmp) return ((tmp ^ a.den ^ b.den)>>63)|1;
+ in declarator_list *)
+(* error
+ else if(b.den && a.den) return 0;
+ in declarator_list *)
+(* error
+ else if(a.num && b.num) return (a.num>>31) - (b.num>>31);
+ in declarator_list *)
+(* error
+ else return INT_MIN;
+ in declarator_list *)
+(* error
+}
+
+implementation
+
+
+end.