summaryrefslogtreecommitdiffstats
path: root/debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2024-09-29 20:41:15 +0200
committerSlávek Banko <slavek.banko@axis.cz>2024-09-29 20:41:15 +0200
commitb2ba4403aab430c4b1bdb4304b62860a7ebb854b (patch)
tree2a8a5d8cc5c4441c320a793cafc19c3902bb68f0 /debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp
parentae40ab062f6aa8986d22012b3799062c9739ae88 (diff)
downloadextra-dependencies-b2ba4403aab430c4b1bdb4304b62860a7ebb854b.tar.gz
extra-dependencies-b2ba4403aab430c4b1bdb4304b62860a7ebb854b.zip
Remove mp4v2, which is no longer required.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp')
-rw-r--r--debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp49
1 files changed, 0 insertions, 49 deletions
diff --git a/debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp b/debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp
deleted file mode 100644
index 293a5546..00000000
--- a/debian/mp4v2/mp4v2-2.0.0~dfsg0/src/atom_mp4s.cpp
+++ /dev/null
@@ -1,49 +0,0 @@
-/*
- * 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 "src/impl.h"
-
-namespace mp4v2 {
-namespace impl {
-
-///////////////////////////////////////////////////////////////////////////////
-
-MP4Mp4sAtom::MP4Mp4sAtom(MP4File &file)
- : MP4Atom(file, "mp4s")
-{
- AddReserved(*this, "reserved1", 6);
- AddProperty(
- new MP4Integer16Property(*this, "dataReferenceIndex"));
-
- ExpectChildAtom("esds", Required, OnlyOne);
-}
-
-void MP4Mp4sAtom::Generate()
-{
- MP4Atom::Generate();
-
- ((MP4Integer16Property*)m_pProperties[1])->SetValue(1);
-}
-
-///////////////////////////////////////////////////////////////////////////////
-
-}
-} // namespace mp4v2::impl