Difference between revisions of "Library"

From VideoLAN Wiki
Jump to navigation Jump to search
m (Add page to Category:Glossary, nn other)
Line 1: Line 1:
{{wikipedia|Library (software)}}
+
{{wikipedia|Library (computing)}}
A '''library''' is a bundle of code which other programs can use. For example, if a program wanted to open a JPEG image file, it might ask a library to convert it to a format it understands, rather than write new code to decode JPEGs.
+
{{See also|Category:Libraries}}
  
Libraries are normally shared throughout your computer. Normally the library is only loaded into memory once, so if you're running two programs from the same library, you will save memory.
+
A '''library''' is a bundle of code which other programs can use. For example, if a program wanted to open a [[JPEG]] image file, it might ask a library to convert it to a format it understands, rather than write new code to decode JPEGs.
 +
 
 +
Libraries are normally shared throughout your computer. Normally the library is only loaded into memory once, so if you're running two programs from the same library, you will save memory.
  
 
Using libraries has many other advantages. If changes need to be made to some code in a library, you can just update the library file and all the programs will be updated.
 
Using libraries has many other advantages. If changes need to be made to some code in a library, you can just update the library file and all the programs will be updated.
Line 8: Line 10:
 
== Libraries used in VLC ==
 
== Libraries used in VLC ==
 
[http://developers.videolan.org/vlc/ developers.videolan.org] lists the libraries used in VLC. There are quite a lot!
 
[http://developers.videolan.org/vlc/ developers.videolan.org] lists the libraries used in VLC. There are quite a lot!
:'''See also [[:Category:Libraries]]'''
 
  
 +
[[Category:Glossary]]
 
[[Category:Libraries]]
 
[[Category:Libraries]]

Revision as of 05:28, 25 January 2019

A library is a bundle of code which other programs can use. For example, if a program wanted to open a JPEG image file, it might ask a library to convert it to a format it understands, rather than write new code to decode JPEGs.

Libraries are normally shared throughout your computer. Normally the library is only loaded into memory once, so if you're running two programs from the same library, you will save memory.

Using libraries has many other advantages. If changes need to be made to some code in a library, you can just update the library file and all the programs will be updated.

Libraries used in VLC

developers.videolan.org lists the libraries used in VLC. There are quite a lot!