h264parse: max pps is 255

Fixes #650484.
This commit is contained in:
David Schleef 2011-05-18 13:35:34 -07:00
parent 1962b31046
commit a898d147ba

View file

@ -48,7 +48,7 @@ typedef struct _GstH264Sps GstH264Sps;
typedef struct _GstH264Pps GstH264Pps;
#define MAX_SPS_COUNT 32
#define MAX_PPS_COUNT 32
#define MAX_PPS_COUNT 256
#define CLOCK_BASE 9LL
#define CLOCK_FREQ (CLOCK_BASE * 10000)