~ubuntu-branches/ubuntu/wily/me-tv/wily-proposed

« back to all changes in this revision

Viewing changes to src/mpeg_stream.cc

  • Committer: Bazaar Package Importer
  • Author(s): Michael Lamothe
  • Date: 2010-05-22 13:10:32 UTC
  • mfrom: (1.1.12 upstream) (3.1.11 sid)
  • Revision ID: james.westby@ubuntu.com-20100522131032-ibethpcgb8lpwt1w
Tags: 1.2.4-1
* New upstream release
* Maintainer change to Michael Lamothe
* Updated debian/control
  - Added libunique-dev to Build-Depends
  - Added libdbus-glib-1-dev to Build-Depends
* Added me-tv-player.1 to debian/me-tv.manpages

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
        pmt_counter = 0;
33
33
}
34
34
 
 
35
Mpeg::Stream::~Stream()
 
36
{
 
37
        g_debug("MPEG stream destroyed");
 
38
}
 
39
 
35
40
void Mpeg::Stream::clear()
36
41
{
37
42
        video_streams.clear();
515
520
        guint index = 0;
516
521
 
517
522
        if (pid == pcr_pid) return true;
518
 
        
 
523
 
519
524
        for (index = 0; index < video_streams.size(); index++)
520
525
        { if (video_streams[index].pid == pid) return true; }
521
526