[svn] / branches / release-1_0-branch / xvidcore / src / bitstream / bitstream.c Repository:
ViewVC logotype

Diff of /branches/release-1_0-branch/xvidcore/src/bitstream/bitstream.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 677, Tue Nov 26 23:44:11 2002 UTC revision 723, Sun Dec 15 01:21:12 2002 UTC
# Line 50  Line 50 
50   *  exception also makes it possible to release a modified version which   *  exception also makes it possible to release a modified version which
51   *  carries forward this exception.   *  carries forward this exception.
52   *   *
53   * $Id: bitstream.c,v 1.36 2002-11-26 23:44:10 edgomez Exp $   * $Id: bitstream.c,v 1.37 2002-12-15 01:21:12 edgomez Exp $
54   *   *
55   ****************************************************************************/   ****************************************************************************/
56    
# Line 289  Line 289 
289                          {                          {
290                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");                                  DPRINTF(DPRINTF_HEADER, "+ vol_control_parameters");
291                                  BitstreamSkip(bs, 2);   /* chroma_format */                                  BitstreamSkip(bs, 2);   /* chroma_format */
292                                  dec->low_delay = BitstreamGetBit(bs);   /* low_delay */                                  dec->low_delay = (uint8_t)BitstreamGetBit(bs);  /* low_delay */
293                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);                                  DPRINTF(DPRINTF_HEADER, "low_delay %i", dec->low_delay);
294                                  if (BitstreamGetBit(bs))        /* vbv_parameters */                                  if (BitstreamGetBit(bs))        /* vbv_parameters */
295                                  {                                  {
# Line 474  Line 474 
474                                          }                                          }
475                                  }                                  }
476    
477                                  if ((dec->scalability = BitstreamGetBit(bs)))   /* scalability */                                  if ((dec->scalability = (int8_t)BitstreamGetBit(bs)))   /* scalability */
478                                  {                                  {
479                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");                                          DPRINTF(DPRINTF_ERROR, "scalability not supported");
480                                          return -1;                                          return -1;

Legend:
Removed from v.677  
changed lines
  Added in v.723

No admin address has been configured
ViewVC Help
Powered by ViewVC 1.0.4