android MyHandler.h TrackInfo 知多少?

新手上路,请多包涵
 struct TrackInfo {
    AString mURL;
    int mRTPSocket;
    int mRTCPSocket;
    bool mUsingInterleavedTCP;
    uint32_t mFirstSeqNumInSegment;
    bool mNewSegment;

    uint32_t mRTPAnchor;
    int64_t mNTPAnchorUs;
    int32_t mTimeScale;
    bool mEOSReceived;

    uint32_t mNormalPlayTimeRTP;
    int64_t mNormalPlayTimeUs;

    sp<APacketSource> mPacketSource;

    // Stores packets temporarily while no notion of time
    // has been established yet.
    List<sp<ABuffer> > mPackets;
};

//一下成员什么意思?如果你知道每个成员的意思,麻烦一并说下,thanks!!!
uint32_t mRTPAnchor;
int64_t mNTPAnchorUs;
int32_t mTimeScale;
bool mEOSReceived;

阅读 2.7k
撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题