Fix build without JPEG decoder.

This commit is contained in:
Gwenole Beauchesne 2012-04-16 10:02:29 +02:00
parent bf9f77b1af
commit 449606efc5

View file

@ -248,6 +248,7 @@ gst_vaapi_bitplane_new(GstVaapiDecoder *decoder, guint8 *data, guint data_size)
/* --- JPEG Huffman Tables --- */
/* ------------------------------------------------------------------------- */
#if USE_JPEG_DECODER
GST_VAAPI_CODEC_DEFINE_TYPE(GstVaapiHuffmanTable,
gst_vaapi_huffman_table,
GST_VAAPI_TYPE_CODEC_OBJECT)
@ -302,3 +303,4 @@ gst_vaapi_huffman_table_new(
return NULL;
return GST_VAAPI_HUFFMAN_TABLE_CAST(object);
}
#endif