
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (104)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (7039)
-
avfilter : add D2TS, TS2D, TS2T as a common macro in internal.h
1er juin 2020, par Limin Wangavfilter : add D2TS, TS2D, TS2T as a common macro in internal.h
Signed-off-by : Limin Wang <lance.lmwang@gmail.com>
- [DH] libavfilter/aeval.c
- [DH] libavfilter/af_volume.c
- [DH] libavfilter/f_select.c
- [DH] libavfilter/f_sendcmd.c
- [DH] libavfilter/internal.h
- [DH] libavfilter/setpts.c
- [DH] libavfilter/vf_delogo.c
- [DH] libavfilter/vf_eq.c
- [DH] libavfilter/vf_hue.c
- [DH] libavfilter/vf_rotate.c
- [DH] libavfilter/vf_scale.c
- [DH] libavfilter/vf_vignette.c
-
factor out common decoding code for Indeo 4 and Indeo 5
19 mai 2012, par Kostya Shishkovfactor out common decoding code for Indeo 4 and Indeo 5
-
Link FFMpeg in Android
9 juin 2014, par SayakiI want to use FFMpeg on android. I’m really new to this topic. I build libraries with this tutorial]1. Now I have .so and .h files but I dont know how to use them in my project. I probably need to link it in my Android.mk file. Here is my .mk and .c file in my project :
Android.mk
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_LDLIBS := -llog
LOCAL_MODULE := ndksetup
LOCAL_SRC_FILES := native.c
include $(BUILD_SHARED_LIBRARY)native.c
#include
#include
#include <android></android>log.h>
#define DEBUG_TAG "NDKSetupActivity"
void Java_com_example_ndksetup_MainActivity_printLog(JNIEnv *env, jobject this, jstring logString)
{
jboolean isCopy;
const char * szLogString = (*env)->GetStringUTFChars(env, logString, &isCopy);
__android_log_print(ANDROID_LOG_DEBUG, DEBUG_TAG, "NDK: %s", szLogString);
(*env)->ReleaseStringUTFChars(env, logString, szLogString);
}
jint Java_com_example_ndksetup_MainActivity_fibonacci(JNIEnv * env, jobject this, jint value)
{
if (value <= 1) return value;
return Java_com_example_ndksetup_MainActivity_fibonacci(env, this, value-1)
+ Java_com_example_ndksetup_MainActivity_fibonacci(env, this, value-2);
}Can anyone tell me how I can use .so and .h files in my native.c file ?