/* * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /** * @addtogroup Media * @{ */ /** * @file NdkMediaExtractor.h */ /* * This file defines an NDK API. * Do not remove methods. * Do not change method signatures. * Do not change the value of constants. * Do not change the size of any of the classes defined in here. * Do not reference types that are not part of the NDK. * Do not #include files that aren't part of the NDK. */ #ifndef _NDK_MEDIA_EXTRACTOR_H #define _NDK_MEDIA_EXTRACTOR_H #include #include #include #include "NdkMediaCodec.h" #include "NdkMediaDataSource.h" #include "NdkMediaFormat.h" #include "NdkMediaCrypto.h" __BEGIN_DECLS struct AMediaExtractor; typedef struct AMediaExtractor AMediaExtractor; /** * Create new media extractor. * * Available since API level 21. */ AMediaExtractor* AMediaExtractor_new() __INTRODUCED_IN(21); /** * Delete a previously created media extractor. * * Available since API level 21. */ media_status_t AMediaExtractor_delete(AMediaExtractor*) __INTRODUCED_IN(21); /** * Set the file descriptor from which the extractor will read. * * Available since API level 21. */ media_status_t AMediaExtractor_setDataSourceFd(AMediaExtractor*, int fd, off64_t offset, off64_t length) __INTRODUCED_IN(21); /** * Set the URI from which the extractor will read. * * Available since API level 21. */ media_status_t AMediaExtractor_setDataSource(AMediaExtractor*, const char *location) __INTRODUCED_IN(21); /** * Set the custom data source implementation from which the extractor will read. * * Available since API level 28. */ media_status_t AMediaExtractor_setDataSourceCustom(AMediaExtractor*, AMediaDataSource *src) __INTRODUCED_IN(28); /** * Return the number of tracks in the previously specified media file * * Available since API level 21. */ size_t AMediaExtractor_getTrackCount(AMediaExtractor*) __INTRODUCED_IN(21); /** * Return the format of the specified track. The caller must free the returned format * * Available since API level 21. */ AMediaFormat* AMediaExtractor_getTrackFormat(AMediaExtractor*, size_t idx) __INTRODUCED_IN(21); /** * Select the specified track. Subsequent calls to readSampleData, getSampleTrackIndex and * getSampleTime only retrieve information for the subset of tracks selected. * Selecting the same track multiple times has no effect, the track is * only selected once. * * Available since API level 21. */ media_status_t AMediaExtractor_selectTrack(AMediaExtractor*, size_t idx) __INTRODUCED_IN(21); /** * Unselect the specified track. Subsequent calls to readSampleData, getSampleTrackIndex and * getSampleTime only retrieve information for the subset of tracks selected. * * Available since API level 21. */ media_status_t AMediaExtractor_unselectTrack(AMediaExtractor*, size_t idx) __INTRODUCED_IN(21); /** * Read the current sample. * * Available since API level 21. */ ssize_t AMediaExtractor_readSampleData(AMediaExtractor*, uint8_t *buffer, size_t capacity) __INTRODUCED_IN(21); /** * Read the current sample's flags. * * Available since API level 21. */ uint32_t AMediaExtractor_getSampleFlags(AMediaExtractor*) __INTRODUCED_IN(21); /** * Returns the track index the current sample originates from (or -1 * if no more samples are available) * * Available since API level 21. */ int AMediaExtractor_getSampleTrackIndex(AMediaExtractor*) __INTRODUCED_IN(21); /** * Returns the current sample's presentation time in microseconds. * or -1 if no more samples are available. * * Available since API level 21. */ int64_t AMediaExtractor_getSampleTime(AMediaExtractor*) __INTRODUCED_IN(21); /** * Advance to the next sample. Returns false if no more sample data * is available (end of stream). * * Available since API level 21. */ bool AMediaExtractor_advance(AMediaExtractor*) __INTRODUCED_IN(21); typedef enum { AMEDIAEXTRACTOR_SEEK_PREVIOUS_SYNC, AMEDIAEXTRACTOR_SEEK_NEXT_SYNC, AMEDIAEXTRACTOR_SEEK_CLOSEST_SYNC } SeekMode; /** * Available since API level 21. */ media_status_t AMediaExtractor_seekTo(AMediaExtractor*, int64_t seekPosUs, SeekMode mode) __INTRODUCED_IN(21); /** * mapping of crypto scheme uuid to the scheme specific data for that scheme */ typedef struct PsshEntry { AMediaUUID uuid; size_t datalen; void *data; } PsshEntry; /** * list of crypto schemes and their data */ typedef struct PsshInfo { size_t numentries; PsshEntry entries[0]; } PsshInfo; /** * Get the PSSH info if present. * * Available since API level 21. */ PsshInfo* AMediaExtractor_getPsshInfo(AMediaExtractor*) __INTRODUCED_IN(21); /** * Available since API level 21. */ AMediaCodecCryptoInfo *AMediaExtractor_getSampleCryptoInfo(AMediaExtractor *) __INTRODUCED_IN(21); enum { AMEDIAEXTRACTOR_SAMPLE_FLAG_SYNC = 1, AMEDIAEXTRACTOR_SAMPLE_FLAG_ENCRYPTED = 2, }; /** * Returns the format of the extractor. The caller must free the returned format * using AMediaFormat_delete(format). * * This function will always return a format; however, the format could be empty * (no key-value pairs) if the media container does not provide format information. * * Available since API level 28. */ AMediaFormat* AMediaExtractor_getFileFormat(AMediaExtractor*) __INTRODUCED_IN(28); /** * Returns the size of the current sample in bytes, or -1 when no samples are * available (end of stream). This API can be used in in conjunction with * AMediaExtractor_readSampleData: * *
ssize_t sampleSize = AMediaExtractor_getSampleSize(ex);
 * uint8_t *buf = new uint8_t[sampleSize];
 * AMediaExtractor_readSampleData(ex, buf, sampleSize);
* * Available since API level 28. */ ssize_t AMediaExtractor_getSampleSize(AMediaExtractor*) __INTRODUCED_IN(28); /** * Returns the duration of cached media samples downloaded from a network data source * (AMediaExtractor_setDataSource with a "http(s)" URI) in microseconds. * * This information is calculated using total bitrate; if total bitrate is not in the * media container it is calculated using total duration and file size. * * Returns -1 when the extractor is not reading from a network data source, or when the * cached duration cannot be calculated (bitrate, duration, and file size information * not available). * * Available since API level 28. */ int64_t AMediaExtractor_getCachedDuration(AMediaExtractor *) __INTRODUCED_IN(28); /** * Read the current sample's metadata format into `fmt`. Examples of sample metadata are * SEI (supplemental enhancement information) and MPEG user data, both of which can embed * closed-caption data. * * Returns AMEDIA_OK on success or AMEDIA_ERROR_* to indicate failure reason. * Existing key-value pairs in `fmt` would be removed if this API returns AMEDIA_OK. * The contents of `fmt` is undefined if this API returns AMEDIA_ERROR_*. * * Available since API level 28. */ media_status_t AMediaExtractor_getSampleFormat(AMediaExtractor *ex, AMediaFormat *fmt) __INTRODUCED_IN(28); __END_DECLS #endif // _NDK_MEDIA_EXTRACTOR_H /** @} */