当前位置: 首页>>代码示例>>C++>>正文


C++ ISegment类代码示例

本文整理汇总了C++中ISegment的典型用法代码示例。如果您正苦于以下问题:C++ ISegment类的具体用法?C++ ISegment怎么用?C++ ISegment使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。


在下文中一共展示了ISegment类的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: FN

//------------------------------------------------------------------------//
void MusicManager::OnSegmentStart()
{
	FN("MusicManager::OnSegmentStart()");

	ISegment* pCurrent;
	ISegment* pNext;
	AudioMgr()->GetCurrentSegment(pCurrent);
	if(m_pPlayingInterlude)
	{
		if(!m_pPlayingInterlude->GetTransition(m_pPreviousTheme, pCurrent, pNext))
		{
			m_pPlayingInterlude = 0;
			if(!m_pPlayingTheme)
				return;
			m_pPlayingTheme->StartTheme();
			if(!m_pPlayingTheme->GetTransition(m_pPreviousTheme, pCurrent, pNext))
				return;
		}
	}
	else
	{
		if(!m_pPlayingTheme)
			return;
		if(!m_pPlayingTheme->GetTransition(m_pPreviousTheme, pCurrent, pNext))
			return;
	}
	pNext->Play();

}
开发者ID:F5000,项目名称:spree,代码行数:30,代码来源:MusicMgr.cpp

示例2: getSegments

ISegment * SegmentInformation::getSegment(SegmentInfoType type, uint64_t pos) const
{
    std::vector<ISegment *> retSegments;
    const size_t size = getSegments( type, retSegments );
    if( size )
    {
        if(size == 1 && retSegments[0]->isTemplate())
        {
            MediaSegmentTemplate *templ = dynamic_cast<MediaSegmentTemplate*>(retSegments[0]);
            if(!templ || templ->segmentTimeline.Get() == NULL ||
               templ->segmentTimeline.Get()->maxElementNumber() > pos)
                return templ;
        }
        else
        {
            std::vector<ISegment *>::const_iterator it;
            for(it = retSegments.begin(); it != retSegments.end(); ++it)
            {
                ISegment *seg = *it;
                if(seg->getSequenceNumber() >= pos)
                {
                    if(seg->getSequenceNumber() == pos)
                        return seg;
                    else
                        return NULL;
                }
            }
        }
    }

    return NULL;
}
开发者ID:n2i911,项目名称:vlc-with-fec,代码行数:32,代码来源:SegmentInformation.cpp

示例3: getNextChunk

Chunk * SegmentTracker::getNextChunk(StreamType type, bool switch_allowed)
{
    BaseRepresentation *rep;
    ISegment *segment;

    if(!currentPeriod)
        return NULL;

    if( !switch_allowed ||
       (prevRepresentation && prevRepresentation->getSwitchPolicy() == SegmentInformation::SWITCH_UNAVAILABLE) )
        rep = prevRepresentation;
    else
        rep = logic->getCurrentRepresentation(type, currentPeriod);

    if ( rep == NULL )
            return NULL;

    if(rep != prevRepresentation)
    {
        prevRepresentation = rep;
        initializing = true;
    }

    if(initializing)
    {
        initializing = false;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INIT);
        if(segment)
            return segment->toChunk(count, rep);
    }

    if(!indexed)
    {
        indexed = true;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INDEX);
        if(segment)
            return segment->toChunk(count, rep);
    }

    segment = rep->getSegment(BaseRepresentation::INFOTYPE_MEDIA, count);
    if(!segment)
    {
        currentPeriod = playlist->getNextPeriod(currentPeriod);
        resetCounter();
        return getNextChunk(type, switch_allowed);
    }

    Chunk *chunk = segment->toChunk(count, rep);
    if(chunk)
        count++;

    return chunk;
}
开发者ID:Adatan,项目名称:vlc,代码行数:53,代码来源:SegmentTracker.cpp

示例4: if

ISegment * SegmentList::getSegmentByNumber(uint64_t number)
{
    std::vector<ISegment *>::const_iterator it = segments.begin();
    for(it = segments.begin(); it != segments.end(); ++it)
    {
        ISegment *seg = *it;
        if(seg->getSequenceNumber() == number)
        {
            return seg;
        }
        else if (seg->getSequenceNumber() > number)
        {
            break;
        }
    }
    return NULL;
}
开发者ID:IAPark,项目名称:vlc,代码行数:17,代码来源:SegmentList.cpp

示例5: while

void SegmentList::pruneBySegmentNumber(uint64_t tobelownum)
{
    std::vector<ISegment *>::iterator it = segments.begin();
    while(it != segments.end())
    {
        ISegment *seg = *it;

        if(seg->getSequenceNumber() >= tobelownum)
            break;

        if(seg->chunksuse.Get()) /* can't prune from here, still in use */
            break;

        delete *it;
        it = segments.erase(it);
    }
}
开发者ID:IAPark,项目名称:vlc,代码行数:17,代码来源:SegmentList.cpp

示例6: getSegments

/* Returns wanted segment, or next in sequence if not found */
ISegment * SegmentInformation::getNextSegment(SegmentInfoType type, uint64_t i_pos,
                                              uint64_t *pi_newpos, bool *pb_gap) const
{
    *pb_gap = false;
    *pi_newpos = i_pos;
    if( type != INFOTYPE_MEDIA )
        return NULL;

    std::vector<ISegment *> retSegments;
    const size_t size = getSegments( type, retSegments );
    if( size )
    {
        std::vector<ISegment *>::const_iterator it;
        for(it = retSegments.begin(); it != retSegments.end(); ++it)
        {
            ISegment *seg = *it;
            if(seg->isTemplate()) /* we don't care about seq number */
            {
                /* Check if we don't exceed timeline */
                MediaSegmentTemplate *templ = dynamic_cast<MediaSegmentTemplate*>(retSegments[0]);
                SegmentTimeline *timeline = (templ) ? templ->segmentTimeline.Get() : NULL;
                if(timeline)
                {
                    *pi_newpos = std::max(timeline->minElementNumber(), i_pos);
                    if(timeline->maxElementNumber() < i_pos)
                        return NULL;
                }
                else
                {
                    *pi_newpos = i_pos;
                    /* start number */
                    *pi_newpos = std::max((uint64_t)templ->startNumber.Get(), i_pos);
                }
                return seg;
            }
            else if(seg->getSequenceNumber() >= i_pos)
            {
                *pi_newpos = seg->getSequenceNumber();
                *pb_gap = (*pi_newpos != i_pos);
                return seg;
            }
        }
    }

    return NULL;
}
开发者ID:anutakay,项目名称:vlc-for-krasview,代码行数:47,代码来源:SegmentInformation.cpp

示例7: insertIntoSegment

static void insertIntoSegment(std::vector<ISegment *> &seglist, size_t start,
                              size_t end, stime_t time)
{
    std::vector<ISegment *>::iterator segIt;
    for(segIt = seglist.begin(); segIt < seglist.end(); ++segIt)
    {
        ISegment *segment = *segIt;
        if(segment->getClassId() == Segment::CLASSID_SEGMENT &&
           (end == 0 || segment->contains(end)))
        {
            SubSegment *subsegment = new SubSegment(segment, start, (end != 0) ? end : 0);
            subsegment->startTime.Set(time);
            segment->addSubSegment(subsegment);
            break;
        }
    }
}
开发者ID:0xheart0,项目名称:vlc,代码行数:17,代码来源:SegmentInformation.cpp

示例8: cut

void cut(const ISegment& seg, const char * const filePath)
{
    ifstream ifile(filePath);
    vector<string> words;
    string line;
    string res;
	string s(filePath);
	s += ".seg";
	ofstream outfile(s.c_str());
    while(getline(ifile, line))
    {
        if(!line.empty())
        {
            words.clear();
            seg.cut(line, words);
            join(words.begin(), words.end(), res, " ");
            //cout<< res <<endl;
			outfile << res;
        }
    }
}
开发者ID:lostfish,项目名称:cppjieba,代码行数:21,代码来源:mysegment.cpp

示例9: notify

SegmentChunk * SegmentTracker::getNextChunk(bool switch_allowed, HTTPConnectionManager *connManager)
{
    BaseRepresentation *rep = NULL;
    ISegment *segment;

    if(!adaptationSet)
        return NULL;

    /* Ensure we don't keep chaining init/index without data */
    if( initializing )
    {
        if( prevRepresentation )
            switch_allowed = false;
        else
            switch_allowed = true;
    }

    if( !switch_allowed ||
       (prevRepresentation && prevRepresentation->getSwitchPolicy() == SegmentInformation::SWITCH_UNAVAILABLE) )
        rep = prevRepresentation;
    else
        rep = logic->getNextRepresentation(adaptationSet, prevRepresentation);

    if ( rep == NULL )
            return NULL;


    if(rep != prevRepresentation)
    {
        notify(SegmentTrackerEvent(prevRepresentation, rep));
        prevRepresentation = rep;
        init_sent = false;
        index_sent = false;
        initializing = true;
    }

    /* Ensure ephemere content is updated/loaded */
    if(rep->needsUpdate())
        updateSelected();

    if(!init_sent)
    {
        init_sent = true;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INIT);
        if(segment)
            return segment->toChunk(count, rep, connManager);
    }

    if(!index_sent)
    {
        index_sent = true;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INDEX);
        if(segment)
            return segment->toChunk(count, rep, connManager);
    }

    bool b_gap = false;
    segment = rep->getNextSegment(BaseRepresentation::INFOTYPE_MEDIA, count, &count, &b_gap);
    if(!segment)
    {
        reset();
        return NULL;
    }

    /* stop initializing after 1st chunk */
    initializing = false;

    SegmentChunk *chunk = segment->toChunk(count, rep, connManager);
    if(chunk)
        count++;

    /* We need to check segment/chunk format changes, as we can't rely on representation's (HLS)*/
    if(format != chunk->getStreamFormat())
    {
        format = chunk->getStreamFormat();
        notify(SegmentTrackerEvent(&format));
    }

    /* Handle both implicit and explicit discontinuities */
    if( (b_gap && count) || (chunk && chunk->discontinuity) )
    {
        notify(SegmentTrackerEvent(chunk));
    }

    return chunk;
}
开发者ID:NDOBJC,项目名称:vlc,代码行数:86,代码来源:SegmentTracker.cpp

示例10: if

SegmentChunk * SegmentTracker::getNextChunk(bool switch_allowed, HTTPConnectionManager *connManager)
{
    BaseRepresentation *rep = NULL, *prevRep = NULL;
    ISegment *segment;

    if(!adaptationSet)
        return NULL;

    /* Ensure we don't keep chaining init/index without data */
    if( initializing )
    {
        if( curRepresentation )
            switch_allowed = false;
        else
            switch_allowed = true;
    }

    if( !switch_allowed ||
       (curRepresentation && curRepresentation->getSwitchPolicy() == SegmentInformation::SWITCH_UNAVAILABLE) )
        rep = curRepresentation;
    else
        rep = logic->getNextRepresentation(adaptationSet, curRepresentation);

    if ( rep == NULL )
            return NULL;


    if(rep != curRepresentation)
    {
        notify(SegmentTrackerEvent(curRepresentation, rep));
        prevRep = curRepresentation;
        curRepresentation = rep;
        init_sent = false;
        index_sent = false;
        initializing = true;
    }

    bool b_updated = false;
    /* Ensure ephemere content is updated/loaded */
    if(rep->needsUpdate())
        b_updated = rep->runLocalUpdates(getPlaybackTime(), curNumber, false);

    if(prevRep && !rep->consistentSegmentNumber())
    {
        /* Convert our segment number */
        next = rep->translateSegmentNumber(next, prevRep);
    }
    else if(first && rep->getPlaylist()->isLive())
    {
        next = rep->getLiveStartSegmentNumber(next);
        first = false;
    }

    if(b_updated)
    {
        if(!rep->consistentSegmentNumber())
            curRepresentation->pruneBySegmentNumber(curNumber);
        curRepresentation->scheduleNextUpdate(next);
    }

    if(!init_sent)
    {
        init_sent = true;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INIT);
        if(segment)
            return segment->toChunk(next, rep, connManager);
    }

    if(!index_sent)
    {
        index_sent = true;
        segment = rep->getSegment(BaseRepresentation::INFOTYPE_INDEX);
        if(segment)
            return segment->toChunk(next, rep, connManager);
    }

    bool b_gap = false;
    segment = rep->getNextSegment(BaseRepresentation::INFOTYPE_MEDIA, next, &next, &b_gap);
    if(!segment)
    {
        reset();
        return NULL;
    }

    if(initializing)
    {
        b_gap = false;
        /* stop initializing after 1st chunk */
        initializing = false;
    }

    SegmentChunk *chunk = segment->toChunk(next, rep, connManager);

    /* We need to check segment/chunk format changes, as we can't rely on representation's (HLS)*/
    if(chunk && format != chunk->getStreamFormat())
    {
        format = chunk->getStreamFormat();
        notify(SegmentTrackerEvent(&format));
    }

//.........这里部分代码省略.........
开发者ID:0xheart0,项目名称:vlc,代码行数:101,代码来源:SegmentTracker.cpp

示例11: if

SegmentChunk * SegmentTracker::getNextChunk(bool switch_allowed,
                                            AbstractConnectionManager *connManager)
{
    /* LVP added, TFE DEBUG */
    //msg_Info(NULL, "TFE DEBUG SegmentTracker getNextChunk, %" PRId64, mdate());
    //std::cerr << "TFE DEBUG SegmentTracker getNextChunk, " << mdate() << std::endl;

    BaseRepresentation *rep = NULL, *prevRep = NULL;
    ISegment *segment;

    if(!adaptationSet) {

        /* LVP added, TFE DEBUG */
        //msg_Info(NULL, "TFE DEBUG SegmentTracker getNextChunk no adaptation set, %" PRId64, mdate());
        //std::cerr << "TFE DEBUG SegmentTracker getNextChunk no adaptation set, " << mdate() << std::endl;

        return NULL;
    }


    /* Ensure we don't keep chaining init/index without data */
    if( initializing )
    {
        if( curRepresentation )
            switch_allowed = false;
        else
            switch_allowed = true;
    }

    if( !switch_allowed ||
       (curRepresentation && curRepresentation->getSwitchPolicy() == SegmentInformation::SWITCH_UNAVAILABLE) )
        rep = curRepresentation;
    else
        rep = logic->getNextRepresentation(adaptationSet, curRepresentation);

    if ( rep == NULL ) {

        /* LVP added, TFE DEBUG */
        //msg_Info(NULL, "TFE DEBUG SegmentTracker no rep 1, %" PRId64, mdate());
        //std::cerr << "TFE DEBUG SegmentTracker no rep 1, " << mdate() << std::endl;

        return NULL;
    }


    if(rep != curRepresentation)
    {
        notify(SegmentTrackerEvent(curRepresentation, rep));
        prevRep = curRepresentation;
        curRepresentation = rep;
        init_sent = false;
        index_sent = false;
        initializing = true;
    }

    bool b_updated = false;
    /* Ensure ephemere content is updated/loaded */
    if(rep->needsUpdate())
        b_updated = rep->runLocalUpdates(getPlaybackTime(), curNumber, false);

    if(prevRep && !rep->consistentSegmentNumber())
    {
        /* Convert our segment number */
        next = rep->translateSegmentNumber(next, prevRep);
    }
    else if(first && rep->getPlaylist()->isLive())
    {
        next = rep->getLiveStartSegmentNumber(next);
        first = false;
    }

    if(b_updated)
    {
        if(!rep->consistentSegmentNumber())
            curRepresentation->pruneBySegmentNumber(curNumber);
        curRepresentation->scheduleNextUpdate(next);
    }

    if(rep->getStreamFormat() != format)
    {
        /* Initial format ? */
        if(format == StreamFormat(StreamFormat::UNSUPPORTED))
        {
            format = rep->getStreamFormat();
        }
        else
        {
            format = rep->getStreamFormat();
            notify(SegmentTrackerEvent(&format)); /* Notify new demux format */
            return NULL; /* Force current demux to end */
        }
    }

    if(format == StreamFormat(StreamFormat::UNSUPPORTED))
    {
        return NULL; /* Can't return chunk because no demux will be created */
    }

    if(!init_sent)
    {
//.........这里部分代码省略.........
开发者ID:lvpeschke,项目名称:vlc,代码行数:101,代码来源:SegmentTracker.cpp

示例12: FN

//------------------------------------------------------------------------//
void AudioManager::UpdateMusic()
{
	FN("AudioManager::UpdateMusic()");

	DMUS_NOTIFICATION_PMSG* pPmsg;
	while(true)
	{
		WaitForSingleObject(m_hMusicNotify, INFINITE);
		if(!m_bInitialized)
		{
			SetEvent(m_hTerm[MUSIC_EVENT]);
			return;
		}
		while (S_OK == m_pMusicPerformance->GetNotificationPMsg(&pPmsg))
		{
			if(pPmsg->guidNotificationType == GUID_NOTIFICATION_MEASUREANDBEAT)
			{
				DebugOut(5, "Music notification: Beat = %d", pPmsg->dwField1);
			}
			else if(pPmsg->guidNotificationType == GUID_NOTIFICATION_PERFORMANCE)
			{
				if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_MUSICALMOSTEND)
				{
					DebugOut(5, "Music notification: Music almost at end");

					if(!m_pCurrentSegment)
						break;

					if(m_pCurrentSegment->IsLooping() && !m_pNextSegment)
					{
						ISegment* pSeg = m_pCurrentSegment;
						m_pCurrentSegment = 0;
						m_pNextSegment = 0;
						pSeg->Play();
					}
					else if(m_pNextSegment)
					{
						ISegment* pSeg = m_pNextSegment;
						m_pCurrentSegment = 0;
						m_pNextSegment = 0;
						pSeg->Play();
					}
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_MUSICSTARTED)
				{
					DebugOut(5, "Music notification: Music started");
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_MUSICSTOPPED)
				{
					DebugOut(5, "Music notification: Music stopped");
				}
			}
			else if(pPmsg->guidNotificationType == GUID_NOTIFICATION_SEGMENT)
			{
				if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_SEGABORT)
				{
					DebugOut(5, "Music notification: Segment aborted");
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_SEGALMOSTEND)
				{
					DebugOut(5, "Music notification: Segment almost at end");
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_SEGEND)
				{
					DebugOut(5, "Music notification: Segment at end");
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_SEGLOOP)
				{
					DebugOut(5, "Music notification: Segment has looped");
				}
				else if(pPmsg->dwNotificationOption == DMUS_NOTIFICATION_SEGSTART)
				{
					DebugOut(5, "Music notification: Segment has started");

					if(m_Init.m_pMusicCallback)
						m_Init.m_pMusicCallback->OnSegmentStart();
				}
			}
			m_pMusicPerformance->FreePMsg((DMUS_PMSG*)pPmsg); 
		}
	}
}
开发者ID:F5000,项目名称:spree,代码行数:83,代码来源:AudioMgr.cpp


注:本文中的ISegment类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。