Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (90)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • 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 ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (13043)

  • Revision b50e518ab6 : Require webm when explicitly requested https://code.google.com/p/webm/issues/de

    31 janvier 2015, par Johann

    Changed Paths :
     Modify /vpxenc.c



    Require webm when explicitly requested

    https://code.google.com/p/webm/issues/detail?id=906

    Change-Id : I72841078ff81152d21d84ccf4d5548e757685a6d

  • Revision cbf394574d : Merge "Speed up iht8x8 by rearranging instructions. Speed improves from 282% to

    16 septembre 2013, par hkuang

    Merge "Speed up iht8x8 by rearranging instructions. Speed improves from 282% to
    302% faster based on assembly-perf."

  • ffmpeg development recompile only changed part on windows

    8 décembre 2020, par Harry

    New to ffmpeg development, i am trying to develop a patch for a specific demuxer in avformat and sure i want to be able to test my changes without recompiling all parts of ffmpeg again as it takes about an hour. My toolchain is set up as per https://ffmpeg.org/platform.html 4.1.1. Using mingw64.exe, it was no problem to compile an initial version :

    


    ./configure --disable-static --enable-shared --enable-gpl
make -j4


    


    Voila, i have a shared build, means the .exe and .dll files are built and i can run the program successfully.

    


    Now when i change some code , e.g. in libavformat/pcm.c, i can recompile this part easily by doing

    


    make pcm.o


    


    make will even recognize automatically if there were changes to the code and only rebuild the single .o file. But when executing make in the root path of the ffmpeg source again, it will always recompile all .o files which of course something i want to avoid.

    


    I tried disabling some components e.g. by doing

    


    ./configure --disable-static --enable-shared --enable-avisynth --enable-gpl --disable-avcodec --disable-avdevice --disable-avfilter


    


    But this way, i am only getting a new avutil.dll, avscale.dll and avresample.dll but no avformat.dll (which i dont understand because i dont disable avformat), also it seems to recompile the parts instead of re-using and just link the existing .o files together.

    


    How could i tell the make command not to compile anything but instead just link all the existing .o files - and only for avformat instead of all parts ?