diff options
author | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-13 00:43:17 +0100 |
---|---|---|
committer | Vittorio Giovara <vittorio.giovara@gmail.com> | 2014-02-14 05:05:46 +0100 |
commit | 3a0576702825423abecb32627c530dbc4c0f73bc (patch) | |
tree | 54773607d51e7045dc8b11a93a5aa8937be5fdc9 /libavcodec/h264.h | |
parent | 73e8fab31dc19c4371499e612856accbc00b2820 (diff) | |
download | ffmpeg-3a0576702825423abecb32627c530dbc4c0f73bc.tar.gz |
h264: store current_sps_id inside the current sps
In preparation for MVC support.
Diffstat (limited to 'libavcodec/h264.h')
-rw-r--r-- | libavcodec/h264.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264.h b/libavcodec/h264.h index 6aa30b9185..ef814630ab 100644 --- a/libavcodec/h264.h +++ b/libavcodec/h264.h @@ -146,6 +146,7 @@ typedef enum { * Sequence parameter set */ typedef struct SPS { + unsigned int sps_id; int profile_idc; int level_idc; int chroma_format_idc; @@ -353,7 +354,6 @@ typedef struct H264Context { ptrdiff_t mb_linesize; ///< may be equal to s->linesize or s->linesize * 2, for mbaff ptrdiff_t mb_uvlinesize; - unsigned current_sps_id; ///< id of the current SPS SPS sps; ///< current sps /** |