Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (58)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (8246)

  • lavfi/af_channelmap : fix memory leak

    4 décembre 2015, par Ganesh Ajjanagadde
    lavfi/af_channelmap : fix memory leak
    

    Recent commits 6aaac24d72a7da631173209841a3944fcb4a3309 and
    3835554bf8ed78539a3492c239f979c0ab03a15f made progress towards cleaning
    up usage of the formats API, and in particular fixed possible NULL pointer
    dereferences.

    This commit addresses the issue of possible resource leaks when some intermediate
    call fails.

    Tested with valgrind —leak-check=full —show-leak-kinds=all, and manual simulation
    of malloc/realloc failures.

    Fixes : CID 1338330.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/af_channelmap.c
  • lavfi/vf_alphamerge : fix memory leaks

    4 décembre 2015, par Ganesh Ajjanagadde
    lavfi/vf_alphamerge : fix memory leaks
    

    Recent commits 6aaac24d72a7da631173209841a3944fcb4a3309 and
    3835554bf8ed78539a3492c239f979c0ab03a15f made progress towards cleaning
    up usage of the formats API, and in particular fixed possible NULL pointer
    dereferences.

    This commit addresses the issue of possible resource leaks when some intermediate
    call fails.

    Tested with valgrind —leak-check=full —show-leak-kinds=all, and manual simulation
    of malloc/realloc failures.

    Fixes : CID 1338326, 1338329.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavfilter/vf_alphamerge.c
  • ffmpeg compilation Error

    14 juillet 2016, par sivamnatesan3

    I have been trying to compile ffmpeg on my raspberry-pi, but it gives me a lot of warnings like (codec is deprecated) especially while run sudo make.

    pi@raspberrypi:/usr/src/ffmpeg $ sudo make &amp;&amp; sudo make install

    ....... lots of successful execution here ......


    CC  libavfilter/avf_showfreqs.o
    libavfilter/lavfutils.c: In function ‘ff_load_image’:
    libavfilter/lavfutils.c:53:5: warning: ‘codec’ is deprecated (declared at    ./libavformat/avformat.h:880) [-Wdeprecated-declarations]
    codec_ctx = format_ctx->streams[0]->codec;
    ^
    libavfilter/lavfutils.c:79:5: warning: ‘avcodec_decode_video2’ is deprecated   (declared at ./libavcodec/avcodec.h:4763) [-Wdeprecated-declarations]
    ret = avcodec_decode_video2(codec_ctx, frame, &amp;frame_decoded, &amp;pkt);
    ^
    CC  libavfilter/lswsutils.o
    CC  libavfilter/opencl_allkernels.o
    CC  libavfilter/pthread.o
    CC  libavfilter/setpts.o
    CC  libavfilter/settb.o
    CC  libavfilter/split.o
    CC  libavfilter/src_movie.o
    libavfilter/src_movie.c: In function ‘movie_push_frame’:
    libavfilter/src_movie.c:524:9: warning: ‘avcodec_decode_video2’ is deprecated (declared at ./libavcodec/avcodec.h:4763) [-Wdeprecated-declarations]
        ret = avcodec_decode_video2(st->codec_ctx, frame, &amp;got_frame, pkt);
        ^
    libavfilter/src_movie.c:527:9: warning: ‘avcodec_decode_audio4’ is deprecated (declared at ./libavcodec/avcodec.h:4714) [-Wdeprecated-declarations]
        ret = avcodec_decode_audio4(st->codec_ctx, frame, &amp;got_frame, pkt);
        ^
    CC  libavfilter/transform.o
    CC  libavfilter/trim.o
    CC  libavfilter/vaf_spectrumsynth.o
    libavfilter/vaf_spectrumsynth.c: In function ‘try_push_frame’:
    libavfilter/vaf_spectrumsynth.c:370:19: warning: variable ‘ret’ set but not used [-Wunused-but-set-variable]
    int ch, n, i, ret;                 ^
    CC  libavfilter/vf_alphamerge.o
    CC  libavfilter/vf_aspect.o
    CC  libavfilter/vf_atadenoise.o
    CC  libavfilter/vf_colorlevels.o
    CC  libavfilter/vf_colorspace.o
    libavfilter/vf_colorspace.c: In function ‘fill_rgb2xyz_table’:
    libavfilter/vf_colorspace.c:360:22: warning: passing argument 1 of ‘invert_matrix3x3’ from incompatible pointer type
    invert_matrix3x3(rgb2xyz, i);
                     ^
    libavfilter/vf_colorspace.c:277:13: note: expected ‘const double (*)[3]’ but argument is of type ‘double (*)[3]’
    static void invert_matrix3x3(const double in[3][3], double out[3][3])
            ^
    libavfilter/vf_colorspace.c: In function ‘fill_whitepoint_conv_table’:
    libavfilter/vf_colorspace.c:424:21: warning: passing argument 3 of ‘mul3x3’   from incompatible pointer type
    mul3x3(tmp, ma, fac);
    libavfilter/vf_colorspace.c:376:13: note: expected ‘const double (*)[3]’ but argument is of type ‘double (*)[3]’
    static void mul3x3(double dst[3][3], const double src1[3][3], const double src2[3][3])
            ^
    libavfilter/vf_colorspace.c:425:17: warning: passing argument 2 of ‘mul3x3’ from incompatible pointer type
    mul3x3(out, tmp, mai);
                ^
    libavfilter/vf_colorspace.c:376:13: note: expected ‘const double (*)[3]’ but argument is of type ‘double (*)[3]’
    static void mul3x3(double dst[3][3], const double src1[3][3], const double src2[3][3])
            ^
    libavfilter/vf_colorspace.c:425:22: warning: passing argument 3 of ‘mul3x3’ from incompatible pointer type
    mul3x3(out, tmp, mai);
                     ^
    libavfilter/vf_colorspace.c:376:13: note: expected ‘const double (*)[3]’ but argument is of type ‘double (*)[3]’
    static void mul3x3(double dst[3][3], const double src1[3][3], const double src2[3][3])
            ^
    libavfilter/vf_colorspace.c: In function ‘convert’:
    libavfilter/vf_colorspace.c:480:20: warning: passing argument 7 of ‘s->yuv2yuv’ from incompatible pointer type
                   s->yuv2yuv_coeffs, s->yuv_offset);
                   ^
    libavfilter/vf_colorspace.c:480:20: note: expected ‘const int16_t (*)[3][8]’ but argument is of type ‘int16_t (*)[3][8]’
    libavfilter/vf_colorspace.c:480:39: warning: passing argument 8 of ‘s->yuv2yuv’ from incompatible pointer type
                   s->yuv2yuv_coeffs, s->yuv_offset);
                                      ^
    libavfilter/vf_colorspace.c:480:39: note: expected ‘const int16_t (*)[8]’ but argument is of type ‘int16_t (*)[8]’
    libavfilter/vf_colorspace.c:502:20: warning: passing argument 7 of ‘s->yuv2rgb’ from incompatible pointer type
                   s->yuv2rgb_coeffs, s->yuv_offset[0]);
                   ^
    libavfilter/vf_colorspace.c:502:20: note: expected ‘const int16_t (*)[3][8]’ but argument is of type ‘int16_t (*)[3][8]’
    libavfilter/vf_colorspace.c:506:62: warning: passing argument 5 of ‘s->dsp.multiply3x3’ from incompatible pointer type
                s->dsp.multiply3x3(rgb, s->rgb_stride, w, h, s->lrgb2lrgb_coeffs);
                                                             ^
    libavfilter/vf_colorspace.c:506:62: note: expected ‘const int16_t (*)[3][8]’ but argument is of type ‘int16_t (*)[3][8]’
    libavfilter/vf_colorspace.c:511:28: warning: passing argument 7 of ‘s->rgb2yuv_fsb’ from incompatible pointer type
                           s->rgb2yuv_coeffs, s->yuv_offset[1], s->dither_scratch);
                           ^
    libavfilter/vf_colorspace.c:511:28: note: expected ‘const int16_t (*)[3][8]’ but argument is of type ‘int16_t (*)[3][8]’
    libavfilter/vf_colorspace.c:514:24: warning: passing argument 7 of ‘s->rgb2yuv’ from incompatible pointer type
                       s->rgb2yuv_coeffs, s->yuv_offset[1]);
                       ^
    libavfilter/vf_colorspace.c:514:24: note: expected ‘const int16_t (*)[3][8]’ but argument is of type ‘int16_t (*)[3][8]’
    libavfilter/vf_colorspace.c: In function ‘create_filtergraph’:
    libavfilter/vf_colorspace.c:614:30: warning: passing argument 1 of ‘invert_matrix3x3’ from incompatible pointer type

                    ^

    and it still continues....

    How to solve it ? what might be the problem for this warnings ?