summaryrefslogtreecommitdiffstats
path: root/media/libstagefright/include
diff options
context:
space:
mode:
authorEdwin Wong <edwinwong@google.com>2012-09-06 14:07:37 -0700
committerEdwin Wong <edwinwong@google.com>2012-09-11 10:52:18 -0700
commit8a74c9b8e2627560ae5a92d4261f0de4464490ad (patch)
treeee9a7123571edba1ff86b8861b48ae85892fae2b /media/libstagefright/include
parent498a274c188f18049053ef5424b52cc4d9314c80 (diff)
downloadframeworks_av-8a74c9b8e2627560ae5a92d4261f0de4464490ad.zip
frameworks_av-8a74c9b8e2627560ae5a92d4261f0de4464490ad.tar.gz
frameworks_av-8a74c9b8e2627560ae5a92d4261f0de4464490ad.tar.bz2
Add getError and setError to propagate error code from WVMMediaExtractor up to player.
The two virtual functions provides a path for the player(AwesomePlayer) to retrieve the last error from WVMMediaExtractor container. Change-Id: Iee8d4a3eccf82af95eb3d4d465f069daced4aa1a related-to-bug: 7073630
Diffstat (limited to 'media/libstagefright/include')
-rw-r--r--media/libstagefright/include/WVMExtractor.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/media/libstagefright/include/WVMExtractor.h b/media/libstagefright/include/WVMExtractor.h
index c43c801..8e62946 100644
--- a/media/libstagefright/include/WVMExtractor.h
+++ b/media/libstagefright/include/WVMExtractor.h
@@ -33,9 +33,11 @@ public:
virtual ~WVMLoadableExtractor() {}
virtual int64_t getCachedDurationUs(status_t *finalStatus) = 0;
+ virtual status_t getError() = 0;
virtual status_t getEstimatedBandwidthKbps(int32_t *kbps) = 0;
virtual void setAdaptiveStreamingMode(bool adaptive) = 0;
virtual void setCryptoPluginMode(bool cryptoPluginMode) = 0;
+ virtual void setError(status_t err) = 0;
virtual void setUID(uid_t uid) = 0;
};
@@ -76,6 +78,10 @@ public:
static bool getVendorLibHandle();
+ status_t getError();
+
+ void setError(status_t err);
+
protected:
virtual ~WVMExtractor();