Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

  • ANNEXE : Les extensions, plugins SPIP des canaux

    11 février 2010, par

    Un plugin est un ajout fonctionnel au noyau principal de SPIP. MediaSPIP consiste en un choix délibéré de plugins existant ou pas auparavant dans la communauté SPIP, qui ont pour certains nécessité soit leur création de A à Z, soit des ajouts de fonctionnalités.
    Les extensions que MediaSPIP nécessite pour fonctionner
    Depuis la version 2.1.0, SPIP permet d’ajouter des plugins dans le répertoire extensions/.
    Les "extensions" ne sont ni plus ni moins que des plugins dont la particularité est qu’ils se (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately 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 (...)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (4914)

  • avformat/aviobuf : Honor avio_open[2] documentation

    6 janvier 2020, par Andreas Rheinhardt
    avformat/aviobuf : Honor avio_open[2] documentation
    

    The documentation of both avio_open() as well as avio_open2() states
    that on failure, the pointer to an AVIOContext given to this function
    (via a pointer to a pointer to an AVIOContext) will be set to NULL. Yet
    it didn't happen upon failure of ffurl_open_whitelist() or when allocating
    the internal buffer failed. This commit changes this.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/aviobuf.c
  • Why is the FindClass/JNI function behaving differently on nexus 5 and Honor Play ?

    17 août 2020, par Owl

    MobileFFmpeg v4.3.1LTS works on Honor Play, but doesn't work on Nexus 5. Why ?

    &#xA;

    The build for Honor Play and nexus 5 is the same ->armeabi-v7a

    &#xA;

    &#xA;

    https://github.com/tanersener/mobile-ffmpeg/releases/tag/v4.3.1.LTS

    &#xA;

    Nexus5 :enter image description here

    &#xA;

    HonorPlay :enter image description here

    &#xA;

    &#xA;

    &#xA;

    NDK = ndk-r14b

    &#xA;

    &#xA;

    &#xA;

    JDK = jdk1.8.0_77

    &#xA;

    &#xA;

    I will ask the question immediately in English stackoverflow. Developing a game in Unreal Engine 4 v24.3. In the code itself there are only 2 lines that relate to MobileFFmpeg :

    &#xA;

    Enabling the function :

    &#xA;

    extern "C"&#xA;{&#xA;    int ffmpeg_execute(int argc, char** argv);&#xA;}&#xA;

    &#xA;

    Calling a function with ffmpeg parameters

    &#xA;

    ffmpeg_execute(arg.size(), arg.data());&#xA;

    &#xA;

    Without mobile FFmpeg, the app on nexus 5 starts and works stably. When I start with FFmpeg, an error immediately appears and the app crashes :

    &#xA;

    enter image description here

    &#xA;

    The FindClass function does not work, the call itself is declared in mobile ffmpeg.c :

    &#xA;

    /** Full name of the Config class */&#xA;const char *configClassName = "com/arthenica/mobileffmpeg/Config";&#xA;

    &#xA;

    ...

    &#xA;

    /**&#xA; * Called when &#x27;mobileffmpeg&#x27; native library is loaded.&#xA; *&#xA; * @param vm pointer to the running virtual machine&#xA; * @param reserved reserved&#xA; * @return JNI version needed by &#x27;mobileffmpeg&#x27; library&#xA; */&#xA;jint JNI_OnLoad(JavaVM *vm, void *reserved) {&#xA;    JNIEnv *env;&#xA;    if ((*vm)->GetEnv(vm, (void**)(&amp;env), JNI_VERSION_1_6) != JNI_OK) {&#xA;        LOGE("OnLoad failed to GetEnv for class %s.\n", configClassName);&#xA;        return JNI_FALSE;&#xA;    }&#xA;&#xA;    jclass localConfigClass = (*env)->FindClass(env, configClassName);&#xA;    if (localConfigClass == NULL) {&#xA;        LOGE("OnLoad failed to FindClass %s.\n", configClassName);&#xA;        return JNI_FALSE;&#xA;    }&#xA;...&#xA;

    &#xA;

    I can't see what the FindClass(C++) function returns, Android Studio doesn't want to stop on the JNI_OnLoad(C++) function during debug.

    &#xA;

    What are the assumptions why FindClass behavior is different on two phones ?

    &#xA;

  • avformat/http,tls : honor http_proxy command line variable for HTTPS

    23 août 2020, par Moritz Barsnick
    avformat/http,tls : honor http_proxy command line variable for HTTPS
    

    Add the "http_proxy" option and its handling to the "tls" protocol,
    pass the option from the "https" protocol.

    The "https" protocol already defines the "http_proxy" command line
    option, like the "http" protocol does. The "http" protocol properly
    honors that command line option in addition to the environment
    variable. The "https" protocol doesn't, because the proxy is
    evaluated in the underlying "tls" protocol, which doesn't have this
    option, and thus only handles the environment variable, which it
    has access to.

    Fixes #7223.

    Signed-off-by : Moritz Barsnick <barsnick@gmx.net>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/protocols.texi
    • [DH] libavformat/http.c
    • [DH] libavformat/tls.c
    • [DH] libavformat/tls.h