How to write a Live555 FramedSource to allow me to stream H.264 live

后端 未结 2 1291
北荒
北荒 2021-02-02 02:12

I\'ve been trying to write a class that derives from FramedSource in Live555 that will allow me to stream live data from my D3D9 application to an MP4 or similar.

What I

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-02-02 02:44

    The deliverFrame method lacks the following check at its start:

    if (!isCurrentlyAwaitingData()) return;    
    

    see DeviceSource.cpp in LIVE

提交回复
热议问题