commit 63be8ceb8b2354fb997a277c0092abae015ecf10 Author: Andreas Huber <andih@google.com> Date: Fri Dec 17 13:45:34 2010 -0800 Enable handling of discontinuities that involve potential format changes. Change-Id: I21848a113db8764abb54bdcf302b0923253eaf4d commit d18a7f80ec09af382026809263dcbbfa9e7a9ec8 Author: Andreas Huber <andih@google.com> Date: Fri Dec 17 13:45:01 2010 -0800 Signal whether or not a format change occured as part of the discontinuity. Change-Id: I06e64f542f4369549c9cebbb892dc612346ae43d commit c400adbd5fdbd65cfef7aed9ec65bcaace4bb69b Author: Andreas Huber <andih@google.com> Date: Fri Dec 17 13:44:46 2010 -0800 A little more instrumentation of ACodec Change-Id: I07f4aeccbbd15cdd9f80f48c3f92ee984ef6d92b commit 1d802ee01f47b3cdc5b89502cec7fbb595e197a3 Author: Andreas Huber <andih@google.com> Date: Fri Dec 17 13:43:58 2010 -0800 Only sync audio/video queues if both types of media are actually present. Change-Id: Ic88edf9bb1ebd4034c08747cce9877a4e28e0d35 commit e402da39d9a4d8b75653a78f728e20a3ef0fb497 Author: Andreas Huber <andih@google.com> Date: Fri Dec 17 13:42:24 2010 -0800 Disable the random seek for now. Change-Id: Iddd597b546e2f229e88214f9bdd6452bb188105e Change-Id: I27c4d9ba916080be94ce6117dbb095e9022ed62b
83 lines
1.9 KiB
C++
83 lines
1.9 KiB
C++
/*
|
|
* Copyright (C) 2010 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.
|
|
*/
|
|
|
|
#ifndef DECODER_WRAPPER_H_
|
|
|
|
#define DECODER_WRAPPER_H_
|
|
|
|
#include <media/stagefright/foundation/AHandler.h>
|
|
|
|
namespace android {
|
|
|
|
struct MediaSource;
|
|
|
|
struct DecoderWrapper : public AHandler {
|
|
DecoderWrapper();
|
|
|
|
void setNotificationMessage(const sp<AMessage> &msg);
|
|
void initiateSetup(const sp<AMessage> &msg);
|
|
void initiateShutdown();
|
|
void signalFlush();
|
|
void signalResume();
|
|
|
|
protected:
|
|
virtual ~DecoderWrapper();
|
|
|
|
virtual void onMessageReceived(const sp<AMessage> &msg);
|
|
|
|
private:
|
|
struct WrapperSource;
|
|
struct WrapperReader;
|
|
|
|
enum {
|
|
kWhatSetup,
|
|
kWhatInputBufferFilled,
|
|
kWhatOutputBufferDrained,
|
|
kWhatShutdown,
|
|
kWhatFillBufferDone,
|
|
kWhatInputDataRequested,
|
|
kWhatFlush,
|
|
kWhatResume,
|
|
};
|
|
|
|
sp<AMessage> mNotify;
|
|
|
|
sp<WrapperSource> mSource;
|
|
|
|
sp<ALooper> mReaderLooper;
|
|
sp<WrapperReader> mReader;
|
|
|
|
int32_t mNumOutstandingInputBuffers;
|
|
int32_t mNumOutstandingOutputBuffers;
|
|
int32_t mNumPendingDecodes;
|
|
bool mFlushing;
|
|
|
|
void onSetup(const sp<AMessage> &msg);
|
|
void onShutdown();
|
|
void onFlush();
|
|
void onResume();
|
|
|
|
void postFillBuffer();
|
|
void completeFlushIfPossible();
|
|
|
|
DISALLOW_EVIL_CONSTRUCTORS(DecoderWrapper);
|
|
};
|
|
|
|
} // namespace android
|
|
|
|
#endif // DECODER_WRAPPER_H_
|
|
|