Recherche avancée

Médias (0)

Mot : - Tags -/acrobat

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

Autres articles (66)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (6893)

  • Revision 01148d4548 : Further speed trade off adjustments. Small speed gain for speed 1. Quality is

    24 mars 2014, par Paul Wilkins

    Changed Paths :
     Modify /vp9/encoder/vp9_onyx_if.c



    Further speed trade off adjustments.

    Small speed gain for speed 1.

    Quality is generally a little up for speed 2.

    Speed 3 was similar to speed 4 but now positioned more
    evenly between 2 and 4 speed and quality wise.
    (opsnr +5.6% ssim +8.25% across all sets)

    Speed 4 is a little slower than before but sizable quality gains.
    (opsnr +3.7% ssim +6.8% across all sets)

    The code has been cleaned up a bit so that for each incremental
    speed step changes over the previous speed step are applied.
    This makes it easier to see what is changing from one setting to
    the next.

    Change-Id : I2d98d0d6230af23486adaec01908f58942a7cdeb

  • Android ffmpeg release :invalid address or address of corrupt block passed to dlfree

    11 janvier 2018, par jcguo

    guys.I’m new to Android JNI development as well as ffmpeg libs.

    With some struggles, I have managed to decode the real time H264 data, but meeting error when release the ffmpeg decoder :

    12-11 19:54:36.428  27959-27959/com.example.firmament.dji A/libc﹕ invalid address or address of corrupt block 0x6fa13868 passed to dlfree
    12-11 19:54:36.430  27959-27959/com.example.firmament.dji A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 27959 (e.firmament.dji)

    Some questions in stackoverflow mentioned that this error related to wrongly free some memory which was protected(same with Segment Fault).

    I checked the C JNI code for times and could not fix the bug, here is my code(release part) :

    jint Java_com_example_firmament_dji_XKZH264_release(JNIEnv *env, jobject obj)
    {
       if (pFrame != NULL) {
           av_free(pFrame);
           pFrame = NULL;
       }

       if (pCodecContext != NULL) {
           avcodec_close(pCodecContext);
           av_free(pCodecContext);
           pCodecContext = NULL;
       }

       if (pParserContext != NULL) {
           av_parser_close(pParserContext);
           av_free(pParserContext);
           pParserContext = NULL;
       }

       DeleteYUVTab();

       return 1;
    }

    void DeleteYUVTab()
    {
       if (colortab != NULL) {
           av_free(colortab);
           colortab = NULL;
       }

       if (rgb_2_pix != NULL) {
           av_free(rgb_2_pix);
           colortab = NULL;
       }
    }
  • Android ffmpeg release :invalid address or address of corrupt block passed to dlfree

    22 mai 2015, par jcguo

    guys.I’m new to Android JNI development as well as ffmpeg libs.

    With some struggles, I have managed to decode the real time H264 data, but meeting error when release the ffmpeg decoder :

    12-11 19:54:36.428  27959-27959/com.example.firmament.dji A/libc﹕ invalid address or address of corrupt block 0x6fa13868 passed to dlfree
    12-11 19:54:36.430  27959-27959/com.example.firmament.dji A/libc﹕ Fatal signal 11 (SIGSEGV) at 0xdeadbaad (code=1), thread 27959 (e.firmament.dji)

    Some questions in stackoverflow mentioned that this error related to wrongly free some memory which was protected(same with Segment Fault).

    I checked the C JNI code for times and could not fix the bug, here is my code(release part) :

    jint Java_com_example_firmament_dji_XKZH264_release(JNIEnv *env, jobject obj)
    {
       if (pFrame != NULL) {
           av_free(pFrame);
           pFrame = NULL;
       }

       if (pCodecContext != NULL) {
           avcodec_close(pCodecContext);
           av_free(pCodecContext);
           pCodecContext = NULL;
       }

       if (pParserContext != NULL) {
           av_parser_close(pParserContext);
           av_free(pParserContext);
           pParserContext = NULL;
       }

       DeleteYUVTab();

       return 1;
    }

    void DeleteYUVTab()
    {
       if (colortab != NULL) {
           av_free(colortab);
           colortab = NULL;
       }

       if (rgb_2_pix != NULL) {
           av_free(rgb_2_pix);
           colortab = NULL;
       }
    }