From 3a0576702825423abecb32627c530dbc4c0f73bc Mon Sep 17 00:00:00 2001 From: Vittorio Giovara Date: Thu, 13 Feb 2014 00:43:17 +0100 Subject: h264: store current_sps_id inside the current sps In preparation for MVC support. --- libavcodec/h264_ps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavcodec/h264_ps.c') diff --git a/libavcodec/h264_ps.c b/libavcodec/h264_ps.c index 88b973a783..932c27ab06 100644 --- a/libavcodec/h264_ps.c +++ b/libavcodec/h264_ps.c @@ -318,6 +318,7 @@ int ff_h264_decode_seq_parameter_set(H264Context *h) if (!sps) return AVERROR(ENOMEM); + sps->sps_id = sps_id; sps->time_offset_length = 24; sps->profile_idc = profile_idc; sps->constraint_set_flags = constraint_set_flags; @@ -504,7 +505,6 @@ int ff_h264_decode_seq_parameter_set(H264Context *h) av_free(h->sps_buffers[sps_id]); h->sps_buffers[sps_id] = sps; h->sps = *sps; - h->current_sps_id = sps_id; return 0; -- cgit v1.2.3