Archived
1
0
This repository has been archived on 2024-10-17. You can view files and clone it, but cannot push or open issues or pull requests.
winamp/Src/external_dependencies/libmp4v2
..
include
3gp.cpp
3gpmeta.cpp
API_CHANGES
atom_alac.cpp
atom_amr.cpp
atom_avc1.cpp
atom_avcC.cpp
atom_bitr.cpp
atom_btrt.cpp
atom_chpl.cpp
atom_co64.cpp
atom_cprt.cpp
atom_ctts.cpp
atom_d263.cpp
atom_damr.cpp
atom_dimm.cpp
atom_dinf.cpp
atom_dmax.cpp
atom_dmed.cpp
atom_dref.cpp
atom_drep.cpp
atom_edts.cpp
atom_elst.cpp
atom_enca.cpp
atom_encv.cpp
atom_esds.cpp
atom_free.cpp
atom_frma.cpp
atom_ftyp.cpp
atom_gmin.cpp
atom_hdlr.cpp
atom_hinf.cpp
atom_hmhd.cpp
atom_hnti.cpp
atom_href.cpp
atom_iKMS.cpp
atom_iods.cpp
atom_iSFM.cpp
atom_maxr.cpp
atom_mdat.cpp
atom_mdhd.cpp
atom_mdia.cpp
atom_meta.cpp
atom_mfhd.cpp
atom_minf.cpp
atom_moof.cpp
atom_moov.cpp
atom_mp4a.cpp
atom_mp4s.cpp
atom_mp4v.cpp
atom_mvex.cpp
atom_mvhd.cpp
atom_nmhd.cpp
atom_nump.cpp
atom_ohdr.cpp
atom_payt.cpp
atom_pmax.cpp
atom_root.cpp
atom_rtp.cpp
atom_s263.cpp
atom_schi.cpp
atom_schm.cpp
atom_sdp.cpp
atom_sinf.cpp
atom_smhd.cpp
atom_smi.cpp
atom_snro.cpp
atom_sound.cpp
atom_standard.cpp
atom_stbl.cpp
atom_stco.cpp
atom_stdp.cpp
atom_stsc.cpp
atom_stsd.cpp
atom_stsh.cpp
atom_stss.cpp
atom_stsz.cpp
atom_stts.cpp
atom_stz2.cpp
atom_text.cpp
atom_tfhd.cpp
atom_tims.cpp
atom_tkhd.cpp
atom_tmax.cpp
atom_tmin.cpp
atom_tpyl.cpp
atom_traf.cpp
atom_trak.cpp
atom_tref.cpp
atom_treftype.cpp
atom_trex.cpp
atom_trpy.cpp
atom_trun.cpp
atom_tsro.cpp
atom_udta.cpp
atom_url.cpp
atom_urn.cpp
atom_video.cpp
atom_vmhd.cpp
atoms.h
descriptors.cpp
descriptors.h
INTERNALS
isma.cpp
libmp4v2.def
libmp4v2.rc
libmp4v2.vcxproj
libmp4v2.vcxproj.filters
Makefile.am
Makefile.in
mp4.cpp
mp4.h
mp4array.h
mp4atom.cpp
mp4atom.h
mp4common.h
mp4container.cpp
mp4container.h
mp4descriptor.cpp
mp4descriptor.h
mp4file_io.cpp
mp4file.cpp
mp4file.h
mp4info.cpp
mp4meta.cpp
mp4property.cpp
mp4property.h
mp4track.cpp
mp4track.h
mp4util.cpp
mp4util.h
need_for_win32.c
ocidescriptors.cpp
ocidescriptors.h
odcommands.cpp
odcommands.h
qosqualifiers.cpp
qosqualifiers.h
README
resource.h
rtphint.cpp
rtphint.h
version.rc2
virtual_io.cpp
virtual_io.h

July 18, 2002

MP4V2 Library
=============

This library provides functions to read, create, and modify mp4 files.

The detailed documentation of the library is available as a set of man pages 
in mpeg4ip/doc/mp4v2. The MP4.3 man page gives an overview of the library.

Alternately mp4.h in this directory specifies the complete API.

The file INTERNALS provides an overview of what is happening behind the API. 
Note that although we using C++ object oriented features internally, that's 
all hidden behind a flat C style API (with C linkage conventions).

The test and util subdirectories contain some simple programs that use 
this library.

Once make install is run, to use this library, you should:
To use this library in your application, it should be sufficient to:

1) add the installed library to your final link:
	e.g. gcc ... -o foo foo.cpp -lmp4v2

2) include mp4.h into your code,
	e.g. #include <mp4.h>