Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (88)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, 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 (...)

  • La gestion des forums

    3 novembre 2011, par

    Si les forums sont activés sur le site, les administrateurs ont la possibilité de les gérer depuis l’interface d’administration ou depuis l’article même dans le bloc de modification de l’article qui se trouve dans la navigation de la page.
    Accès à l’interface de modération des messages
    Lorsqu’il est identifié sur le site, l’administrateur peut procéder de deux manières pour gérer les forums.
    S’il souhaite modifier (modérer, déclarer comme SPAM un message) les forums d’un article particulier, il a à sa (...)

Sur d’autres sites (11613)

  • ffmpeg avcodec_decode_video2 is crashing the Android app

    6 février 2014, par Azhagiri

    HI i am using ffmpeg library in my android app. Using the library from
    https://github.com/churnlabs/android-ffmpeg-sample

    My application crashes when i am calling the avcodec_decode_video2() function. My code

       int decode_packet(int *got_frame, int cached){
       int ret = 0;
       int decoded = packet.size;
       if (packet.stream_index == videoStream) {
       /* decode video frame */
       ret = avcodec_decode_video2(pCodecCtx, pFrame, got_frame, &packet);
       if (ret < 0) {
       LOGE("Error decoding video frame");
       return ret;
       }
       if (*got_frame) {
            av_image_copy(video_dst_data, video_dst_linesize, (const uint8_t **)(pFrame->data), pFrame->linesize, pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height);
           /* write to rawvideo file */
            LOGE("Frame Count [%d]",video_frame_count++);
       //  fwrite(video_dst_data[0], 1, video_dst_bufsize, videoOut);
       }
       return decoded;
       }
    }

    The app crashes at the line

    ret = avcodec_decode_video2(pCodecCtx, pFrame, got_frame, &packet);

    Help to get resolve the problem. I'll attach the ndk-stack output also

    ********** Crash dump: **********
    Build fingerprint: 'samsung/ja3gxx/ja3g:4.2.2/JDQ39/I9500XWUBMG5:user/release-keys'
    pid: 12494, tid: 12512, name: Thread-1088  >>> com.churnlabs.ffmpegsample <<<
    signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000020
    Stack frame #00  pc 00285804  /data/app-lib/com.churnlabs.ffmpegsample-1/libffmpegutils.so (avcodec_decode_video2+60)
    Stack frame #01  pc 00285854  /data/app-lib/com.churnlabs.ffmpegsample-1/libffmpegutils.so (avcodec_decode_video2+140)
    Crash dump is completed

    From this i can find the function which crashes but i can't find the reason for the crash and how to get out from that

  • ffmpeg avcodec_decode_video2 is crashing the andrid app

    18 octobre 2013, par Azhagiri

    HI i am using ffmpeg library in my android app. Using the library from
    https://github.com/churnlabs/android-ffmpeg-sample

    My application crashes when i am calling the avcodec_decode_video2() function. My code

       int decode_packet(int *got_frame, int cached){
       int ret = 0;
       int decoded = packet.size;
       if (packet.stream_index == videoStream) {
       /* decode video frame */
       ret = avcodec_decode_video2(pCodecCtx, pFrame, got_frame, &packet);
       if (ret < 0) {
       LOGE("Error decoding video frame");
       return ret;
       }
       if (*got_frame) {
            av_image_copy(video_dst_data, video_dst_linesize, (const uint8_t **)(pFrame->data), pFrame->linesize, pCodecCtx->pix_fmt, pCodecCtx->width, pCodecCtx->height);
           /* write to rawvideo file */
            LOGE("Frame Count [%d]",video_frame_count++);
       //  fwrite(video_dst_data[0], 1, video_dst_bufsize, videoOut);
       }
       return decoded;
       }
    }

    The app crashes at the line

    ret = avcodec_decode_video2(pCodecCtx, pFrame, got_frame, &packet);

    Help to get resolve the problem. I'll attach the ndk-stack output also

    ********** Crash dump: **********
    Build fingerprint: 'samsung/ja3gxx/ja3g:4.2.2/JDQ39/I9500XWUBMG5:user/release-keys'
    pid: 12494, tid: 12512, name: Thread-1088  >>> com.churnlabs.ffmpegsample <<<
    signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00000020
    Stack frame #00  pc 00285804  /data/app-lib/com.churnlabs.ffmpegsample-1/libffmpegutils.so (avcodec_decode_video2+60)
    Stack frame #01  pc 00285854  /data/app-lib/com.churnlabs.ffmpegsample-1/libffmpegutils.so (avcodec_decode_video2+140)
    Crash dump is completed

    From this i can find the function which crashes but i can't find the reason for the crash and how to get out from that

  • avformat/mov_muxer : Extended MOV muxer to handle EVC video content

    15 juin 2023, par Dawid Kozinski
    avformat/mov_muxer : Extended MOV muxer to handle EVC video content
    

    - Changes in mov_write_video_tag function to handle EVC elementary stream
    - Provided structure EVCDecoderConfigurationRecord that specifies the decoder configuration information for ISO/IEC 23094-1 video content

    Signed-off-by : Dawid Kozinski <d.kozinski@samsung.com>

    • [DH] libavformat/Makefile
    • [DH] libavformat/evc.c
    • [DH] libavformat/evc.h
    • [DH] libavformat/isom_tags.c
    • [DH] libavformat/movenc.c