1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/content/media/encoder/fmp4_muxer/AMRBox.h Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,50 @@ 1.4 +/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-*/ 1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this file, 1.7 + * You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.8 + 1.9 +#ifndef AMRBOX_h_ 1.10 +#define AMRBOX_h_ 1.11 + 1.12 +#include "nsTArray.h" 1.13 +#include "MuxerOperation.h" 1.14 + 1.15 +namespace mozilla { 1.16 + 1.17 +class ISOControl; 1.18 + 1.19 +// 3GPP TS 26.244 6.7 'AMRSpecificBox field for AMRSampleEntry box' 1.20 +// Box type: 'damr' 1.21 +class AMRSpecificBox : public Box { 1.22 +public: 1.23 + // 3GPP members 1.24 + nsTArray<uint8_t> amrDecSpecInfo; 1.25 + 1.26 + // MuxerOperation methods 1.27 + nsresult Generate(uint32_t* aBoxSize) MOZ_OVERRIDE; 1.28 + nsresult Write() MOZ_OVERRIDE; 1.29 + 1.30 + // AMRSpecificBox methods 1.31 + AMRSpecificBox(ISOControl* aControl); 1.32 + ~AMRSpecificBox(); 1.33 +}; 1.34 + 1.35 +// 3GPP TS 26.244 6.5 'AMRSampleEntry box' 1.36 +// Box type: 'sawb' 1.37 +class AMRSampleEntry : public AudioSampleEntry { 1.38 +public: 1.39 + // 3GPP members 1.40 + nsRefPtr<AMRSpecificBox> amr_special_box; 1.41 + 1.42 + // MuxerOperation methods 1.43 + nsresult Generate(uint32_t* aBoxSize) MOZ_OVERRIDE; 1.44 + nsresult Write() MOZ_OVERRIDE; 1.45 + 1.46 + // AMRSampleEntry methods 1.47 + AMRSampleEntry(ISOControl* aControl); 1.48 + ~AMRSampleEntry(); 1.49 +}; 1.50 + 1.51 +} 1.52 + 1.53 +#endif // AMRBOX_h_