Diff for /multiplexer/splitpes.c between versions 1.10 and 1.11

version 1.10, 2008/11/12 21:46:44 version 1.11, 2013/10/17 08:37:06
Line 38 Line 38
 /* Guess a stream type.  /* Guess a stream type.
  * Return: a stream type according to ISO 13818-1 table 2-29,  0 if none such   * Return: a stream type according to ISO 13818-1 table 2-29,  0 if none such
  */   */
 int guess_streamtype (int streamid)  int guess_streamtype (int streamid, int streamtype)
 {  {
   if ((streamid >= PES_CODE_AUDIO)    if ((streamid >= PES_CODE_AUDIO)
    && (streamid < PES_CODE_AUDIO + PES_NUMB_AUDIO)) {     && (streamid < PES_CODE_AUDIO + PES_NUMB_AUDIO)) {
     return (PES_STRTYP_AUDIO13818);      if (streamtype_isaudio(streamtype)) {
         return (streamtype);
       } else {
         return (PES_STRTYP_AUDIO13818);
       }
   }    }
   if ((streamid >= PES_CODE_VIDEO)    if ((streamid >= PES_CODE_VIDEO)
    && (streamid < PES_CODE_VIDEO + PES_NUMB_VIDEO)) {     && (streamid < PES_CODE_VIDEO + PES_NUMB_VIDEO)) {
     return (PES_STRTYP_VIDEO13818);      if (streamtype_isvideo(streamtype)) {
         return (streamtype);
       } else {
         return (PES_STRTYP_VIDEO13818);
       }
   }    }
   switch (streamid) {    switch (streamid) {
     case PES_CODE_PRIVATE1:      case PES_CODE_PRIVATE1:
Line 182  boolean split_pes (file_descr *f) Line 190  boolean split_pes (file_descr *f)
         if (f->u.pes.stream == NULL) {          if (f->u.pes.stream == NULL) {
           if (f->automatic) {            if (f->automatic) {
             f->u.pes.stream = connect_streamprog (f,f->auto_programnb,              f->u.pes.stream = connect_streamprog (f,f->auto_programnb,
                 p,-p,guess_streamtype(p),NULL,NULL,FALSE);                  p,-p,guess_streamtype(p,-1),NULL,NULL,FALSE);
             if (f->u.pes.stream == NULL) {              if (f->u.pes.stream == NULL) {
               f->automatic = FALSE;                f->automatic = FALSE;
               return (FALSE);                return (FALSE);

Removed from v.1.10  
changed lines
  Added in v.1.11


LinuxTV legacy CVS <linuxtv.org/cvs>