BuildTools
Qt
Src
Agave
Components
Elevator
Mastering
Plugins
ReplayGainAnalysis
WAT
Wasabi
Wasabi2
Winamp
aacPlus
aacdec
aacdec-mft
adpcm
alac
albumart
apev2
auth
bmp
burnlib
codesign
config
devices
external_dependencies
cpr
giflib
intel_ipp_6.1.1.035
libdiscid-0.6.2
libmp4v2
include
3gp.cpp
3gpmeta.cpp
API_CHANGES
INTERNALS
Makefile.am
Makefile.in
README
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_iSFM.cpp
atom_iods.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
isma.cpp
libmp4v2.def
libmp4v2.rc
libmp4v2.vcxproj
libmp4v2.vcxproj.filters
mp4.cpp
mp4.h
mp4array.h
mp4atom.cpp
mp4atom.h
mp4common.h
mp4container.cpp
mp4container.h
mp4descriptor.cpp
mp4descriptor.h
mp4file.cpp
mp4file.h
mp4file_io.cpp
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
resource.h
rtphint.cpp
rtphint.h
version.rc2
virtual_io.cpp
virtual_io.h
microsoft_directx_sdk_2010
openmpt-trunk
f263
filereader
freetypewac
gif
gracenote
h264
h264dec
id3v2
ie_plugin
installer
jpeg
libvp6
libvpShared
mp3-mpg123
mp4v
mpeg4dec
nde
nprt_plugin
ns-eel
ns-eel2
nsavi
nsmkv
nsutil
nsv
nsvdec_vp3
nsvdec_vp5
nsvdec_vp6
nswasabi
nu
omBrowser
pcm
pfc
playlist
plist
png
replicant
resources
tagz
tataki
theora
timer
vlb
vp32
vp6
vp8x
wbm
winampAll
winampa
xml
xspf
vcpkg-ports
.gitignore
LICENSE.md
README.md
automate-git.py
cef_x86.bat
install-packages.cmd
vcpkg_version_finder.py
winampAll_2019.sln
30 lines
897 B
C++
30 lines
897 B
C++
/*
|
|
* The contents of this file are subject to the Mozilla Public
|
|
* License Version 1.1 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy of
|
|
* the License at http://www.mozilla.org/MPL/
|
|
*
|
|
* Software distributed under the License is distributed on an "AS
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
|
|
* implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code is MPEG4IP.
|
|
*
|
|
* The Initial Developer of the Original Code is Cisco Systems Inc.
|
|
* Portions created by Cisco Systems Inc. are
|
|
* Copyright (C) Cisco Systems Inc. 2001. All Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
* Dave Mackie dmackie@cisco.com
|
|
*/
|
|
|
|
#include "mp4common.h"
|
|
|
|
MP4SmhdAtom::MP4SmhdAtom()
|
|
: MP4Atom("smhd")
|
|
{
|
|
AddVersionAndFlags();
|
|
AddReserved("reserved", 4);
|
|
}
|