Index: media/base/android/media_codec_bridge.h |
diff --git a/media/base/android/media_codec_bridge.h b/media/base/android/media_codec_bridge.h |
index c09ea52a7c2e685c1b7b4636995e9b78e3e22da4..8fb7161ead75de3e05c5c5fa1e890be7d3c389b8 100644 |
--- a/media/base/android/media_codec_bridge.h |
+++ b/media/base/android/media_codec_bridge.h |
@@ -107,6 +107,10 @@ class MEDIA_EXPORT MediaCodecBridge { |
// returns a format change by returning INFO_OUTPUT_FORMAT_CHANGED |
void GetOutputFormat(int* width, int* height); |
+ // Used for checking for new sampling rate after DequeueInputBuffer() returns |
+ // INFO_OUTPUT_FORMAT_CHANGED |
+ void GetOutputSamplingRate(int* sampling_rate); |
+ |
// Submits a byte array to the given input buffer. Call this after getting an |
// available buffer from DequeueInputBuffer(). If |data| is NULL, assume the |
// input buffer has already been populated (but still obey |size|). |