Browse Source

avcodec/h264_ps: fix storage size for offset_for_ref_frame

The spec defines the valid range of values to be INT32_MIN + 1 to INT32_MAX, inclusive.

Reviewed-by: Mark Thompson <sw@jkqxz.net>
Signed-off-by: James Almer <jamrial@gmail.com>
tags/n4.2
James Almer 6 years ago
parent
commit
53cc3338f7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavcodec/h264_ps.h

+ 1
- 1
libavcodec/h264_ps.h View File

@@ -81,7 +81,7 @@ typedef struct SPS {
uint32_t num_units_in_tick;
uint32_t time_scale;
int fixed_frame_rate_flag;
short offset_for_ref_frame[256]; // FIXME dyn aloc?
int32_t offset_for_ref_frame[256];
int bitstream_restriction_flag;
int num_reorder_frames;
int scaling_matrix_present;


Loading…
Cancel
Save