
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (104)
-
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 (...) -
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 (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users.
Sur d’autres sites (16634)
-
ffmpeg/libav with Qt Creator - unresolved external symbol
12 septembre 2015, par AlexandreI am attempting to integrate
ffmpeg
into my C++/Qt application in Qt Creator. I have tried to make it as barebones as possible to isolate the problem.
I am using Zeranoe’s 32-bitffmpeg
dev build.Here is the error returned :
main.obj :-1 : error : LNK2019 : unresolved external symbol av_register_all referenced in function main
Here is
ffmpegTest.pro
:INCLUDEPATH += $$PWD/ffmpeg/include
TARGET = ffmpegTest
SOURCES += main.cpp
LIBS += -L$$PWD/ffmpeg/lib\
-lavcodec\
-lavformat\
-lavdevice\
-lswscale\
-lavutil\
-ldsound\And here is
main.cpp
:extern "C"{
#include <libavcodec></libavcodec>avcodec.h>
#include <libavformat></libavformat>avformat.h>
}
int main(int argc, char *argv[])
{
av_register_all();
}And here is a screenshot of the project directory :
http://i.stack.imgur.com/enqmg.png (I do not have enough reputation to embed an image)
Inside the
ffmpeg
directory is Zeranoe’s build. -
symbol lookup error with FFmpeg
8 mars 2017, par Tobias GeiselmannI am writing a Java application which uses FFmpeg. Therefore I use JNI to execute some native code. Compiling my shared object works without problems, but when I execute my code I get the following error :
/usr/local/jamaica-6.3-1/target/linux-x86_64/bin/jamaicavm_bin: symbol lookup error: /home/tobi/workspace/sender/lib/libsender.so: undefined symbol: av_frame_alloc
av_frame_alloc is a method of FFmpeg’s libavutil library. I linked my shared object against a few FFmpeg libraries (such as libavcodec, libavutil, etc.), but I’m not able to execute methods from libavutil.
When I run the nm command to list all the symbols from the object file, I get the following result :tobi@tobi:~/workspace/sender/lib$ nm libsender.so
U avcodec_alloc_context3@@LIBAVCODEC_54
U avcodec_copy_context@@LIBAVCODEC_54
U avcodec_find_decoder@@LIBAVCODEC_54
U avcodec_find_encoder@@LIBAVCODEC_54
U avcodec_open2@@LIBAVCODEC_54
U av_dump_format@@LIBAVFORMAT_54
U avformat_find_stream_info@@LIBAVFORMAT_54
U avformat_open_input@@LIBAVFORMAT_54
U av_frame_alloc
U av_image_alloc@@LIBAVUTIL_52
U av_log@@LIBAVUTIL_52
U av_register_all@@LIBAVFORMAT_54So, obviously, there is something wrong with av_frame_alloc. Why do I get a symbol lookup error every time I want to call av_frame_alloc ?
Thanks !
-
build : add Solaris symbol versioning
7 octobre 2015, par Sean McGovernbuild : add Solaris symbol versioning
The versioning facility in the Solaris linker differs from Linux in 3 ways :
1. It does not support globs in linker scripts for
symbol versioning — this is a GNU extension.2. The linker argument is ’-M’, instead of ’—version-script’.
3. It is picky about line endings.
Each symbol or directive must be on a line of it’s own.Let’s use make_sunver.pl from GCC to generate a version script that works
correctly with the Solaris linker. It’s function is to correctly expand the
globs in the original generated version script.Signed-off-by : Luca Barbato <lu_zero@gentoo.org>