diff options
| author | Andreas Huber <andih@google.com> | 2010-08-04 10:14:30 -0700 |
|---|---|---|
| committer | Andreas Huber <andih@google.com> | 2010-08-04 11:49:24 -0700 |
| commit | 57648e4eec7dd2593af467877bc7cce4aa654759 (patch) | |
| tree | 55b4d4115bb8b2a31b7cd327f110fad1c0250235 /include | |
| parent | 737998f5955aa14f1b21967f6f559bca60cb1844 (diff) | |
| download | frameworks_base-57648e4eec7dd2593af467877bc7cce4aa654759.zip frameworks_base-57648e4eec7dd2593af467877bc7cce4aa654759.tar.gz frameworks_base-57648e4eec7dd2593af467877bc7cce4aa654759.tar.bz2 | |
Support for Gtalk video, includes AMR/H.263 assembler and packetization support, extensions to MediaRecorder to stream via RTP over a pair of UDP sockets as well as various fixes to the RTP implementation.
Change-Id: I95b8dd487061add9bade15749e563b01cd99d9a6
Diffstat (limited to 'include')
| -rw-r--r-- | include/media/mediarecorder.h | 3 | ||||
| -rw-r--r-- | include/media/stagefright/MetaData.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/media/mediarecorder.h b/include/media/mediarecorder.h index b21bc4d..291b18a 100644 --- a/include/media/mediarecorder.h +++ b/include/media/mediarecorder.h @@ -73,6 +73,9 @@ enum output_format { OUTPUT_FORMAT_AAC_ADIF = 5, OUTPUT_FORMAT_AAC_ADTS = 6, + /* Stream over a socket, limited to a single stream */ + OUTPUT_FORMAT_RTP_AVP = 7, + OUTPUT_FORMAT_LIST_END // must be last - used to validate format type }; diff --git a/include/media/stagefright/MetaData.h b/include/media/stagefright/MetaData.h index e631c7f..ab1fa4f 100644 --- a/include/media/stagefright/MetaData.h +++ b/include/media/stagefright/MetaData.h @@ -46,6 +46,7 @@ enum { kKeyIsSyncFrame = 'sync', // int32_t (bool) kKeyIsCodecConfig = 'conf', // int32_t (bool) kKeyTime = 'time', // int64_t (usecs) + kKeyNTPTime = 'ntpT', // uint64_t (ntp-timestamp) kKeyTargetTime = 'tarT', // int64_t (usecs) kKeyDuration = 'dura', // int64_t (usecs) kKeyColorFormat = 'colf', |
