~ubuntu-branches/ubuntu/precise/gst-plugins-bad0.10/precise-proposed

« back to all changes in this revision

Viewing changes to sys/dvb/gstdvbsrc.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-05-12 09:51:24 UTC
  • mto: (18.3.2 experimental) (1.3.1 upstream)
  • mto: This revision was merged to the branch mainline in revision 31.
  • Revision ID: james.westby@ubuntu.com-20090512095124-ugy051q0n88kk9f8
Tags: upstream-0.10.11.2
Import upstream version 0.10.11.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
514
514
      pid_string = g_value_dup_string (value);
515
515
      if (!strcmp (pid_string, "8192")) {
516
516
        /* get the whole ts */
 
517
        int pid_count = 1;
517
518
        object->pids[0] = 8192;
 
519
        while (pid_count < MAX_FILTERS) {
 
520
          object->pids[pid_count++] = G_MAXUINT16;
 
521
        }
518
522
      } else {
519
523
        int pid = 0;
520
524
        int pid_count;
539
543
          }
540
544
          pids++;
541
545
        }
 
546
        while (pid_count < MAX_FILTERS) {
 
547
          object->pids[pid_count++] = G_MAXUINT16;
 
548
        }
542
549
 
543
550
        g_strfreev (tmp);
544
551
      }