Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. /*
  2. * Class: JNvPipe
  3. * Method: JNvPipe_SetBitrate
  4. * Signature: (JJI)V
  5. */
  6. JNIEXPORT void JNICALL Java_JNvPipe_JNvPipe_1SetBitrate
  7. (JNIEnv *, jclass, jlong, jlong, jint);
  8.  
  9. /*
  10. * Class: JNvPipe
  11. * Method: JNvPipe_Encode
  12. * Signature: (J[IJ[BIIZ)J
  13. */
  14. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1Encode
  15. (JNIEnv *, jclass, jlong, jintArray, jlong, jbyteArray, jint, jint, jboolean);
  16.  
  17. /*
  18. * Class: JNvPipe
  19. * Method: JNvPipe_EncodeTexture
  20. * Signature: (JII[BIIZ)J
  21. */
  22. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1EncodeTexture
  23. (JNIEnv *, jclass, jlong, jint, jint, jbyteArray, jint, jint, jboolean);
  24.  
  25. /*
  26. * Class: JNvPipe
  27. * Method: JNvPipe_EncodePBO
  28. * Signature: (JI[BIIZ)J
  29. */
  30. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1EncodePBO
  31. (JNIEnv *, jclass, jlong, jint, jbyteArray, jint, jint, jboolean);
  32.  
  33. /*
  34. * Class: JNvPipe
  35. * Method: JNvPipe_CreateDecoder
  36. * Signature: (LJNvPipe/JNvPipeFormat;LJNvPipe/JNvPipeCodec;II)J
  37. */
  38. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1CreateDecoder
  39. (JNIEnv *, jclass, jobject, jobject, jint, jint);
  40.  
  41. /*
  42. * Class: JNvPipe
  43. * Method: JNvPipe_Decode
  44. * Signature: (J[B[III)J
  45. */
  46. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1Decode
  47. (JNIEnv *, jclass, jlong, jbyteArray, jintArray, jint, jint);
  48.  
  49. /*
  50. * Class: JNvPipe
  51. * Method: JNvPipe_DecodeTexture
  52. * Signature: (J[BIIII)J
  53. */
  54. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1DecodeTexture
  55. (JNIEnv *, jclass, jlong, jbyteArray, jint, jint, jint, jint);
  56.  
  57. /*
  58. * Class: JNvPipe
  59. * Method: JNvPipe_DecodePBO
  60. * Signature: (J[BIII)J
  61. */
  62. JNIEXPORT jlong JNICALL Java_JNvPipe_JNvPipe_1DecodePBO
  63. (JNIEnv *, jclass, jlong, jbyteArray, jint, jint, jint);
  64.  
  65. /*
  66. * Class: JNvPipe
  67. * Method: JNvPipe_Destroy
  68. * Signature: (J)V
  69. */
  70. JNIEXPORT void JNICALL Java_JNvPipe_JNvPipe_1Destroy
  71. (JNIEnv *, jclass, jlong);
  72.  
  73. /*
  74. * Class: JNvPipe
  75. * Method: JNvPipe_GetError
  76. * Signature: (J)Ljava/lang/String;
  77. */
  78. JNIEXPORT jstring JNICALL Java_JNvPipe_JNvPipe_1GetError
  79. (JNIEnv *, jclass, jlong);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement