Home | History | Annotate | Download | only in stagefright
      1 /*
      2  * Copyright (C) 2009 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 #ifndef META_DATA_H_
     18 
     19 #define META_DATA_H_
     20 
     21 #include <sys/types.h>
     22 
     23 #include <stdint.h>
     24 
     25 #include <utils/RefBase.h>
     26 #include <utils/KeyedVector.h>
     27 
     28 namespace android {
     29 
     30 // The following keys map to int32_t data unless indicated otherwise.
     31 enum {
     32     kKeyMIMEType          = 'mime',  // cstring
     33     kKeyWidth             = 'widt',  // int32_t
     34     kKeyHeight            = 'heig',  // int32_t
     35     kKeyRotation          = 'rotA',  // int32_t (angle in degrees)
     36     kKeyIFramesInterval   = 'ifiv',  // int32_t
     37     kKeyStride            = 'strd',  // int32_t
     38     kKeySliceHeight       = 'slht',  // int32_t
     39     kKeyChannelCount      = '#chn',  // int32_t
     40     kKeySampleRate        = 'srte',  // int32_t (also video frame rate)
     41     kKeyBitRate           = 'brte',  // int32_t (bps)
     42     kKeyESDS              = 'esds',  // raw data
     43     kKeyAVCC              = 'avcc',  // raw data
     44     kKeyVorbisInfo        = 'vinf',  // raw data
     45     kKeyVorbisBooks       = 'vboo',  // raw data
     46     kKeyWantsNALFragments = 'NALf',
     47     kKeyIsSyncFrame       = 'sync',  // int32_t (bool)
     48     kKeyIsCodecConfig     = 'conf',  // int32_t (bool)
     49     kKeyTime              = 'time',  // int64_t (usecs)
     50     kKeyNTPTime           = 'ntpT',  // uint64_t (ntp-timestamp)
     51     kKeyTargetTime        = 'tarT',  // int64_t (usecs)
     52     kKeyDriftTime         = 'dftT',  // int64_t (usecs)
     53     kKeyAnchorTime        = 'ancT',  // int64_t (usecs)
     54     kKeyDuration          = 'dura',  // int64_t (usecs)
     55     kKeyColorFormat       = 'colf',
     56     kKeyPlatformPrivate   = 'priv',  // pointer
     57     kKeyDecoderComponent  = 'decC',  // cstring
     58     kKeyBufferID          = 'bfID',
     59     kKeyMaxInputSize      = 'inpS',
     60     kKeyThumbnailTime     = 'thbT',  // int64_t (usecs)
     61 
     62     kKeyAlbum             = 'albu',  // cstring
     63     kKeyArtist            = 'arti',  // cstring
     64     kKeyAlbumArtist       = 'aart',  // cstring
     65     kKeyComposer          = 'comp',  // cstring
     66     kKeyGenre             = 'genr',  // cstring
     67     kKeyTitle             = 'titl',  // cstring
     68     kKeyYear              = 'year',  // cstring
     69     kKeyAlbumArt          = 'albA',  // compressed image data
     70     kKeyAlbumArtMIME      = 'alAM',  // cstring
     71     kKeyAuthor            = 'auth',  // cstring
     72     kKeyCDTrackNumber     = 'cdtr',  // cstring
     73     kKeyDiscNumber        = 'dnum',  // cstring
     74     kKeyDate              = 'date',  // cstring
     75     kKeyWriter            = 'writ',  // cstring
     76     kKeyCompilation       = 'cpil',  // cstring
     77     kKeyTimeScale         = 'tmsl',  // int32_t
     78 
     79     // video profile and level
     80     kKeyVideoProfile      = 'vprf',  // int32_t
     81     kKeyVideoLevel        = 'vlev',  // int32_t
     82 
     83     // Set this key to enable authoring files in 64-bit offset
     84     kKey64BitFileOffset   = 'fobt',  // int32_t (bool)
     85     kKey2ByteNalLength    = '2NAL',  // int32_t (bool)
     86 
     87     // Identify the file output format for authoring
     88     // Please see <media/mediarecorder.h> for the supported
     89     // file output formats.
     90     kKeyFileType          = 'ftyp',  // int32_t
     91 
     92     // Track authoring progress status
     93     // kKeyTrackTimeStatus is used to track progress in elapsed time
     94     kKeyTrackTimeStatus   = 'tktm',  // int64_t
     95     kKeyRotationDegree    = 'rdge',  // int32_t (clockwise, in degree)
     96 
     97     kKeyNotRealTime       = 'ntrt',  // bool (int32_t)
     98 
     99     // Ogg files can be tagged to be automatically looping...
    100     kKeyAutoLoop          = 'autL',  // bool (int32_t)
    101 
    102     kKeyValidSamples      = 'valD',  // int32_t
    103 
    104     kKeyIsUnreadable      = 'unre',  // bool (int32_t)
    105 };
    106 
    107 enum {
    108     kTypeESDS        = 'esds',
    109     kTypeAVCC        = 'avcc',
    110 };
    111 
    112 class MetaData : public RefBase {
    113 public:
    114     MetaData();
    115     MetaData(const MetaData &from);
    116 
    117     enum Type {
    118         TYPE_NONE     = 'none',
    119         TYPE_C_STRING = 'cstr',
    120         TYPE_INT32    = 'in32',
    121         TYPE_INT64    = 'in64',
    122         TYPE_FLOAT    = 'floa',
    123         TYPE_POINTER  = 'ptr ',
    124     };
    125 
    126     void clear();
    127     bool remove(uint32_t key);
    128 
    129     bool setCString(uint32_t key, const char *value);
    130     bool setInt32(uint32_t key, int32_t value);
    131     bool setInt64(uint32_t key, int64_t value);
    132     bool setFloat(uint32_t key, float value);
    133     bool setPointer(uint32_t key, void *value);
    134 
    135     bool findCString(uint32_t key, const char **value);
    136     bool findInt32(uint32_t key, int32_t *value);
    137     bool findInt64(uint32_t key, int64_t *value);
    138     bool findFloat(uint32_t key, float *value);
    139     bool findPointer(uint32_t key, void **value);
    140 
    141     bool setData(uint32_t key, uint32_t type, const void *data, size_t size);
    142 
    143     bool findData(uint32_t key, uint32_t *type,
    144                   const void **data, size_t *size) const;
    145 
    146 protected:
    147     virtual ~MetaData();
    148 
    149 private:
    150     struct typed_data {
    151         typed_data();
    152         ~typed_data();
    153 
    154         typed_data(const MetaData::typed_data &);
    155         typed_data &operator=(const MetaData::typed_data &);
    156 
    157         void clear();
    158         void setData(uint32_t type, const void *data, size_t size);
    159         void getData(uint32_t *type, const void **data, size_t *size) const;
    160 
    161     private:
    162         uint32_t mType;
    163         size_t mSize;
    164 
    165         union {
    166             void *ext_data;
    167             float reservoir;
    168         } u;
    169 
    170         bool usesReservoir() const {
    171             return mSize <= sizeof(u.reservoir);
    172         }
    173 
    174         void allocateStorage(size_t size);
    175         void freeStorage();
    176 
    177         void *storage() {
    178             return usesReservoir() ? &u.reservoir : u.ext_data;
    179         }
    180 
    181         const void *storage() const {
    182             return usesReservoir() ? &u.reservoir : u.ext_data;
    183         }
    184     };
    185 
    186     KeyedVector<uint32_t, typed_data> mItems;
    187 
    188     // MetaData &operator=(const MetaData &);
    189 };
    190 
    191 }  // namespace android
    192 
    193 #endif  // META_DATA_H_
    194