summaryrefslogtreecommitdiff
path: root/gst-libs
diff options
context:
space:
mode:
authorGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-12-17 04:42:29 -0800
committerGwenole Beauchesne <gwenole.beauchesne@intel.com>2012-12-17 14:56:11 +0100
commit59573d672842dcaac607110a1c3ee1c6975efdb6 (patch)
treef90ea8e57d3582cd4979f7461098366124abe7d3 /gst-libs
parent66eaa2d5ed3233f5eaa1be6b449b29fd66b6f08c (diff)
h264: initialize VA context before allocating the first slice.
Fix decode_slice() to ensure a VA context exists prior to creating a new GstVaapiSliceH264, which invokes vaCreateBuffer() with some VA context ID. i.e. the latter was not initialized, thus causing failures on Cedar Trail for example.
Diffstat (limited to 'gst-libs')
-rw-r--r--gst-libs/gst/vaapi/gstvaapidecoder_h264.c34
1 files changed, 29 insertions, 5 deletions
diff --git a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
index 4426d817..3f8bb844 100644
--- a/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
+++ b/gst-libs/gst/vaapi/gstvaapidecoder_h264.c
@@ -515,6 +515,9 @@ struct _GstVaapiDecoderH264Private {
/* Last decoded PPS. May not be the last activated one. Just here because
it may not fit stack memory allocation in decode_pps() */
GstH264PPS last_pps;
+ /* Temporary slice header. Just here because it may not fit stack
+ memory allocation in decode_slice() */
+ GstH264SliceHdr temp_slice_hdr;
GstVaapiPictureH264 *current_picture;
GstVaapiFrameStore *prev_frame;
GstVaapiFrameStore *dpb[16];
@@ -2863,9 +2866,25 @@ decode_slice(GstVaapiDecoderH264 *decoder, GstH264NalUnit *nalu)
GstVaapiSliceH264 *slice = NULL;
GstH264SliceHdr *slice_hdr;
GstH264ParserResult result;
+ gboolean is_first_slice = !priv->has_context;
GST_DEBUG("slice (%u bytes)", nalu->size);
+ if (is_first_slice) {
+ slice_hdr = &priv->temp_slice_hdr;
+ memset(slice_hdr, 0, sizeof(*slice_hdr));
+ result = gst_h264_parser_parse_slice_hdr(priv->parser, nalu,
+ slice_hdr, TRUE, TRUE);
+ if (result != GST_H264_PARSER_OK) {
+ status = get_status(result);
+ goto error;
+ }
+
+ status = ensure_context(decoder, slice_hdr->pps->sequence);
+ if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
+ return status;
+ }
+
slice = gst_vaapi_slice_h264_new(
decoder,
nalu->data + nalu->offset,
@@ -2877,11 +2896,16 @@ decode_slice(GstVaapiDecoderH264 *decoder, GstH264NalUnit *nalu)
}
slice_hdr = &slice->slice_hdr;
- memset(slice_hdr, 0, sizeof(*slice_hdr));
- result = gst_h264_parser_parse_slice_hdr(priv->parser, nalu, slice_hdr, TRUE, TRUE);
- if (result != GST_H264_PARSER_OK) {
- status = get_status(result);
- goto error;
+ if (is_first_slice)
+ memcpy(slice_hdr, &priv->temp_slice_hdr, sizeof(*slice_hdr));
+ else {
+ memset(slice_hdr, 0, sizeof(*slice_hdr));
+ result = gst_h264_parser_parse_slice_hdr(priv->parser, nalu,
+ slice_hdr, TRUE, TRUE);
+ if (result != GST_H264_PARSER_OK) {
+ status = get_status(result);
+ goto error;
+ }
}
if (is_new_picture(decoder, nalu, slice_hdr)) {