inference.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. #pragma once
  2. #include <iostream>
  3. #include <stdio.h>
  4. #include <string.h>
  5. #include <gst/gst.h>
  6. #include <glib.h>
  7. #include <stdio.h>
  8. #include <math.h>
  9. #include <string.h>
  10. #include <sys/time.h>
  11. #include "gstnvdsmeta.h"
  12. #include "gst-nvmessage.h"
  13. #include "DataSource.h"
  14. // ZLMediaKit
  15. #include "Util/logger.h"
  16. #include "Util/NoticeCenter.h"
  17. #include "Poller/EventPoller.h"
  18. #include "Player/PlayerProxy.h"
  19. #include "Rtmp/RtmpPusher.h"
  20. #include "Common/config.h"
  21. #include "Pusher/MediaPusher.h"
  22. #include "Extension/Frame.h"
  23. #include "Util/SqlPool.h"
  24. #include "Network/TcpClient.h"
  25. #include "Poller/Timer.h"
  26. #include "TCPClient.h"
  27. #include <mutex>
  28. #include <list>
  29. using namespace std;
  30. namespace MIVA{
  31. // 基于Deepstream
  32. class Inference
  33. {
  34. private:
  35. // Deepstream
  36. GMainLoop *loop = NULL;
  37. GstElement *pipeline = NULL,*streammux =NULL, *sink = NULL, *pgie = NULL,
  38. *queue1, *queue2, *queue3, *queue4, *queue5, *nvvidconv = NULL,
  39. *nvosd = NULL, *tiler = NULL;
  40. GstElement *transform = NULL;
  41. GstBus *bus = NULL;
  42. guint bus_watch_id;
  43. GstPad *tiler_src_pad = NULL;
  44. guint tiler_rows, tiler_columns;
  45. guint pgie_batch_size;
  46. std::vector<DataSource> m_DataList;
  47. public:
  48. static std::shared_ptr<Inference> CreateNew();
  49. Inference();
  50. ~Inference();
  51. public:
  52. int32_t Init(std::vector<DataSource> DataList);
  53. void Destory();
  54. void ReadyTask();
  55. void StartTask();
  56. void PauseTask();
  57. void StopTask();
  58. void RestartTask();
  59. private:
  60. // static
  61. static GstPadProbeReturn tiler_src_pad_buffer_probe(GstPad * pad, GstPadProbeInfo * info, gpointer u_data);
  62. static gboolean bus_call (GstBus * bus, GstMessage * msg, gpointer data);
  63. static void decodebin_child_added (GstChildProxy * child_proxy, GObject * object,
  64. gchar * name, gpointer user_data);
  65. static GstElement * create_uridecode_bin (guint index, gchar * filename);
  66. static void cb_newpad (GstElement * decodebin, GstPad * pad, gpointer data);
  67. // 动态管理源
  68. gboolean add_sources (int source_Id, std::string uri);
  69. void stop_release_source (gint source_id);
  70. };
  71. }