mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
#include "MediaDecoder.h"
|
|
#include "MediaDecoderReader.h"
|
|
#include "MediaDecoderStateMachine.h"
|
|
|
|
namespace mozilla {
|
|
|
|
class MediaOmxStateMachine : public MediaDecoderStateMachine
|
|
{
|
|
public:
|
|
MediaOmxStateMachine(MediaDecoder *aDecoder,
|
|
MediaDecoderReader *aReader,
|
|
bool aRealTime = false)
|
|
: MediaDecoderStateMachine(aDecoder, aReader, aRealTime) { }
|
|
|
|
protected:
|
|
// Due to a bug in the OMX.qcom.video.decoder.mpeg4 decoder, we can't own too
|
|
// many video buffers before shutting down the decoder. When we release these
|
|
// buffers, they asynchronously signal to OMXCodec that we have returned
|
|
// ownership of the buffer.
|
|
// If this signal happens while the OMXCodec is shutting down, OMXCodec will
|
|
// crash. If the OMXCodec shuts down before all buffers are returned,
|
|
// OMXCodec will crash.
|
|
// So we need few enough buffers in the queue that all buffers will be
|
|
// returned before OMXCodec begins shutdown.
|
|
uint32_t GetAmpleVideoFrames() { return 3; }
|
|
};
|
|
|
|
} // namespace mozilla
|