Blame view

src/decoder/dvpp/DvppStreamDecoder.cpp 19.4 KB
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  #include "DvppStreamDecoder.h"
  
  
  
  struct Vdec_CallBack_UserData {
      uint64_t frameId;
      uint64_t frame_nb;
      long startTime;
      long sendTime;
  	DvppDecoder* self;
  
      Vdec_CallBack_UserData() {
          frameId = 0;
          frame_nb = 0;
      }
  };
  
  static void *ReportThd(void *arg)
  {
      DvppStreamDecoder *self = (DvppStreamDecoder *)arg;
  	if(nullptr != self){
  		self->doProcessReport();
  	}
      return (void *)0;
  }
  
  static void VdecCallback(acldvppStreamDesc *input, acldvppPicDesc *output, void *pUserData)
  {
  	Vdec_CallBack_UserData *userData = (Vdec_CallBack_UserData *) pUserData;
      if(nullptr != userData){
          DvppStreamDecoder* self = userData->self;
          if(self != nullptr){
              self->doVdppVdecCallBack(input, output, userData);
          }
          delete userData;
  	    userData = nullptr;
      }
  }
  
  DvppStreamDecoder::DvppStreamDecoder(/* args */)
  {
  }
  
  DvppStreamDecoder::~DvppStreamDecoder()
  {
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
46
      Close();
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
47
48
  }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
49
50
51
  bool DvppStreamDecoder::Init(FFDecConfig cfg) {
  
      m_dec_name = cfg.dec_name;
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
  
      LOG_INFO("[{}]- Init device start...", m_dec_name);
  
      m_deviceId = atoi(cfg.gpuid.c_str());
  
      do{
          aclError ret = aclrtSetDevice(m_deviceId);
          if(ret != ACL_ERROR_NONE){
              LOG_ERROR("[{}]-aclrtSetDevice failed !", m_dec_name);
              return false;
          }
  
          ret = aclrtCreateContext(&m_context, m_deviceId);
          if (ret != ACL_ERROR_NONE) {
              LOG_ERROR("[{}]-aclrtCreateContext failed !", m_dec_name);
              return false;
          }
  
          // DvppSourceManager 创建时包含 aclInit,析构时包含 aclFinalize
          DvppSourceManager* pSrcMgr = DvppSourceManager::getInstance();
          m_dvpp_channel = pSrcMgr->getChannel(m_deviceId);
          if(m_dvpp_channel < 0){
              LOG_ERROR("[{}]-该设备channel已经用完了!", m_dec_name);
              return false;
          }
  
          m_vpcUtils.init(m_deviceId);
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
80
81
          decode_finished_cbk = cfg.decode_finished_cbk;
  
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
          LOG_INFO("[{}]- init vdpp success! device:{} channel:{}", m_dec_name, m_deviceId, m_dvpp_channel);
          return true;
      }while(0);
  
      release_dvpp();
  
      return false;
  }
  
  void DvppStreamDecoder::release_dvpp(){
      if(m_context){
          aclError ret = aclrtDestroyContext(m_context);
          if(ret != ACL_ERROR_NONE){
              LOG_ERROR("[{}]- aclrtDestroyContext failed !", m_dec_name);
          }
          m_context = nullptr;
      }
      
      if(m_dvpp_channel >= 0){
          DvppSourceManager* pSrcMgr = DvppSourceManager::getInstance();
  	    pSrcMgr->releaseChannel(m_deviceId, m_dvpp_channel);
          m_dvpp_channel = -1;
      }
  }
  
  int DvppStreamDecoder::getVdecType(int videoType)
  {
      int streamFormat = H264_MAIN_LEVEL;
  
      // VDEC only support H265 main level264 baseline levelmain levelhigh level
      if (videoType == 1) {
          streamFormat = H265_MAIN_LEVEL;
      } else if (videoType == 0) {
          streamFormat = H264_MAIN_LEVEL;
      } else {
          streamFormat = -1;
          LOG_ERROR("Not support stream, type {}", videoType);
      }
  
      return streamFormat;
  }
  
  void DvppStreamDecoder::doProcessReport(){
  
      aclError ret = aclrtSetDevice(m_dvpp_deviceId);
      if(ret != ACL_ERROR_NONE){
          // cout << "aclrtSetDevice failed" << endl;
          LOG_ERROR("aclrtSetDevice failed !");
          return ;
      }
  
      aclrtContext ctx;
      ret = aclrtCreateContext(&ctx, m_dvpp_deviceId);
      if (ret != ACL_ERROR_NONE) {
          // cout << "aclrtCreateContext failed " << endl;
          LOG_ERROR("aclrtCreateContext failed !");
          return ;
      }
  
      while (!m_bExitReportThd) {
          aclrtProcessReport(1000);
      }
  
      ret = aclrtDestroyContext(ctx);
      if(ret != ACL_ERROR_NONE){
          LOG_ERROR("aclrtDestroyContext failed !");
      }
      LOG_INFO("doProcessReport exit.");
  }
  
  void DvppStreamDecoder::doVdppVdecCallBack(acldvppStreamDesc *input, acldvppPicDesc *output, void *pUserData) {
  
      // 内部缓存计数减1
      m_DvppCacheCounter--;
  
      if(nullptr == pUserData){
          return;
      }
  
      Vdec_CallBack_UserData *userData = (Vdec_CallBack_UserData *) pUserData;
      uint64_t frame_nb = userData->frame_nb;
  
      m_out_count++;
  
      CHECK_AND_RETURN_NOVALUE(aclrtSetCurrentContext(m_context), "aclrtSetCurrentContext failed");
  
      void *inputDataDev = acldvppGetStreamDescData(input);
      acldvppFree(inputDataDev);
      inputDataDev = nullptr;
  
      void *outputDataDev = acldvppGetPicDescData(output);
      uint32_t outputSize = acldvppGetPicDescSize(output);
      uint32_t width = acldvppGetPicDescWidth(output);
      uint32_t width_stride = acldvppGetPicDescWidthStride(output);
      uint32_t height = acldvppGetPicDescHeight(output);
      uint32_t height_stride = acldvppGetPicDescHeightStride(output);
  
      do{
          int ret = acldvppGetPicDescRetCode(output);
          if(ret != ACL_ERROR_NONE){
              LOG_ERROR("[{}]- decode result error, retCode:{} ", m_dec_name, ret);
              acldvppFree(outputDataDev);
              outputDataDev = nullptr;
              break;
          }
  
          bool bCached = false;
          if(width > 0 && height > 0 && outputSize > 0){
  
              if (!m_bReal) {
                  while(!m_bExitReportThd) {
                      // 非实时流,即为文件情形,因为不存在花屏问题,为保证不丢帧,这里做个循环等待
                      m_decoded_data_queue_mtx.lock();
                      if(m_decoded_data_queue.size() >= 5){
                          m_decoded_data_queue_mtx.unlock();
                          std::this_thread::sleep_for(std::chrono::milliseconds(5));
                          continue;
                      }
                      m_decoded_data_queue_mtx.unlock();
                      break;
                  }
              }
              
              // cout << m_dec_name << " 解码时间间隔: " << get_cur_time_ms() - last_ts << endl;
              // last_ts = get_cur_time_ms();
  
              // 换成解码后数据, 这里这样做的是为了保证解码一直持续进行,避免后续操作阻碍文件读取和解码从而导致花屏
              DvppDataMemory* mem = nullptr;
              if (m_bResize && (width > 1920 || height > 1080)) {
                  float srcRatio = width / (float)height;
                  float stdRatio = 1920.0 / 1080.0f ;
                  int outWidth = 1920;
                  int outHeight = 1080;
                  if (srcRatio > stdRatio) {
                      outHeight = static_cast<int>(outWidth * (float)height / width) ;
                      if (outHeight % 2 == 1)
                      {
                          outHeight += 1;
                      }
                  } else if (srcRatio < stdRatio) {
                      outWidth = static_cast<int>(outHeight * (float)width / height) ;
                      if (outWidth % 2 == 1)
                      {
                          outWidth += 1;
                      }
                  }
                  
                  mem = m_vpcUtils.resize(output, outWidth, outHeight);
                  if (mem)  {
                      acldvppFree(outputDataDev);
                      outputDataDev = nullptr;
  
                      mem->setDeviceId(to_string(m_dvpp_deviceId));
                      mem->setId(m_dec_name);
                      mem->setFrameNb(frame_nb);
                  }
              } else {
                  mem = new DvppDataMemory(width, width_stride, height, height_stride, outputSize, m_dec_name, to_string(m_dvpp_deviceId), false, frame_nb, (unsigned char *)outputDataDev);
              }
              
              if(mem){
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
243
                  m_decoded_data_queue_mtx.lock();
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
244
                  m_decoded_data_queue.push(mem);
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
245
246
                  m_decoded_data_queue_mtx.unlock();
  
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
                  bCached = true;
              }
          } 
          
          if(!bCached) {
              LOG_WARN("[{}]- decode result warning, width:{} width_stride:{} height:{} height_stride:{} size:{}", m_dec_name, width, width_stride, height, height_stride, outputSize);
              acldvppFree(outputDataDev);
              outputDataDev = nullptr;
          }
      }while(0);
  
  	CHECK_AND_RETURN_NOVALUE(acldvppDestroyStreamDesc(input), "acldvppDestroyStreamDesc failed");
  	CHECK_AND_RETURN_NOVALUE(acldvppDestroyPicDesc(output), "acldvppDestroyPicDesc failed");
  }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
262
263
264
265
266
267
268
269
270
271
272
273
  DvppDataMemory* DvppStreamDecoder::GetFrame() {
      DvppDataMemory* mem = nullptr;
      m_decoded_data_queue_mtx.lock();
      if (m_decoded_data_queue.size() > 0) {
          mem = m_decoded_data_queue.front();
          m_decoded_data_queue.pop();
      }
      m_decoded_data_queue_mtx.unlock();
  
      return mem;
  }
  
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
  bool DvppStreamDecoder::sendVdecEos(aclvdecChannelDesc *vdecChannelDesc) {
      // create stream desc
      acldvppStreamDesc *streamInputDesc = acldvppCreateStreamDesc();
      if (streamInputDesc == nullptr) {
          LOG_ERROR("[{}]- fail to create input stream desc", m_dec_name);
          return false;
      }
      aclError ret = acldvppSetStreamDescEos(streamInputDesc, 1);
      if (ret != ACL_SUCCESS) {
          LOG_ERROR("[{}]- fail to set eos for stream desc, errorCode = {}", m_dec_name, static_cast<int32_t>(ret));
          (void)acldvppDestroyStreamDesc(streamInputDesc);
          return false;
      }
  
      // send vdec eos frame. when all vdec callback are completed, aclvdecSendFrame can be returned.
      LOG_INFO("[{}]- send eos", m_dec_name);
      ret = aclvdecSendFrame(vdecChannelDesc, streamInputDesc, nullptr, nullptr, nullptr);
      (void)acldvppDestroyStreamDesc(streamInputDesc);
      if (ret != ACL_SUCCESS) {
          LOG_ERROR("[{}]- fail to send eos frame, ret={}", m_dec_name, ret);
          return false;
      }
  
      return true;
  }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
300
  int DvppStreamDecoder::sendPkt(aclvdecChannelDesc *vdecChannelDesc, AVPacket* pkt, unsigned long long frame_nb, int vdec_out_size) {
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
  
      void *vdecInputbuf = nullptr;
      void *vdecOutputBuf = nullptr;
      acldvppStreamDesc *input_stream_desc = nullptr;
      acldvppPicDesc *output_pic_desc = nullptr;
      do{
          int ret = acldvppMalloc((void **)&vdecInputbuf, pkt->size);
          if(ACL_ERROR_NONE != ret){
              LOG_ERROR("[{}]- acldvppMalloc failed!, ret:{}", m_dec_name, ret);
              break;
          }
  
           ret = aclrtMemcpy(vdecInputbuf, pkt->size, pkt->data, pkt->size, ACL_MEMCPY_HOST_TO_DEVICE);
          if(ACL_ERROR_NONE != ret){
              LOG_ERROR("[{}]- aclrtMemcpy failed", m_dec_name);
              break;
          }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
319
          ret = acldvppMalloc((void **)&vdecOutputBuf, vdec_out_size);
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
          if(ret != ACL_ERROR_NONE){
              LOG_ERROR("[{}]- acldvppMalloc failed", m_dec_name);
              break;
          }
  
          input_stream_desc = acldvppCreateStreamDesc();
          if (input_stream_desc == nullptr) { 
              LOG_ERROR("[{}]- acldvppCreateStreamDesc failed", m_dec_name);
              break;
          }
          output_pic_desc = acldvppCreatePicDesc();
          if (output_pic_desc == nullptr) { 
              LOG_ERROR("[{}]- acldvppCreatePicDesc failed", m_dec_name);
              break;
          }
          CHECK_AND_BREAK(acldvppSetStreamDescData(input_stream_desc, vdecInputbuf), "acldvppSetStreamDescData failed");
          CHECK_AND_BREAK(acldvppSetStreamDescSize(input_stream_desc, pkt->size), "acldvppSetStreamDescSize failed");
          CHECK_AND_BREAK(acldvppSetPicDescData(output_pic_desc, vdecOutputBuf), "acldvppSetPicDescData failed");
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
338
          CHECK_AND_BREAK(acldvppSetPicDescSize(output_pic_desc, vdec_out_size), "acldvppSetPicDescSize failed");
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
          
          Vdec_CallBack_UserData *user_data = NULL;
          user_data = new Vdec_CallBack_UserData;
          user_data->frameId = frame_nb;
          user_data->frame_nb = frame_nb;
          // user_data->startTime = startTime;
          user_data->sendTime = UtilTools::get_cur_time_ms();
          user_data->self = this;
  
          m_in_count++;
  
          // 内部缓存计数加1
          m_DvppCacheCounter++;
          ret = aclvdecSendFrame(vdecChannelDesc, input_stream_desc, output_pic_desc, nullptr, reinterpret_cast<void *>(user_data));
          if(ret != ACL_ERROR_NONE){
              LOG_ERROR("[{}]- aclvdecSendFrame failed", m_dec_name);
              delete user_data;
              user_data = nullptr;
              return -2;
          }
  
          return 0;
      }while (0);
  
      if (vdecInputbuf){
          acldvppFree(vdecInputbuf);
          vdecInputbuf = nullptr;
      }
  
      // 报错情形
      if(input_stream_desc){
          CHECK_NOT_RETURN(acldvppDestroyStreamDesc(input_stream_desc), "acldvppDestroyStreamDesc failed");
      }
  
      if (vdecOutputBuf){
          acldvppFree(vdecOutputBuf);
  	    vdecOutputBuf = nullptr;
      }
  
      if(output_pic_desc){
          CHECK_NOT_RETURN(acldvppDestroyPicDesc(output_pic_desc), "acldvppDestroyPicDesc failed");
      }
  
      return -1;
  }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
385
  int DvppStreamDecoder::SendData(int videoType, char* data, int len, int isKey, uint64_t pts) {
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
386
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
      if (m_bExit) {
          return -1;
      }
  
      if (m_DvppCacheCounter.load() > 20) {
          // 解码器解码不过来。实时流在此处的处理会导致花屏,这是由于解码器性能问题导致,无法避免
          // 实时流在这里处理是为了避免长时间不读取数据导致数据中断
          std::this_thread::sleep_for(std::chrono::milliseconds(10));
          return -3;
      }
      
       int ret = aclrtSetCurrentContext(m_context);
      if(ret != ACL_ERROR_NONE){
          LOG_ERROR("[{}]- aclrtSetCurrentContext failed", m_dec_name);
          return -2;
      }
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
403
404
405
406
407
  
      if (vdecChannelDesc == nullptr) {
          vdecChannelDesc = aclvdecCreateChannelDesc();
          if (vdecChannelDesc == nullptr) { 
              LOG_ERROR("[{}]- aclvdecCreateChannelDesc failed", m_dec_name);
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
408
              return -2;
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
409
410
          }
  
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
411
412
413
          int ret = pthread_create(&report_thread, nullptr, ReportThd, (void *)this);
          if(ret != 0){
              LOG_ERROR("[{}]- pthread_create failed", m_dec_name);
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
414
              return -2;
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
415
416
417
418
419
420
421
422
423
424
425
426
427
428
          }
  
          acldvppStreamFormat  enType = getVdecType(videoType);
  
          // 创建 channel dec结构体
          // 通道IDdvpp层面为0~31
          CHECK_AND_BREAK(aclvdecSetChannelDescChannelId(vdecChannelDesc, m_dvpp_channel), "aclvdecSetChannelDescChannelId failed");
          CHECK_AND_BREAK(aclvdecSetChannelDescThreadId(vdecChannelDesc, report_thread), "aclvdecSetChannelDescThreadId failed");
          CHECK_AND_BREAK(aclvdecSetChannelDescCallback(vdecChannelDesc, VdecCallback), "aclvdecSetChannelDescCallback failed");
          CHECK_AND_BREAK(aclvdecSetChannelDescEnType(vdecChannelDesc, enType), "aclvdecSetChannelDescEnType failed");
          CHECK_AND_BREAK(aclvdecSetChannelDescOutPicFormat(vdecChannelDesc, PIXEL_FORMAT_YUV_SEMIPLANAR_420), "aclvdecSetChannelDescOutPicFormat failed");
          CHECK_AND_BREAK(aclvdecCreateChannel(vdecChannelDesc), "aclvdecCreateChannel failed");
      }
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
429
430
431
432
433
434
435
436
437
      AVPacket* pkt = av_packet_alloc();
      av_init_packet(pkt);
  
      pkt->size = len;
      pkt->data = (uint8_t*)data;
  
      int ret = -2;
  
      do
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
438
      {
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
439
440
441
442
443
          int vdec_out_size = parse_stream_info(videoType, pkt);
          if (vdec_out_size <= 0) {
              ret = -4;
              break;
          }
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
444
          
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
          if (vdecChannelDesc)
          {
              ret = av_bsf_send_packet(h264bsfc, pkt);
              if(ret < 0) {
                  LOG_ERROR("[{}]- av_bsf_send_packet error!", m_dec_name);
                  ret = -3;
                  break;;
              }
  
              int nSended = -1;
              while ((ret = av_bsf_receive_packet(h264bsfc, pkt)) == 0) {
                  if(!m_bExit){
                      break;
                  }
  
                  m_frame_nb++;
  
                  // dvpp 解码
                  nSended = sendPkt(vdecChannelDesc, pkt, m_frame_nb, vdec_out_size);
              }
  
              if(nSended < 0) {
                  // 执行出错,强行结束整个任务
                  ret = -2;
              }
  
              ret = 0;
          }
      } while (0);
  
      av_packet_free(&pkt);
      pkt = nullptr;
      
      return ret;
  }
  
  
  int DvppStreamDecoder::parse_stream_info(int videoType, AVPacket* pkt) {
      if (m_vdec_out_size > 0) {
          return m_vdec_out_size;
      }
  
      m_vdec_out_size = -1;
      
      AVCodecContext* avctx = nullptr;
      const AVCodec* pAVCodec = nullptr;
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
491
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
      try
      {
          if (0 == videoType) {
              pAVCodec = avcodec_find_decoder(AV_CODEC_ID_H264);
              LOG_INFO("m_avCodecName is H264");		
          } else if (1 == videoType) {
              pAVCodec = avcodec_find_decoder(AV_CODEC_ID_H265);
              LOG_INFO("m_avCodecName is H265");
          } else{
              LOG_INFO("m_avCodecName is unknown, videoType is {}", videoType);
          }
  
          if (!pAVCodec) {
              LOG_ERROR("frameCallback frame decode error, ERROR_DECODER_NOT_FOUND");
              throw -2;
          }
  
          avctx = avcodec_alloc_context3(pAVCodec);
  
          if (avcodec_open2(avctx, pAVCodec, nullptr) < 0) {
              LOG_ERROR("avcodec_open2 failed!");
              throw -2;
          }
  
          //开始解码
          int ret = avcodec_send_packet(avctx, pkt);
          if (ret < 0) {
              LOG_ERROR("Real stream视频解码失败,请检查视频设备{}: avcodec_send_packet failed. ret={}", m_dec_name, ret);
              throw -3;
          }
      
          if (frameW < 1) {
              frameW = avctx->width;
              frameH = avctx->height;
              if (frameW <= 0 || frameH <= 0) {
                  LOG_ERROR("[{}] frame W or H is error! ({},{})", m_dec_name, frameW, frameH);
                  throw -1;
              }
  
              const AVBitStreamFilter * filter = nullptr;
              if(VIDEO_TYPE_H264 == videoType){
                  filter = av_bsf_get_by_name("h264_mp4toannexb");
              }else if(VIDEO_TYPE_H265 == videoType){
                  filter = av_bsf_get_by_name("hevc_mp4toannexb");
              }else {
                  LOG_ERROR("[{}]- codec_id is not supported!", m_dec_name);
                  throw -4;
              }
  
              int ret = av_bsf_alloc(filter, &h264bsfc);
              if (ret < 0){
                  LOG_ERROR("av_bsf_alloc failed!");
                  throw -2;
              }
              
              avcodec_parameters_from_context(h264bsfc->par_in, avctx);
              av_bsf_init(h264bsfc);
          }
  
          m_fps = av_q2d(avctx->framerate);
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
552
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
          AVFrame* frame = av_frame_alloc();
          do
          {
              ret = avcodec_receive_frame(avctx, frame);
              if ((ret == AVERROR(EAGAIN) || ret == AVERROR_EOF) || ret < 0){
                  LOG_ERROR("{} - Failed to receive frame: {}", m_dec_name, ret);
                  break;
              }
              
              if (frame->width != frameW || frame->height != frameH){
                  LOG_ERROR("AVFrame is inconsistent: width is {}, height is {}; original frameW is {}, frameH is {}--{}", frame->width, frame->height, frameW, frameH , m_dec_name);
                  break;
              }
  
              m_vdec_out_size = frame->width * frame->height * 3 / 2;
          } while (0);
  
          av_frame_free(&frame); 
          frame = nullptr;
  
      }
      catch(const int& iError)  {
          m_vdec_out_size = iError;
      } catch(...) {
          m_vdec_out_size = -1;
      }
  
      if(avctx){
          avcodec_free_context(&avctx);
          avctx = nullptr;
      }
      
      return m_vdec_out_size;
  }
  
  void DvppStreamDecoder::Close() {
      m_bExit = true;
  
      if (vdecChannelDesc) {
          sendVdecEos(vdecChannelDesc);
  
          CHECK_NOT_RETURN(aclvdecDestroyChannel(vdecChannelDesc), "aclvdecDestroyChannel failed");
          CHECK_NOT_RETURN(aclvdecDestroyChannelDesc(vdecChannelDesc), "aclvdecDestroyChannelDesc failed");
          vdecChannelDesc = nullptr;
  
          m_bExitReportThd = true;
          CHECK_NOT_RETURN(pthread_join(report_thread, nullptr), "report_thread join failed");
      }
  
      release_dvpp();
  
      if(h264bsfc){
  		av_bsf_free(&h264bsfc);
  		h264bsfc = nullptr;
  	}
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
608
  
74d1e6a8   Hu Chunming   完成gb28181大体的代码,未完...
609
610
      if(decode_finished_cbk) {
          decode_finished_cbk(m_finishedDecArg);
c8285c8d   Hu Chunming   GB28181 UDP 有重大进展...
611
612
      }
  }