
Recherche avancée
Autres articles (76)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (13016)
-
avcodec/av1_vaapi : fixed a decoding corruption issue
2 novembre 2022, par Ruijing Dongavcodec/av1_vaapi : fixed a decoding corruption issue
In av1_spec.pdf page 38/669, there is a sentence below :
if ( frame_type == KEY_FRAME && show_frame )
for ( i = 0 ; i < NUM_REF_FRAMES ; i++)
RefValid[ i ] = 0
......
......
This shows that the condition of invalidating current
DPB frames should be the coming frame_type is KEY_FRAME plus
show_frame is equal to 1. Otherwise, some of the frames
in sequence after KEY_FRAME still refer to the reference frames
before KEY_FRAME, and if these before KEY_FRAME reference
frames were invalidated, these frames could not find their
reference frames, and it could cause image corruption.Mesa fix is in https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/19386
Reviewed-by : Fei Wang <fei.w.wang@intel.com>
Signed-off-by : Ruijing Dong <ruijing.dong@amd.com> -
Merge commit ’7a745f014f528d1001394ae4d2f4ed1a20bf7fa2’
13 novembre 2016, par Hendrik Leppkes -
Linking shared libraries (.so) in Android Studio 2.2.2
22 novembre 2016, par fadiI am really stuck and desperate for an answer.
I have looked pretty much everywhere online to solve this problem with no real success.Basically I have compiled ffmpeg for android and I am trying to use the (
.so
) files inside Android Studio 2.2.2.The problem is that I keep getting this error when I try to compile my code
Please note that my code worked perfectly under MS Visual Studio and I am certain it works as it should.I am thinking this error means that I am not linking my shared libraries (
.so
) files against my.cpp
file (correct me if I am wrong).Things I tried :
-
I have tried including my
.so
files insidemain/jniLibs
, and still didn’t work. -
I put the
.so
files insideapp/libs
, and still no success. -
Provided linking rules in cmake for example :
add_library(B SHARED IMPORTED)
set_target_properties(B PROPERTIES
IMPORTED_LOCATION src/main/jniLibs/armeabi-v7a/libavformat-55.so
)
include_directories(src/main/cpp/include/)
target_link_libraries(native-lib B)This gave me another error which looks like this :
Error:error: 'src/main/jniLibs/armeabi-v7a/libavformat-55.so', needed by '../../../../build/intermediates/cmake/debug/obj/armeabi-v7a/libnative-lib.so', missing and no known rule to make it
Here is the structure of my project tree :
I really need help.
-