
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (80)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 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, parMediaSPIP 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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque 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 (7409)
-
MSVC linker removes used functions from external libraries
14 janvier 2021, par PikNikI've added to my Qt+MSVC Visual Studio project dynamically linked FFmpeg libraries. But it seems linker removes any imports from these libraries with /OPT:REF optimization and therefore program crashes. With /OPT:NOREF all works fine.


Example results from dumpbin /all without /OPT:REF :




avutil-56.dll

561F38 Import Address Table

76F39C Import Name Table

0 time date stamp

0 Index of first forwarder reference

71 av_dict_set

AB av_frame_alloc



Example results from dumpbin /all with /OPT:REF :




avutil-56.dll

500C30 Import Address Table

6FBC10 Import Name Table

0 time date stamp

0 Index of first forwarder reference



What can be a cause of this problem ?


-
how to use x264 dll in another project
5 août 2014, par Hadi Rasekhenter code here I want to use x264 in my project. There is some line in the code said :
/* Application developers planning to link against a shared library version of
* libx264 from a Microsoft Visual Studio or similar development environment
* will need to define X264_API_IMPORTS before including this header.
* This clause does not apply to MinGW, similar development environments, or non
* Windows platforms. */But I don’t get this line :
define X264_API_IMPORTS before including this headerWe can create x264 dll by its configuration and make
./configure --enable-shared
makebut I can not use the dll in my Qt Project.
I can make my own dll (in another code) and use it in the project.
But when I start to use x264 dll in my project I get the following error :C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:
'pulldown_frame_duration' was not declared in this scope
qDebug() << pulldown_frame_duration[1];
^ -
how to use x264 dll in another project
5 août 2014, par Hadi Rasekhenter code here I want to use x264 in my project. There is some line in the code said :
/* Application developers planning to link against a shared library version of
* libx264 from a Microsoft Visual Studio or similar development environment
* will need to define X264_API_IMPORTS before including this header.
* This clause does not apply to MinGW, similar development environments, or non
* Windows platforms. */But I don’t get this line :
define X264_API_IMPORTS before including this headerWe can create x264 dll by its configuration and make
./configure --enable-shared
makebut I can not use the dll in my Qt Project.
I can make my own dll (in another code) and use it in the project.
But when I start to use x264 dll in my project I get the following error :C:\DataHiding\SourceCode2\GUI\DataHiding\mainwindow.cpp:10: error:
'pulldown_frame_duration' was not declared in this scope
qDebug() << pulldown_frame_duration[1];
^