FFMpegDecoder.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright (c) 2016 The ZLMediaKit project authors. All Rights Reserved.
  3. *
  4. * This file is part of ZLMediaKit(https://github.com/ZLMediaKit/ZLMediaKit).
  5. *
  6. * Use of this source code is governed by MIT license that can be found in the
  7. * LICENSE file in the root of the source tree. All contributing project authors
  8. * may be found in the AUTHORS file in the root of the source tree.
  9. */
  10. #ifndef FFMpegDecoder_H_
  11. #define FFMpegDecoder_H_
  12. #include <string>
  13. #include <memory>
  14. #include <stdexcept>
  15. #include "Extension/Frame.h"
  16. #include "Extension/Track.h"
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. #include "libavcodec/avcodec.h"
  21. #include "libswresample/swresample.h"
  22. #include "libavformat/avformat.h"
  23. #ifdef __cplusplus
  24. }
  25. #endif
  26. using namespace std;
  27. using namespace mediakit;
  28. class FFmpegFrame {
  29. public:
  30. using Ptr = std::shared_ptr<FFmpegFrame>;
  31. FFmpegFrame(std::shared_ptr<AVFrame> frame = nullptr);
  32. ~FFmpegFrame();
  33. AVFrame *get() const;
  34. void fillPicture(AVPixelFormat target_format, int target_width, int target_height);
  35. private:
  36. char *_data = nullptr;
  37. std::shared_ptr<AVFrame> _frame;
  38. };
  39. class FFmpegSwr{
  40. public:
  41. using Ptr = std::shared_ptr<FFmpegSwr>;
  42. FFmpegSwr(AVSampleFormat output, int channel, int channel_layout, int samplerate);
  43. ~FFmpegSwr();
  44. FFmpegFrame::Ptr inputFrame(const FFmpegFrame::Ptr &frame);
  45. private:
  46. int _target_channels;
  47. int _target_channel_layout;
  48. int _target_samplerate;
  49. AVSampleFormat _target_format;
  50. SwrContext *_ctx = nullptr;
  51. ResourcePool<FFmpegFrame> _frame_pool;
  52. };
  53. class FFmpegDecoder : public FrameWriterInterface {
  54. public:
  55. using Ptr = std::shared_ptr<FFmpegDecoder>;
  56. using onDec = function<void(const FFmpegFrame::Ptr &)>;
  57. FFmpegDecoder(const Track::Ptr &track);
  58. ~FFmpegDecoder() {}
  59. void inputFrame(const Frame::Ptr &frame) override;
  60. void inputFrame(const char *data, size_t size, uint32_t dts, uint32_t pts);
  61. void setOnDecode(onDec cb);
  62. void flush();
  63. const AVCodecContext *getContext() const;
  64. private:
  65. void onDecode(const FFmpegFrame::Ptr &frame);
  66. private:
  67. Ticker _ticker;
  68. onDec _cb;
  69. FFmpegSwr::Ptr _swr;
  70. ResourcePool<FFmpegFrame> _frame_pool;
  71. std::shared_ptr<AVCodecContext> _context;
  72. };
  73. #endif /* FFMpegDecoder_H_ */