FFMpegDecoder.h 2.4 KB

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