| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ | 5 #ifndef SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ |
| 6 #define SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ | 6 #define SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ |
| 7 | 7 |
| 8 #include "services/media/framework_ffmpeg/ffmpeg_decoder_base.h" | 8 #include "services/media/framework_ffmpeg/ffmpeg_decoder_base.h" |
| 9 | 9 |
| 10 namespace mojo { | 10 namespace mojo { |
| 11 namespace media { | 11 namespace media { |
| 12 | 12 |
| 13 // Decoder implementation employing and ffmpeg video decoder. | 13 // Decoder implementation employing and ffmpeg video decoder. |
| 14 // TODO(dalesat): Complete this. | 14 // TODO(dalesat): Complete this. |
| 15 class FfmpegVideoDecoder : public FfmpegDecoderBase { | 15 class FfmpegVideoDecoder : public FfmpegDecoderBase { |
| 16 public: | 16 public: |
| 17 FfmpegVideoDecoder(AvCodecContextPtr av_codec_context); | 17 FfmpegVideoDecoder(AvCodecContextPtr av_codec_context); |
| 18 | 18 |
| 19 ~FfmpegVideoDecoder() override; | 19 ~FfmpegVideoDecoder() override; |
| 20 | 20 |
| 21 protected: | 21 protected: |
| 22 // FfmpegDecoderBase overrides. | 22 // FfmpegDecoderBase overrides. |
| 23 int Decode( | 23 int Decode( |
| 24 const AVPacket& av_packet, | 24 const AVPacket& av_packet, |
| 25 const AvFramePtr& av_frame_ptr, | 25 const ffmpeg::AvFramePtr& av_frame_ptr, |
| 26 PayloadAllocator* allocator, | 26 PayloadAllocator* allocator, |
| 27 bool* frame_decoded_out) override; | 27 bool* frame_decoded_out) override; |
| 28 | 28 |
| 29 PacketPtr CreateOutputPacket( | 29 PacketPtr CreateOutputPacket( |
| 30 const AVFrame& av_frame, | 30 const AVFrame& av_frame, |
| 31 PayloadAllocator* allocator) override; | 31 PayloadAllocator* allocator) override; |
| 32 | 32 |
| 33 PacketPtr CreateOutputEndOfStreamPacket() override; | 33 PacketPtr CreateOutputEndOfStreamPacket() override; |
| 34 | 34 |
| 35 private: | 35 private: |
| (...skipping 12 matching lines...) Expand all Loading... |
| 48 | 48 |
| 49 // This is used to verify that an allocated buffer is being used as expected | 49 // This is used to verify that an allocated buffer is being used as expected |
| 50 // by ffmpeg avcodec_decode_audio4. AllocateBufferForAvFrame sets it. | 50 // by ffmpeg avcodec_decode_audio4. AllocateBufferForAvFrame sets it. |
| 51 //void* packet_buffer_; | 51 //void* packet_buffer_; |
| 52 }; | 52 }; |
| 53 | 53 |
| 54 } // namespace media | 54 } // namespace media |
| 55 } // namespace mojo | 55 } // namespace mojo |
| 56 | 56 |
| 57 #endif // SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ | 57 #endif // SERVICES_MEDIA_FRAMEWORK_FFMPEG_FFMPEG_VIDEO_DECODER_H_ |
| OLD | NEW |