
Recherche avancée
Autres articles (99)
-
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 v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
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 (...)
Sur d’autres sites (11254)
-
avformat/utils : Avoid copying packets unnecessarily
20 septembre 2019, par Andreas Rheinhardtavformat/utils : Avoid copying packets unnecessarily
Up until now, read_frame_internal in avformat/utils.c uses a spare
packet on the stack that serves no real purpose : At no point in this
function is there a need for another packet besides the packet destined
for output :
1. If the packet doesn't need a parser, but is output as is, the content
of the spare packet (that at this point contains a freshly read packet)
is simply copied into the output packet (via simple assignment, not
av_packet_move_ref, thereby confusing ownership).
2. If the packet needs parsing, the spare packet will be reset after
parsing and any packets resulting from the packet read will be put into
a packet list ; the output packet is not used here at all.
3. If the stream should be discarded, the spare packet will be
unreferenced ; the output packet is not used here at all either.Therefore the spare packet and the copies can be removed in principle.
In practice, one more thing needs to be taken care of : If ff_read_packet
failed, the output packet was not affected, now it is. But given that
ff_read_packet returns a blank (as if reset via av_packet_unref) packet
on failure, there is no problem from this side either.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Merge commit '612cc0712836af2f025b0c68b11da29b9f259d5a'
26 septembre 2017, par James AlmerMerge commit '612cc0712836af2f025b0c68b11da29b9f259d5a'
* commit '612cc0712836af2f025b0c68b11da29b9f259d5a' :
pgssubdec : reset rle_data_len/rle_remaining_len on allocation errorThis commit is a noop, see 842e98b4d83d8cf297e2bc2761f1f47eb89e49e4
Merged-by : James Almer <jamrial@gmail.com>
-
Merge commit ’d3e4d406b020b0464486318aceda08bd8f69ca41’
16 mars 2017, par James AlmerMerge commit ’d3e4d406b020b0464486318aceda08bd8f69ca41’
* commit ’d3e4d406b020b0464486318aceda08bd8f69ca41’ :
h264dec : reset nb_slice_ctx_queued for hwaccel decodingThis commit is a noop, see 744801989099df26e90b00062c645969c5347533
Merged-by : James Almer <jamrial@gmail.com>