blob: 4984e91e4545ac9573a9867d320aa8fc613fffd8 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef A_RTP_SOURCE_H_
#define A_RTP_SOURCE_H_
#include <stdint.h>
#include <media/stagefright/foundation/ABase.h>
#include <utils/List.h>
#include <utils/RefBase.h>
#include <utils/Thread.h>
#include <map>
#include "JitterCalculator.h"
namespace android {
const uint32_t kStaticJitterTimeMs = 100; // 100ms
struct ABuffer;
struct AMessage;
struct ARTPAssembler;
struct ASessionDescription;
struct ARTPSource : public RefBase {
ARTPSource(
uint32_t id,
const sp<ASessionDescription> &sessionDesc, size_t index,
const sp<AMessage> &notify);
enum {
RTP_FIRST_PACKET = 100,
RTCP_FIRST_PACKET = 101,
RTP_QUALITY = 102,
RTP_QUALITY_EMC = 103,
RTCP_SR = 200,
RTCP_RR = 201,
RTCP_TSFB = 205,
RTCP_PSFB = 206,
RTP_CVO = 300,
RTP_AUTODOWN = 400,
};
void processRTPPacket(const sp<ABuffer> &buffer);
void processRTPPacket();
void timeReset();
void timeUpdate(uint32_t rtpTime, uint64_t ntpTime);
void byeReceived();
List<sp<ABuffer> > *queue() { return &mQueue; }
void addReceiverReport(const sp<ABuffer> &buffer);
void addFIR(const sp<ABuffer> &buffer);
void addTMMBR(const sp<ABuffer> &buffer, int32_t targetBitrate);
int addNACK(const sp<ABuffer> &buffer);
void setSeqNumToNACK(uint16_t seqNum, uint16_t mask, uint16_t nowJitterHeadSeqNum);
uint32_t getSelfID();
void setSelfID(const uint32_t selfID);
void setPeriodicFIR(bool enable);
int32_t getStaticJitterTimeMs();
int32_t getBaseJitterTimeMs();
int32_t getInterArrivalJitterTimeMs();
void setStaticJitterTimeMs(const uint32_t jbTimeMs);
void putBaseJitterData(uint32_t timeStamp, int64_t arrivalTime);
void putInterArrivalJitterData(uint32_t timeStamp, int64_t arrivalTime);
void setJbTimer(const sp<AMessage> timer);
void setJbAlarmTime(int64_t nowTimeUs, int64_t alarmAfterUs);
bool isNeedToEarlyNotify();
void notifyPktInfo(int32_t bitrate, int64_t nowUs, bool isRegular);
// FIR needs to be sent by missing packet or broken video image.
void onIssueFIRByAssembler();
void noticeAbandonBuffer(int cnt=1);
uint32_t mFirstRtpTime;
int64_t mFirstSysTime;
int32_t mClockRate;
int64_t mSysAnchorTime;
int64_t mLastSysAnchorTimeUpdatedUs;
int32_t mFirstSsrc;
int32_t mHighestNackNumber;
private:
uint32_t mID;
uint32_t mHighestSeqNumber;
uint32_t mPrevExpected;
uint32_t mBaseSeqNumber;
int32_t mNumBuffersReceived;
int32_t mPrevNumBuffersReceived;
uint32_t mPrevExpectedForRR;
int32_t mPrevNumBuffersReceivedForRR;
uint32_t mLatestRtpTime;
List<sp<ABuffer> > mQueue;
sp<ARTPAssembler> mAssembler;
int32_t mStaticJbTimeMs;
sp<JitterCalc> mJitterCalc;
sp<AMessage> mJbTimer;
typedef struct infoNACK {
uint16_t seqNum;
uint16_t mask;
uint16_t nowJitterHeadSeqNum;
bool needToNACK;
} infoNACK;
Mutex mMapLock;
std::map<uint16_t, infoNACK> mNACKMap;
int getSeqNumToNACK(List<int>& list, int size);
uint32_t mLastSrRtpTime;
uint64_t mLastSrNtpTime;
int64_t mLastSrUpdateTimeUs;
bool mIsFirstRtpRtcpGap;
double mAvgRtpRtcpGapMs;
double mAvgUnderlineDelayMs;
int64_t mLastJbAlarmTimeUs;
bool mIssueFIRRequests;
bool mIssueFIRByAssembler;
int64_t mLastFIRRequestUs;
uint8_t mNextFIRSeqNo;
sp<AMessage> mNotify;
void calcTimeGapRtpRtcp(const sp<ABuffer> &buffer, int64_t nowUs);
void calcUnderlineDelay(const sp<ABuffer> &buffer, int64_t nowUs);
void adjustAnchorTimeIfRequired(int64_t nowUs);
bool queuePacket(const sp<ABuffer> &buffer);
DISALLOW_EVIL_CONSTRUCTORS(ARTPSource);
};
} // namespace android
#endif // A_RTP_SOURCE_H_