
Recherche avancée
Autres articles (55)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
Submit enhancements and plugins
13 avril 2011If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.
Sur d’autres sites (9044)
-
Revision 9d9b70a36a : Allow backward prob update in external mode info coding flow This commit enable
21 juillet 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_encodeframe.c
Allow backward prob update in external mode info coding flowThis commit enables vpxenc to properly count the coded motion
vector related information for backward update. This allows the
coding flow using external mode info to use backward probability
update. In the short test clip, over 10% bit-rate saving is
observed at no distortion change.Change-Id : Ie27e97114ab91c3d95ba7b5554d617d226db5e20
-
avcodec/magicyuv : Don't waste stack space
23 septembre 2020, par Andreas Rheinhardtavcodec/magicyuv : Don't waste stack space
Now that the HuffEntries are no longer sorted by the MagicYUV decoder,
their symbols are trivial : The symbol of the element with index i is i.
They can therefore be removed. Furthermore, despite the length of the
codes being in the range 1..32 bits, the actual value of the codes is
<= 4096 (for 12 bit content). The reason for this is that the longer
codes are on the left side of the tree, so that the higher bits of
these codes are simply zero. By using an uint16_t for the codes and
removing the symbols entry, the size of each HuffEntry is decreased from
eight to four, saving 16KB of stack space.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
Xcode shows error when trying to use FFMpeg
8 octobre 2019, par Tony.LeeI try to use FFMpeg in my iOS project. It’s weird when I import
libavcodec/avcodec.h
and
libavformat/avformat.h
, Xcode show error : " ’TestViewController’ cannot use ’super’ because it is a root class ".Everything is OK before I import the two file above and even I comment these two line codes, it shows this error still. And one more thing, Xcode cannot autocomplete to
NSLog
when I typensl
.Codes can run without any problem, but when writing codes it show those annoying error messages.