diff options
Diffstat (limited to 'src/libfaad/sbr_syntax.c')
-rw-r--r-- | src/libfaad/sbr_syntax.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/libfaad/sbr_syntax.c b/src/libfaad/sbr_syntax.c index 473c90fac..ef649277f 100644 --- a/src/libfaad/sbr_syntax.c +++ b/src/libfaad/sbr_syntax.c @@ -22,7 +22,7 @@ ** Commercial non-GPL licensing of this software is possible. ** For more info contact Ahead Software through Mpeg4AAClicense@nero.com. ** -** $Id: sbr_syntax.c,v 1.5 2004/01/26 22:34:11 jstembridge Exp $ +** $Id: sbr_syntax.c,v 1.6 2004/12/03 01:15:30 tmattern Exp $ **/ #include "common.h" @@ -693,10 +693,12 @@ static uint16_t sbr_extension(bitfile *ld, sbr_info *sbr, { #ifdef PS_DEC case EXTENSION_ID_PS: + sbr->ps_used = 1; return ps_data(&(sbr->ps), ld); #endif #ifdef DRM_PS case DRM_PARAMETRIC_STEREO: + sbr->ps_used = 1; return drm_ps_data(&(sbr->drm_ps), ld); #endif default: |