netwerk/protocol/rtsp/controller/RtspMetaData.h

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
michael@0 2 /* vim: set sw=2 ts=8 et tw=80 : */
michael@0 3 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 4 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 6
michael@0 7 #ifndef RtspMetaData_h
michael@0 8 #define RtspMetaData_h
michael@0 9
michael@0 10 #include "mozilla/net/PRtspController.h"
michael@0 11 #include "nsIStreamingProtocolController.h"
michael@0 12 #include "nsCOMPtr.h"
michael@0 13 #include "nsString.h"
michael@0 14
michael@0 15 namespace mozilla {
michael@0 16 namespace net {
michael@0 17
michael@0 18 class RtspMetaData : public nsIStreamingProtocolMetaData
michael@0 19 {
michael@0 20 public:
michael@0 21 NS_DECL_THREADSAFE_ISUPPORTS
michael@0 22 NS_DECL_NSISTREAMINGPROTOCOLMETADATA
michael@0 23
michael@0 24 RtspMetaData();
michael@0 25 ~RtspMetaData();
michael@0 26
michael@0 27 nsresult DeserializeRtspMetaData(const InfallibleTArray<RtspMetadataParam>& metaArray);
michael@0 28
michael@0 29 private:
michael@0 30 uint32_t mFrameType;
michael@0 31 uint32_t mIndex;
michael@0 32 uint32_t mTotalTracks;
michael@0 33 uint32_t mWidth;
michael@0 34 uint32_t mHeight;
michael@0 35 uint64_t mDuration;
michael@0 36 uint32_t mSampleRate;
michael@0 37 uint64_t mCurrentTimeStamp;
michael@0 38 uint32_t mChannelCount;
michael@0 39 nsCString mMimeType;
michael@0 40 nsCString mESDS;
michael@0 41 nsCString mAVCC;
michael@0 42 };
michael@0 43
michael@0 44 } // namespace net
michael@0 45 } // namespace mozilla
michael@0 46
michael@0 47 #endif // RtspMetaData_h

mercurial