// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef MEDIA_BASE_VIDEO_DECODER_H_ #define MEDIA_BASE_VIDEO_DECODER_H_ #include "base/memory/scoped_refptr.h" #include "media/base/decoder.h" #include "media/base/decoder_status.h" #include "media/base/media_export.h" #include "media/base/pipeline_status.h" #include "media/base/waiting.h" #include "ui/gfx/geometry/size.h" namespace media { class CdmContext; class DecoderBuffer; class VideoDecoderConfig; class VideoFrame; // Interface for all video decoders. // // VideoDecoders may be constructed on any thread, after which all calls must // occur on a single sequence (which may differ from the construction sequence). class MEDIA_EXPORT VideoDecoder : public Decoder { … }; } // namespace media #endif // MEDIA_BASE_VIDEO_DECODER_H_