2011-08-05 09:55:11 +00:00
|
|
|
/*
|
|
|
|
* gstvaapidecoder_mpeg2.c - MPEG-2 decoder
|
|
|
|
*
|
2013-01-29 13:14:45 +00:00
|
|
|
* Copyright (C) 2011-2013 Intel Corporation
|
2011-08-05 09:55:11 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free
|
|
|
|
* Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:gstvaapidecoder_mpeg2
|
|
|
|
* @short_description: MPEG-2 decoder
|
|
|
|
*/
|
|
|
|
|
2012-01-30 17:12:59 +00:00
|
|
|
#include "sysdeps.h"
|
2011-08-05 09:55:11 +00:00
|
|
|
#include <string.h>
|
|
|
|
#include <gst/base/gstbitreader.h>
|
|
|
|
#include <gst/codecparsers/gstmpegvideoparser.h>
|
|
|
|
#include "gstvaapidecoder_mpeg2.h"
|
2012-01-26 08:48:11 +00:00
|
|
|
#include "gstvaapidecoder_objects.h"
|
2012-03-28 12:36:30 +00:00
|
|
|
#include "gstvaapidecoder_dpb.h"
|
2011-08-05 09:55:11 +00:00
|
|
|
#include "gstvaapidecoder_priv.h"
|
|
|
|
#include "gstvaapidisplay_priv.h"
|
|
|
|
#include "gstvaapiobject_priv.h"
|
|
|
|
|
|
|
|
#define DEBUG 1
|
|
|
|
#include "gstvaapidebug.h"
|
|
|
|
|
2013-01-02 13:45:50 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* --- VLC Reader --- */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
#define READ_UINT8(br, val, nbits) G_STMT_START { \
|
|
|
|
if (!gst_bit_reader_get_bits_uint8 (br, &val, nbits)) { \
|
|
|
|
GST_WARNING ("failed to read uint8, nbits: %d", nbits); \
|
|
|
|
goto failed; \
|
|
|
|
} \
|
|
|
|
} G_STMT_END
|
|
|
|
|
2012-02-23 13:17:34 +00:00
|
|
|
#define SKIP(reader, nbits) G_STMT_START { \
|
|
|
|
if (!gst_bit_reader_skip (reader, nbits)) { \
|
|
|
|
GST_WARNING ("failed to skip nbits: %d", nbits); \
|
|
|
|
goto failed; \
|
|
|
|
} \
|
|
|
|
} G_STMT_END
|
|
|
|
|
2013-01-02 13:45:50 +00:00
|
|
|
/* VLC decoder from gst-plugins-bad */
|
|
|
|
typedef struct _VLCTable VLCTable;
|
|
|
|
struct _VLCTable {
|
|
|
|
gint value;
|
|
|
|
guint cword;
|
|
|
|
guint cbits;
|
|
|
|
};
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
decode_vlc(GstBitReader *br, gint *res, const VLCTable *table, guint length)
|
|
|
|
{
|
|
|
|
guint8 i;
|
|
|
|
guint cbits = 0;
|
|
|
|
guint32 value = 0;
|
|
|
|
|
|
|
|
for (i = 0; i < length; i++) {
|
|
|
|
if (cbits != table[i].cbits) {
|
|
|
|
cbits = table[i].cbits;
|
|
|
|
if (!gst_bit_reader_peek_bits_uint32(br, &value, cbits)) {
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (value == table[i].cword) {
|
|
|
|
SKIP(br, cbits);
|
|
|
|
if (res)
|
|
|
|
*res = table[i].value;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
GST_DEBUG("failed to find VLC code");
|
|
|
|
|
|
|
|
failed:
|
|
|
|
GST_WARNING("failed to decode VLC, returning");
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
GST_MPEG_VIDEO_MACROBLOCK_ESCAPE = -1,
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Table B-1: Variable length codes for macroblock_address_increment */
|
|
|
|
static const VLCTable mpeg2_mbaddr_vlc_table[] = {
|
|
|
|
{ 1, 0x01, 1 },
|
|
|
|
{ 2, 0x03, 3 },
|
|
|
|
{ 3, 0x02, 3 },
|
|
|
|
{ 4, 0x03, 4 },
|
|
|
|
{ 5, 0x02, 4 },
|
|
|
|
{ 6, 0x03, 5 },
|
|
|
|
{ 7, 0x02, 5 },
|
|
|
|
{ 8, 0x07, 7 },
|
|
|
|
{ 9, 0x06, 7 },
|
|
|
|
{ 10, 0x0b, 8 },
|
|
|
|
{ 11, 0x0a, 8 },
|
|
|
|
{ 12, 0x09, 8 },
|
|
|
|
{ 13, 0x08, 8 },
|
|
|
|
{ 14, 0x07, 8 },
|
|
|
|
{ 15, 0x06, 8 },
|
|
|
|
{ 16, 0x17, 10 },
|
|
|
|
{ 17, 0x16, 10 },
|
|
|
|
{ 18, 0x15, 10 },
|
|
|
|
{ 19, 0x14, 10 },
|
|
|
|
{ 20, 0x13, 10 },
|
|
|
|
{ 21, 0x12, 10 },
|
|
|
|
{ 22, 0x23, 11 },
|
|
|
|
{ 23, 0x22, 11 },
|
|
|
|
{ 24, 0x21, 11 },
|
|
|
|
{ 25, 0x20, 11 },
|
|
|
|
{ 26, 0x1f, 11 },
|
|
|
|
{ 27, 0x1e, 11 },
|
|
|
|
{ 28, 0x1d, 11 },
|
|
|
|
{ 29, 0x1c, 11 },
|
|
|
|
{ 30, 0x1b, 11 },
|
|
|
|
{ 31, 0x1a, 11 },
|
|
|
|
{ 32, 0x19, 11 },
|
|
|
|
{ 33, 0x18, 11 },
|
|
|
|
{ GST_MPEG_VIDEO_MACROBLOCK_ESCAPE, 0x08, 11 }
|
|
|
|
};
|
|
|
|
|
2012-12-27 13:41:04 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* --- PTS Generator --- */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2012-03-30 14:23:33 +00:00
|
|
|
typedef struct _PTSGenerator PTSGenerator;
|
|
|
|
struct _PTSGenerator {
|
|
|
|
GstClockTime gop_pts; // Current GOP PTS
|
|
|
|
GstClockTime max_pts; // Max picture PTS
|
|
|
|
guint gop_tsn; // Absolute GOP TSN
|
|
|
|
guint max_tsn; // Max picture TSN, relative to last GOP TSN
|
|
|
|
guint ovl_tsn; // How many times TSN overflowed since GOP
|
|
|
|
guint lst_tsn; // Last picture TSN
|
|
|
|
guint fps_n;
|
|
|
|
guint fps_d;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
pts_init(PTSGenerator *tsg)
|
|
|
|
{
|
|
|
|
tsg->gop_pts = GST_CLOCK_TIME_NONE;
|
|
|
|
tsg->max_pts = GST_CLOCK_TIME_NONE;
|
|
|
|
tsg->gop_tsn = 0;
|
|
|
|
tsg->max_tsn = 0;
|
|
|
|
tsg->ovl_tsn = 0;
|
|
|
|
tsg->lst_tsn = 0;
|
|
|
|
tsg->fps_n = 0;
|
|
|
|
tsg->fps_d = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline GstClockTime
|
|
|
|
pts_get_duration(PTSGenerator *tsg, guint num_frames)
|
|
|
|
{
|
|
|
|
return gst_util_uint64_scale(num_frames,
|
|
|
|
GST_SECOND * tsg->fps_d, tsg->fps_n);
|
|
|
|
}
|
|
|
|
|
2012-03-30 15:03:28 +00:00
|
|
|
static inline guint
|
|
|
|
pts_get_poc(PTSGenerator *tsg)
|
|
|
|
{
|
|
|
|
return tsg->gop_tsn + tsg->ovl_tsn * 1024 + tsg->lst_tsn;
|
|
|
|
}
|
|
|
|
|
2012-03-30 14:23:33 +00:00
|
|
|
static void
|
|
|
|
pts_set_framerate(PTSGenerator *tsg, guint fps_n, guint fps_d)
|
|
|
|
{
|
|
|
|
tsg->fps_n = fps_n;
|
|
|
|
tsg->fps_d = fps_d;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
pts_sync(PTSGenerator *tsg, GstClockTime gop_pts)
|
|
|
|
{
|
|
|
|
guint gop_tsn;
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID(gop_pts) ||
|
|
|
|
(GST_CLOCK_TIME_IS_VALID(tsg->max_pts) && tsg->max_pts >= gop_pts)) {
|
|
|
|
/* Invalid GOP PTS, interpolate from the last known picture PTS */
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID(tsg->max_pts)) {
|
|
|
|
gop_pts = tsg->max_pts + pts_get_duration(tsg, 1);
|
|
|
|
gop_tsn = tsg->gop_tsn + tsg->ovl_tsn * 1024 + tsg->max_tsn + 1;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
gop_pts = 0;
|
|
|
|
gop_tsn = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Interpolate GOP TSN from this valid PTS */
|
|
|
|
if (GST_CLOCK_TIME_IS_VALID(tsg->gop_pts))
|
|
|
|
gop_tsn = tsg->gop_tsn + gst_util_uint64_scale(
|
2012-04-02 16:09:21 +00:00
|
|
|
gop_pts - tsg->gop_pts + pts_get_duration(tsg, 1) - 1,
|
|
|
|
tsg->fps_n, GST_SECOND * tsg->fps_d);
|
2012-03-30 14:23:33 +00:00
|
|
|
else
|
|
|
|
gop_tsn = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
tsg->gop_pts = gop_pts;
|
|
|
|
tsg->gop_tsn = gop_tsn;
|
|
|
|
tsg->max_tsn = 0;
|
|
|
|
tsg->ovl_tsn = 0;
|
|
|
|
tsg->lst_tsn = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstClockTime
|
|
|
|
pts_eval(PTSGenerator *tsg, GstClockTime pic_pts, guint pic_tsn)
|
|
|
|
{
|
|
|
|
GstClockTime pts;
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID(tsg->gop_pts))
|
|
|
|
tsg->gop_pts = 0;
|
|
|
|
|
|
|
|
pts = tsg->gop_pts + pts_get_duration(tsg, tsg->ovl_tsn * 1024 + pic_tsn);
|
|
|
|
|
|
|
|
if (!GST_CLOCK_TIME_IS_VALID(tsg->max_pts) || tsg->max_pts < pts)
|
|
|
|
tsg->max_pts = pts;
|
|
|
|
|
|
|
|
if (tsg->max_tsn < pic_tsn)
|
|
|
|
tsg->max_tsn = pic_tsn;
|
|
|
|
else if (tsg->max_tsn == 1023 && pic_tsn < tsg->lst_tsn) { /* TSN wrapped */
|
|
|
|
tsg->max_tsn = pic_tsn;
|
|
|
|
tsg->ovl_tsn++;
|
|
|
|
}
|
|
|
|
tsg->lst_tsn = pic_tsn;
|
|
|
|
return pts;
|
|
|
|
}
|
|
|
|
|
2012-12-27 13:41:04 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
2013-01-07 09:48:27 +00:00
|
|
|
/* --- MPEG-2 Parser Info --- */
|
2012-12-27 13:41:04 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2012-12-27 13:54:29 +00:00
|
|
|
typedef struct _GstMpegVideoSliceHdr GstMpegVideoSliceHdr;
|
|
|
|
struct _GstMpegVideoSliceHdr {
|
|
|
|
guint16 slice_horizontal_position;
|
|
|
|
guint16 slice_vertical_position;
|
|
|
|
guint8 quantiser_scale_code;
|
|
|
|
guint8 intra_slice;
|
|
|
|
|
|
|
|
/* Size of the slice() header in bits */
|
|
|
|
guint header_size;
|
|
|
|
};
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
typedef struct _GstVaapiParserInfoMpeg2 GstVaapiParserInfoMpeg2;
|
|
|
|
struct _GstVaapiParserInfoMpeg2 {
|
|
|
|
GstMpegVideoPacket packet;
|
|
|
|
guint8 extension_type; /* for Extension packets */
|
2012-12-27 13:41:04 +00:00
|
|
|
union {
|
|
|
|
GstMpegVideoSequenceHdr seq_hdr;
|
|
|
|
GstMpegVideoSequenceExt seq_ext;
|
2013-01-02 13:02:29 +00:00
|
|
|
GstMpegVideoSequenceDisplayExt seq_display_ext;
|
2012-12-27 13:41:04 +00:00
|
|
|
GstMpegVideoGop gop;
|
|
|
|
GstMpegVideoQuantMatrixExt quant_matrix;
|
|
|
|
GstMpegVideoPictureHdr pic_hdr;
|
|
|
|
GstMpegVideoPictureExt pic_ext;
|
2012-12-27 13:54:29 +00:00
|
|
|
GstMpegVideoSliceHdr slice_hdr;
|
2012-12-27 13:41:04 +00:00
|
|
|
} data;
|
|
|
|
};
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
static inline const GstVaapiMiniObjectClass *
|
|
|
|
gst_vaapi_parser_info_mpeg2_class(void)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
2013-01-07 09:48:27 +00:00
|
|
|
static const GstVaapiMiniObjectClass GstVaapiParserInfoMpeg2Class = {
|
|
|
|
sizeof(GstVaapiParserInfoMpeg2),
|
|
|
|
NULL
|
2012-12-27 13:41:04 +00:00
|
|
|
};
|
2013-01-07 09:48:27 +00:00
|
|
|
return &GstVaapiParserInfoMpeg2Class;
|
|
|
|
}
|
2012-12-27 13:41:04 +00:00
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
static inline GstVaapiParserInfoMpeg2 *
|
|
|
|
gst_vaapi_parser_info_mpeg2_new(void)
|
|
|
|
{
|
|
|
|
return (GstVaapiParserInfoMpeg2 *)
|
|
|
|
gst_vaapi_mini_object_new(gst_vaapi_parser_info_mpeg2_class());
|
2012-12-27 13:41:04 +00:00
|
|
|
}
|
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
static inline GstVaapiParserInfoMpeg2 *
|
|
|
|
gst_vaapi_parser_info_mpeg2_ensure(GstVaapiParserInfoMpeg2 **pi_ptr)
|
|
|
|
{
|
|
|
|
GstVaapiParserInfoMpeg2 *pi = *pi_ptr;
|
|
|
|
|
|
|
|
if (G_LIKELY(pi != NULL))
|
|
|
|
return pi;
|
|
|
|
|
|
|
|
*pi_ptr = pi = gst_vaapi_parser_info_mpeg2_new();
|
|
|
|
return pi;
|
|
|
|
}
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
#define gst_vaapi_parser_info_mpeg2_ref(pi) \
|
|
|
|
gst_vaapi_mini_object_ref(GST_VAAPI_MINI_OBJECT(pi))
|
|
|
|
|
|
|
|
#define gst_vaapi_parser_info_mpeg2_unref(pi) \
|
|
|
|
gst_vaapi_mini_object_unref(GST_VAAPI_MINI_OBJECT(pi))
|
|
|
|
|
|
|
|
#define gst_vaapi_parser_info_mpeg2_replace(old_pi_ptr, new_pi) \
|
|
|
|
gst_vaapi_mini_object_replace((GstVaapiMiniObject **)(old_pi_ptr), \
|
|
|
|
(GstVaapiMiniObject *)(new_pi))
|
|
|
|
|
2012-12-27 13:41:04 +00:00
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
/* --- MPEG-2 Decoder --- */
|
|
|
|
/* ------------------------------------------------------------------------- */
|
|
|
|
|
2013-01-02 13:45:50 +00:00
|
|
|
G_DEFINE_TYPE(GstVaapiDecoderMpeg2,
|
|
|
|
gst_vaapi_decoder_mpeg2,
|
|
|
|
GST_VAAPI_TYPE_DECODER)
|
|
|
|
|
|
|
|
#define GST_VAAPI_DECODER_MPEG2_CAST(decoder) \
|
|
|
|
((GstVaapiDecoderMpeg2 *)(decoder))
|
|
|
|
|
|
|
|
#define GST_VAAPI_DECODER_MPEG2_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE((obj), \
|
|
|
|
GST_VAAPI_TYPE_DECODER_MPEG2, \
|
|
|
|
GstVaapiDecoderMpeg2Private))
|
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
struct _GstVaapiDecoderMpeg2Private {
|
|
|
|
GstVaapiProfile profile;
|
2012-04-02 14:07:58 +00:00
|
|
|
GstVaapiProfile hw_profile;
|
2011-08-05 09:55:11 +00:00
|
|
|
guint width;
|
|
|
|
guint height;
|
|
|
|
guint fps_n;
|
|
|
|
guint fps_d;
|
2013-01-07 09:48:27 +00:00
|
|
|
GstVaapiParserInfoMpeg2 *seq_hdr;
|
|
|
|
GstVaapiParserInfoMpeg2 *seq_ext;
|
|
|
|
GstVaapiParserInfoMpeg2 *seq_display_ext;
|
|
|
|
GstVaapiParserInfoMpeg2 *seq_scalable_ext;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiParserInfoMpeg2 *gop;
|
2013-01-07 09:48:27 +00:00
|
|
|
GstVaapiParserInfoMpeg2 *pic_hdr;
|
|
|
|
GstVaapiParserInfoMpeg2 *pic_ext;
|
|
|
|
GstVaapiParserInfoMpeg2 *quant_matrix;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiParserInfoMpeg2 *slice_hdr;
|
2011-08-05 09:55:11 +00:00
|
|
|
GstVaapiPicture *current_picture;
|
2012-03-28 12:36:30 +00:00
|
|
|
GstVaapiDpb *dpb;
|
2012-03-30 14:23:33 +00:00
|
|
|
PTSGenerator tsg;
|
2011-08-05 09:55:11 +00:00
|
|
|
guint is_constructed : 1;
|
|
|
|
guint is_opened : 1;
|
|
|
|
guint size_changed : 1;
|
|
|
|
guint profile_changed : 1;
|
|
|
|
guint quant_matrix_changed : 1;
|
|
|
|
guint progressive_sequence : 1;
|
2011-09-12 16:02:53 +00:00
|
|
|
guint closed_gop : 1;
|
|
|
|
guint broken_link : 1;
|
2011-08-05 09:55:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_close(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
|
2012-01-26 08:48:11 +00:00
|
|
|
gst_vaapi_picture_replace(&priv->current_picture, NULL);
|
2012-03-28 12:36:30 +00:00
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_hdr, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_ext, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_display_ext, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_scalable_ext, NULL);
|
2013-01-07 14:24:51 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->gop, NULL);
|
2013-01-07 09:48:27 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->pic_hdr, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->pic_ext, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->quant_matrix, NULL);
|
2013-01-07 14:24:51 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->slice_hdr, NULL);
|
2012-12-27 14:18:55 +00:00
|
|
|
|
2013-01-14 09:46:25 +00:00
|
|
|
gst_vaapi_dpb_replace(&priv->dpb, NULL);
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
2012-12-06 13:01:46 +00:00
|
|
|
gst_vaapi_decoder_mpeg2_open(GstVaapiDecoderMpeg2 *decoder)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
|
|
|
|
gst_vaapi_decoder_mpeg2_close(decoder);
|
|
|
|
|
2013-01-14 09:21:53 +00:00
|
|
|
priv->dpb = gst_vaapi_dpb_new(2);
|
2012-03-28 12:36:30 +00:00
|
|
|
if (!priv->dpb)
|
|
|
|
return FALSE;
|
2012-03-30 14:23:33 +00:00
|
|
|
|
|
|
|
pts_init(&priv->tsg);
|
2011-08-05 09:55:11 +00:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_destroy(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
gst_vaapi_decoder_mpeg2_close(decoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gst_vaapi_decoder_mpeg2_create(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
if (!GST_VAAPI_DECODER_CODEC(decoder))
|
|
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
copy_quant_matrix(guint8 dst[64], const guint8 src[64])
|
|
|
|
{
|
|
|
|
memcpy(dst, src, 64);
|
|
|
|
}
|
|
|
|
|
2012-04-02 14:07:58 +00:00
|
|
|
static const char *
|
|
|
|
get_profile_str(GstVaapiProfile profile)
|
|
|
|
{
|
|
|
|
char *str;
|
|
|
|
|
|
|
|
switch (profile) {
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_SIMPLE: str = "simple"; break;
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_MAIN: str = "main"; break;
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_HIGH: str = "high"; break;
|
|
|
|
default: str = "<unknown>"; break;
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiProfile
|
|
|
|
get_profile(GstVaapiDecoderMpeg2 *decoder, GstVaapiEntrypoint entrypoint)
|
|
|
|
{
|
|
|
|
GstVaapiDisplay * const va_display = GST_VAAPI_DECODER_DISPLAY(decoder);
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstVaapiProfile profile = priv->profile;
|
|
|
|
|
|
|
|
do {
|
|
|
|
/* Return immediately if the exact same profile was found */
|
|
|
|
if (gst_vaapi_display_has_decoder(va_display, profile, entrypoint))
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Otherwise, try to map to a higher profile */
|
|
|
|
switch (profile) {
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_SIMPLE:
|
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
|
|
|
|
break;
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_MAIN:
|
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_HIGH;
|
|
|
|
break;
|
|
|
|
case GST_VAAPI_PROFILE_MPEG2_HIGH:
|
|
|
|
// Try to map to main profile if no high profile specific bits used
|
2012-12-27 14:18:55 +00:00
|
|
|
if (priv->profile == profile &&
|
2013-01-07 09:48:27 +00:00
|
|
|
!priv->seq_scalable_ext &&
|
|
|
|
(priv->seq_ext &&
|
|
|
|
priv->seq_ext->data.seq_ext.chroma_format == 1)) {
|
2012-04-02 14:07:58 +00:00
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
// fall-through
|
|
|
|
default:
|
|
|
|
profile = GST_VAAPI_PROFILE_UNKNOWN;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} while (profile != GST_VAAPI_PROFILE_UNKNOWN);
|
|
|
|
|
|
|
|
if (profile != priv->profile)
|
|
|
|
GST_INFO("forced %s profile to %s profile",
|
|
|
|
get_profile_str(priv->profile), get_profile_str(profile));
|
|
|
|
return profile;
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
ensure_context(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstVaapiEntrypoint entrypoint = GST_VAAPI_ENTRYPOINT_VLD;
|
|
|
|
gboolean reset_context = FALSE;
|
|
|
|
|
|
|
|
if (priv->profile_changed) {
|
|
|
|
GST_DEBUG("profile changed");
|
|
|
|
priv->profile_changed = FALSE;
|
|
|
|
reset_context = TRUE;
|
|
|
|
|
2012-04-02 14:07:58 +00:00
|
|
|
priv->hw_profile = get_profile(decoder, entrypoint);
|
|
|
|
if (priv->hw_profile == GST_VAAPI_PROFILE_UNKNOWN)
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->size_changed) {
|
|
|
|
GST_DEBUG("size changed");
|
|
|
|
priv->size_changed = FALSE;
|
|
|
|
reset_context = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (reset_context) {
|
2012-09-10 16:26:51 +00:00
|
|
|
GstVaapiContextInfo info;
|
|
|
|
|
|
|
|
info.profile = priv->hw_profile;
|
|
|
|
info.entrypoint = entrypoint;
|
|
|
|
info.width = priv->width;
|
|
|
|
info.height = priv->height;
|
|
|
|
info.ref_frames = 2;
|
|
|
|
reset_context = gst_vaapi_decoder_ensure_context(
|
2013-01-02 13:45:50 +00:00
|
|
|
GST_VAAPI_DECODER_CAST(decoder),
|
2012-09-10 16:26:51 +00:00
|
|
|
&info
|
2011-08-05 09:55:11 +00:00
|
|
|
);
|
|
|
|
if (!reset_context)
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
|
|
|
|
}
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
ensure_quant_matrix(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 09:48:27 +00:00
|
|
|
GstMpegVideoSequenceHdr * const seq_hdr = &priv->seq_hdr->data.seq_hdr;
|
2011-08-05 09:55:11 +00:00
|
|
|
VAIQMatrixBufferMPEG2 *iq_matrix;
|
|
|
|
guint8 *intra_quant_matrix = NULL;
|
|
|
|
guint8 *non_intra_quant_matrix = NULL;
|
|
|
|
guint8 *chroma_intra_quant_matrix = NULL;
|
|
|
|
guint8 *chroma_non_intra_quant_matrix = NULL;
|
|
|
|
|
|
|
|
if (!priv->quant_matrix_changed)
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
priv->quant_matrix_changed = FALSE;
|
|
|
|
|
2012-01-26 08:48:11 +00:00
|
|
|
picture->iq_matrix = GST_VAAPI_IQ_MATRIX_NEW(MPEG2, decoder);
|
2011-08-05 09:55:11 +00:00
|
|
|
if (!picture->iq_matrix) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to allocate IQ matrix");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
iq_matrix = picture->iq_matrix->param;
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
intra_quant_matrix = seq_hdr->intra_quantizer_matrix;
|
|
|
|
non_intra_quant_matrix = seq_hdr->non_intra_quantizer_matrix;
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
if (priv->quant_matrix) {
|
2012-12-27 14:18:55 +00:00
|
|
|
GstMpegVideoQuantMatrixExt * const quant_matrix =
|
2013-01-07 09:48:27 +00:00
|
|
|
&priv->quant_matrix->data.quant_matrix;
|
2012-12-27 14:18:55 +00:00
|
|
|
if (quant_matrix->load_intra_quantiser_matrix)
|
|
|
|
intra_quant_matrix = quant_matrix->intra_quantiser_matrix;
|
|
|
|
if (quant_matrix->load_non_intra_quantiser_matrix)
|
|
|
|
non_intra_quant_matrix = quant_matrix->non_intra_quantiser_matrix;
|
|
|
|
if (quant_matrix->load_chroma_intra_quantiser_matrix)
|
|
|
|
chroma_intra_quant_matrix = quant_matrix->chroma_intra_quantiser_matrix;
|
|
|
|
if (quant_matrix->load_chroma_non_intra_quantiser_matrix)
|
|
|
|
chroma_non_intra_quant_matrix = quant_matrix->chroma_non_intra_quantiser_matrix;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
iq_matrix->load_intra_quantiser_matrix = intra_quant_matrix != NULL;
|
2012-01-06 15:44:09 +00:00
|
|
|
if (intra_quant_matrix)
|
2011-08-05 09:55:11 +00:00
|
|
|
copy_quant_matrix(iq_matrix->intra_quantiser_matrix,
|
|
|
|
intra_quant_matrix);
|
|
|
|
|
2012-01-06 15:44:09 +00:00
|
|
|
iq_matrix->load_non_intra_quantiser_matrix = non_intra_quant_matrix != NULL;
|
|
|
|
if (non_intra_quant_matrix)
|
|
|
|
copy_quant_matrix(iq_matrix->non_intra_quantiser_matrix,
|
|
|
|
non_intra_quant_matrix);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-01-06 15:44:09 +00:00
|
|
|
iq_matrix->load_chroma_intra_quantiser_matrix = chroma_intra_quant_matrix != NULL;
|
|
|
|
if (chroma_intra_quant_matrix)
|
|
|
|
copy_quant_matrix(iq_matrix->chroma_intra_quantiser_matrix,
|
|
|
|
chroma_intra_quant_matrix);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-01-06 15:44:09 +00:00
|
|
|
iq_matrix->load_chroma_non_intra_quantiser_matrix = chroma_non_intra_quant_matrix != NULL;
|
|
|
|
if (chroma_non_intra_quant_matrix)
|
|
|
|
copy_quant_matrix(iq_matrix->chroma_non_intra_quantiser_matrix,
|
|
|
|
chroma_non_intra_quant_matrix);
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
static GstVaapiDecoderStatus
|
2011-08-05 09:55:11 +00:00
|
|
|
decode_current_picture(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstVaapiPicture * const picture = priv->current_picture;
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
if (!picture)
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
if (!gst_vaapi_picture_decode(picture))
|
|
|
|
goto error;
|
|
|
|
if (GST_VAAPI_PICTURE_IS_COMPLETE(picture)) {
|
|
|
|
if (!gst_vaapi_dpb_add(priv->dpb, picture))
|
|
|
|
goto error;
|
|
|
|
gst_vaapi_picture_replace(&priv->current_picture, NULL);
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
2012-12-27 14:18:55 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
error:
|
|
|
|
/* XXX: fix for cases where first field failed to be decoded */
|
|
|
|
gst_vaapi_picture_replace(&priv->current_picture, NULL);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_sequence(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoSequenceHdr *seq_hdr;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_hdr)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for sequence header");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_hdr = &priv->seq_hdr->data.seq_hdr;
|
|
|
|
|
|
|
|
if (!gst_mpeg_video_parse_sequence_header(seq_hdr,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to parse sequence header");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, seq_hdr, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 09:48:27 +00:00
|
|
|
decode_sequence(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
2013-01-02 13:45:50 +00:00
|
|
|
GstVaapiDecoder * const base_decoder = GST_VAAPI_DECODER_CAST(decoder);
|
2012-12-27 13:41:04 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoSequenceHdr * const seq_hdr = unit->parsed_info;
|
2012-12-27 13:41:04 +00:00
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_ext, NULL);
|
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->seq_display_ext, NULL);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
priv->fps_n = seq_hdr->fps_n;
|
|
|
|
priv->fps_d = seq_hdr->fps_d;
|
2012-03-30 14:23:33 +00:00
|
|
|
pts_set_framerate(&priv->tsg, priv->fps_n, priv->fps_d);
|
2011-08-05 09:55:11 +00:00
|
|
|
gst_vaapi_decoder_set_framerate(base_decoder, priv->fps_n, priv->fps_d);
|
|
|
|
|
|
|
|
priv->width = seq_hdr->width;
|
|
|
|
priv->height = seq_hdr->height;
|
|
|
|
priv->size_changed = TRUE;
|
|
|
|
priv->quant_matrix_changed = TRUE;
|
|
|
|
priv->progressive_sequence = TRUE;
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_sequence_ext(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoSequenceExt *seq_ext;
|
2012-12-27 13:41:04 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_ext)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for sequence extension");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_ext = &priv->seq_ext->data.seq_ext;
|
|
|
|
|
|
|
|
if (!gst_mpeg_video_parse_sequence_extension(seq_ext,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
|
|
|
GST_ERROR("failed to parse sequence-extension");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, seq_ext, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
decode_sequence_ext(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
2013-01-02 13:45:50 +00:00
|
|
|
GstVaapiDecoder * const base_decoder = GST_VAAPI_DECODER_CAST(decoder);
|
2011-08-05 09:55:11 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoSequenceExt * const seq_ext = unit->parsed_info;
|
2011-08-05 09:55:11 +00:00
|
|
|
GstVaapiProfile profile;
|
|
|
|
guint width, height;
|
|
|
|
|
|
|
|
priv->progressive_sequence = seq_ext->progressive;
|
2012-03-28 14:08:29 +00:00
|
|
|
gst_vaapi_decoder_set_interlaced(base_decoder, !priv->progressive_sequence);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-02-12 09:21:52 +00:00
|
|
|
width = (priv->width & 0x0fff) | ((guint32)seq_ext->horiz_size_ext << 12);
|
|
|
|
height = (priv->height & 0x0fff) | ((guint32)seq_ext->vert_size_ext << 12);
|
2011-08-05 09:55:11 +00:00
|
|
|
GST_DEBUG("video resolution %ux%u", width, height);
|
|
|
|
|
|
|
|
if (seq_ext->fps_n_ext && seq_ext->fps_d_ext) {
|
|
|
|
priv->fps_n *= seq_ext->fps_n_ext + 1;
|
|
|
|
priv->fps_d *= seq_ext->fps_d_ext + 1;
|
2012-03-30 14:23:33 +00:00
|
|
|
pts_set_framerate(&priv->tsg, priv->fps_n, priv->fps_d);
|
2011-08-05 09:55:11 +00:00
|
|
|
gst_vaapi_decoder_set_framerate(base_decoder, priv->fps_n, priv->fps_d);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->width != width) {
|
|
|
|
priv->width = width;
|
|
|
|
priv->size_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->height != height) {
|
|
|
|
priv->height = height;
|
|
|
|
priv->size_changed = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (seq_ext->profile) {
|
|
|
|
case GST_MPEG_VIDEO_PROFILE_SIMPLE:
|
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_SIMPLE;
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PROFILE_MAIN:
|
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_MAIN;
|
|
|
|
break;
|
2012-04-02 14:07:58 +00:00
|
|
|
case GST_MPEG_VIDEO_PROFILE_HIGH:
|
|
|
|
profile = GST_VAAPI_PROFILE_MPEG2_HIGH;
|
|
|
|
break;
|
2011-08-05 09:55:11 +00:00
|
|
|
default:
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("unsupported profile %d", seq_ext->profile);
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_PROFILE;
|
|
|
|
}
|
|
|
|
if (priv->profile != profile) {
|
|
|
|
priv->profile = profile;
|
|
|
|
priv->profile_changed = TRUE;
|
|
|
|
}
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-01-02 13:02:29 +00:00
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_sequence_display_ext(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2013-01-02 13:02:29 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoSequenceDisplayExt *seq_display_ext;
|
|
|
|
|
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->seq_display_ext)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for sequence display extension");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
seq_display_ext = &priv->seq_display_ext->data.seq_display_ext;
|
2013-01-02 13:02:29 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
if (!gst_mpeg_video_parse_sequence_display_extension(seq_display_ext,
|
2013-01-02 13:02:29 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
|
|
|
GST_ERROR("failed to parse sequence-display-extension");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, seq_display_ext, NULL);
|
2013-01-02 13:02:29 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
decode_sequence_display_ext(GstVaapiDecoderMpeg2 *decoder,
|
2013-01-07 09:48:27 +00:00
|
|
|
GstVaapiDecoderUnit *unit)
|
2013-01-02 13:02:29 +00:00
|
|
|
{
|
|
|
|
/* XXX: handle color primaries and cropping */
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
decode_sequence_end(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2012-12-27 14:18:55 +00:00
|
|
|
GstVaapiDecoderStatus status;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
status = decode_current_picture(decoder);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
return status;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-03-28 12:36:30 +00:00
|
|
|
gst_vaapi_dpb_flush(priv->dpb);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_quant_matrix_ext(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoQuantMatrixExt *quant_matrix;
|
|
|
|
|
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->quant_matrix)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for quantization matrix");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
quant_matrix = &priv->quant_matrix->data.quant_matrix;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
if (!gst_mpeg_video_parse_quant_matrix_extension(quant_matrix,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to parse quant-matrix-extension");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, quant_matrix, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
decode_quant_matrix_ext(GstVaapiDecoderMpeg2 *decoder,
|
2013-01-07 09:48:27 +00:00
|
|
|
GstVaapiDecoderUnit *unit)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
priv->quant_matrix_changed = TRUE;
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_gop(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoGop *gop;
|
|
|
|
|
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->gop)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for GOP");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
gop = &priv->gop->data.gop;
|
|
|
|
|
|
|
|
if (!gst_mpeg_video_parse_gop(gop,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to parse GOP");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, gop, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-12-27 13:41:04 +00:00
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 09:48:27 +00:00
|
|
|
decode_gop(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoGop * const gop = unit->parsed_info;
|
2012-12-27 13:41:04 +00:00
|
|
|
|
|
|
|
priv->closed_gop = gop->closed_gop;
|
|
|
|
priv->broken_link = gop->broken_link;
|
2011-09-12 16:02:53 +00:00
|
|
|
|
|
|
|
GST_DEBUG("GOP %02u:%02u:%02u:%02u (closed_gop %d, broken_link %d)",
|
2012-12-27 13:41:04 +00:00
|
|
|
gop->hour, gop->minute, gop->second, gop->frame,
|
2011-09-12 16:02:53 +00:00
|
|
|
priv->closed_gop, priv->broken_link);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-12-06 13:01:46 +00:00
|
|
|
pts_sync(&priv->tsg, GST_VAAPI_DECODER_CODEC_FRAME(decoder)->pts);
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_picture(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoPictureHdr *pic_hdr;
|
2012-12-27 13:41:04 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->pic_hdr)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for picture header");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
pic_hdr = &priv->pic_hdr->data.pic_hdr;
|
|
|
|
|
|
|
|
if (!gst_mpeg_video_parse_picture_header(pic_hdr,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
|
|
|
GST_ERROR("failed to parse picture header");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, pic_hdr, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 09:48:27 +00:00
|
|
|
decode_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
gst_vaapi_parser_info_mpeg2_replace(&priv->pic_ext, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_picture_ext(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
2013-01-07 14:24:51 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoPictureExt *pic_ext;
|
|
|
|
|
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->pic_ext)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for picture extension");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
pic_ext = &priv->pic_ext->data.pic_ext;
|
|
|
|
|
|
|
|
if (!gst_mpeg_video_parse_picture_extension(pic_ext,
|
2012-12-27 13:41:04 +00:00
|
|
|
packet->data, packet->size, packet->offset)) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to parse picture-extension");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, pic_ext, NULL);
|
2012-12-27 13:41:04 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
decode_picture_ext(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2012-12-27 13:41:04 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoPictureExt * const pic_ext = unit->parsed_info;
|
2012-02-23 15:39:14 +00:00
|
|
|
|
2012-03-28 17:15:47 +00:00
|
|
|
if (priv->progressive_sequence && !pic_ext->progressive_frame) {
|
|
|
|
GST_WARNING("invalid interlaced frame in progressive sequence, fixing");
|
|
|
|
pic_ext->progressive_frame = 1;
|
|
|
|
}
|
|
|
|
|
2012-02-24 11:56:48 +00:00
|
|
|
if (pic_ext->picture_structure == 0 ||
|
|
|
|
(pic_ext->progressive_frame &&
|
|
|
|
pic_ext->picture_structure != GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME)) {
|
|
|
|
GST_WARNING("invalid picture_structure %d, replacing with \"frame\"",
|
|
|
|
pic_ext->picture_structure);
|
|
|
|
pic_ext->picture_structure = GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME;
|
|
|
|
}
|
2012-12-27 14:18:55 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline guint32
|
|
|
|
pack_f_code(guint8 f_code[2][2])
|
|
|
|
{
|
|
|
|
return (((guint32)f_code[0][0] << 12) |
|
|
|
|
((guint32)f_code[0][1] << 8) |
|
|
|
|
((guint32)f_code[1][0] << 4) |
|
|
|
|
( f_code[1][1] ));
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
init_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 09:48:27 +00:00
|
|
|
GstMpegVideoPictureHdr * const pic_hdr = &priv->pic_hdr->data.pic_hdr;
|
|
|
|
GstMpegVideoPictureExt * const pic_ext = &priv->pic_ext->data.pic_ext;
|
2012-12-27 14:18:55 +00:00
|
|
|
|
|
|
|
switch (pic_hdr->pic_type) {
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_TYPE_I:
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_REFERENCE);
|
|
|
|
picture->type = GST_VAAPI_PICTURE_TYPE_I;
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_TYPE_P:
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_REFERENCE);
|
|
|
|
picture->type = GST_VAAPI_PICTURE_TYPE_P;
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_TYPE_B:
|
|
|
|
picture->type = GST_VAAPI_PICTURE_TYPE_B;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
GST_ERROR("unsupported picture type %d", pic_hdr->pic_type);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
|
|
|
|
}
|
2012-02-24 11:56:48 +00:00
|
|
|
|
2012-03-28 14:08:29 +00:00
|
|
|
if (!priv->progressive_sequence && !pic_ext->progressive_frame) {
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_INTERLACED);
|
|
|
|
if (pic_ext->top_field_first)
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_TFF);
|
|
|
|
}
|
|
|
|
|
2012-02-23 15:39:14 +00:00
|
|
|
switch (pic_ext->picture_structure) {
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_STRUCTURE_TOP_FIELD:
|
2012-03-28 14:07:44 +00:00
|
|
|
picture->structure = GST_VAAPI_PICTURE_STRUCTURE_TOP_FIELD;
|
2012-02-23 15:39:14 +00:00
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_STRUCTURE_BOTTOM_FIELD:
|
2012-03-28 14:07:44 +00:00
|
|
|
picture->structure = GST_VAAPI_PICTURE_STRUCTURE_BOTTOM_FIELD;
|
2012-02-23 15:39:14 +00:00
|
|
|
break;
|
2012-02-28 10:58:21 +00:00
|
|
|
case GST_MPEG_VIDEO_PICTURE_STRUCTURE_FRAME:
|
2012-03-28 14:07:44 +00:00
|
|
|
picture->structure = GST_VAAPI_PICTURE_STRUCTURE_FRAME;
|
2012-02-28 10:58:21 +00:00
|
|
|
break;
|
2012-02-23 15:39:14 +00:00
|
|
|
}
|
2012-04-02 09:29:53 +00:00
|
|
|
|
|
|
|
/* Allocate dummy picture for first field based I-frame */
|
|
|
|
if (picture->type == GST_VAAPI_PICTURE_TYPE_I &&
|
|
|
|
!GST_VAAPI_PICTURE_IS_FRAME(picture) &&
|
|
|
|
gst_vaapi_dpb_size(priv->dpb) == 0) {
|
|
|
|
GstVaapiPicture *dummy_picture;
|
|
|
|
gboolean success;
|
|
|
|
|
|
|
|
dummy_picture = GST_VAAPI_PICTURE_NEW(MPEG2, decoder);
|
|
|
|
if (!dummy_picture) {
|
|
|
|
GST_ERROR("failed to allocate dummy picture");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
dummy_picture->type = GST_VAAPI_PICTURE_TYPE_I;
|
|
|
|
dummy_picture->pts = GST_CLOCK_TIME_NONE;
|
|
|
|
dummy_picture->poc = -1;
|
|
|
|
dummy_picture->structure = GST_VAAPI_PICTURE_STRUCTURE_FRAME;
|
|
|
|
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(
|
|
|
|
dummy_picture,
|
|
|
|
(GST_VAAPI_PICTURE_FLAG_SKIPPED |
|
|
|
|
GST_VAAPI_PICTURE_FLAG_REFERENCE)
|
|
|
|
);
|
|
|
|
|
|
|
|
success = gst_vaapi_dpb_add(priv->dpb, dummy_picture);
|
|
|
|
gst_vaapi_picture_unref(dummy_picture);
|
|
|
|
if (!success) {
|
|
|
|
GST_ERROR("failed to add dummy picture into DPB");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNKNOWN;
|
|
|
|
}
|
|
|
|
GST_INFO("allocated dummy picture for first field based I-frame");
|
|
|
|
}
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
/* Update presentation time */
|
|
|
|
picture->pts = pts_eval(&priv->tsg,
|
|
|
|
GST_VAAPI_DECODER_CODEC_FRAME(decoder)->pts, pic_hdr->tsn);
|
|
|
|
picture->poc = pts_get_poc(&priv->tsg);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
static void
|
2011-08-05 09:55:11 +00:00
|
|
|
fill_picture(GstVaapiDecoderMpeg2 *decoder, GstVaapiPicture *picture)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
VAPictureParameterBufferMPEG2 * const pic_param = picture->param;
|
2013-01-07 09:48:27 +00:00
|
|
|
GstMpegVideoPictureHdr * const pic_hdr = &priv->pic_hdr->data.pic_hdr;
|
|
|
|
GstMpegVideoPictureExt * const pic_ext = &priv->pic_ext->data.pic_ext;
|
2012-03-28 12:36:30 +00:00
|
|
|
GstVaapiPicture *prev_picture, *next_picture;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
/* Fill in VAPictureParameterBufferMPEG2 */
|
2012-12-27 14:18:55 +00:00
|
|
|
pic_param->horizontal_size = priv->width;
|
|
|
|
pic_param->vertical_size = priv->height;
|
|
|
|
pic_param->forward_reference_picture = VA_INVALID_ID;
|
|
|
|
pic_param->backward_reference_picture = VA_INVALID_ID;
|
|
|
|
pic_param->picture_coding_type = pic_hdr->pic_type;
|
|
|
|
pic_param->f_code = pack_f_code(pic_ext->f_code);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
#define COPY_FIELD(a, b, f) \
|
|
|
|
pic_param->a.b.f = pic_ext->f
|
2012-12-27 14:18:55 +00:00
|
|
|
pic_param->picture_coding_extension.value = 0;
|
|
|
|
pic_param->picture_coding_extension.bits.is_first_field =
|
|
|
|
GST_VAAPI_PICTURE_IS_FIRST_FIELD(picture);
|
2011-08-05 09:55:11 +00:00
|
|
|
COPY_FIELD(picture_coding_extension, bits, intra_dc_precision);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, picture_structure);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, top_field_first);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, frame_pred_frame_dct);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, concealment_motion_vectors);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, q_scale_type);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, intra_vlc_format);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, alternate_scan);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, repeat_first_field);
|
|
|
|
COPY_FIELD(picture_coding_extension, bits, progressive_frame);
|
|
|
|
|
2013-01-14 09:21:53 +00:00
|
|
|
gst_vaapi_dpb_get_neighbours(priv->dpb, picture,
|
2012-12-27 14:18:55 +00:00
|
|
|
&prev_picture, &next_picture);
|
2012-03-28 12:36:30 +00:00
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
switch (pic_hdr->pic_type) {
|
|
|
|
case GST_MPEG_VIDEO_PICTURE_TYPE_B:
|
2012-03-28 12:36:30 +00:00
|
|
|
if (next_picture)
|
|
|
|
pic_param->backward_reference_picture = next_picture->surface_id;
|
|
|
|
if (prev_picture)
|
|
|
|
pic_param->forward_reference_picture = prev_picture->surface_id;
|
|
|
|
else if (!priv->closed_gop)
|
|
|
|
GST_VAAPI_PICTURE_FLAG_SET(picture, GST_VAAPI_PICTURE_FLAG_SKIPPED);
|
|
|
|
break;
|
2011-08-05 09:55:11 +00:00
|
|
|
case GST_MPEG_VIDEO_PICTURE_TYPE_P:
|
2012-03-28 12:36:30 +00:00
|
|
|
if (prev_picture)
|
|
|
|
pic_param->forward_reference_picture = prev_picture->surface_id;
|
2011-08-05 09:55:11 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 15:07:38 +00:00
|
|
|
parse_slice(GstVaapiDecoderMpeg2 *decoder,
|
|
|
|
GstVaapiDecoderUnit *unit, GstMpegVideoPacket *packet)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstMpegVideoSliceHdr *slice_hdr;
|
|
|
|
GstBitReader br;
|
|
|
|
gint mb_x, mb_y, mb_inc;
|
|
|
|
guint8 slice_vertical_position_extension;
|
|
|
|
guint8 extra_bit_slice, junk8;
|
|
|
|
|
|
|
|
if (!gst_vaapi_parser_info_mpeg2_ensure(&priv->slice_hdr)) {
|
|
|
|
GST_ERROR("failed to allocate parser info for slice header");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
|
|
|
|
slice_hdr = &priv->slice_hdr->data.slice_hdr;
|
|
|
|
|
|
|
|
gst_bit_reader_init(&br, packet->data + packet->offset, packet->size);
|
|
|
|
if (priv->height > 2800)
|
|
|
|
READ_UINT8(&br, slice_vertical_position_extension, 3);
|
|
|
|
if (priv->seq_scalable_ext) {
|
|
|
|
GST_ERROR("failed to parse slice with sequence_scalable_extension()");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
|
|
|
READ_UINT8(&br, slice_hdr->quantiser_scale_code, 5);
|
|
|
|
READ_UINT8(&br, extra_bit_slice, 1);
|
|
|
|
if (!extra_bit_slice)
|
|
|
|
slice_hdr->intra_slice = 0;
|
|
|
|
else {
|
|
|
|
READ_UINT8(&br, slice_hdr->intra_slice, 1);
|
|
|
|
READ_UINT8(&br, junk8, 7);
|
|
|
|
READ_UINT8(&br, extra_bit_slice, 1);
|
|
|
|
while (extra_bit_slice) {
|
|
|
|
READ_UINT8(&br, junk8, 8);
|
|
|
|
READ_UINT8(&br, extra_bit_slice, 1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
slice_hdr->header_size = 32 + gst_bit_reader_get_pos(&br);
|
|
|
|
|
|
|
|
mb_y = packet->type - GST_MPEG_VIDEO_PACKET_SLICE_MIN;
|
|
|
|
mb_x = -1;
|
|
|
|
do {
|
|
|
|
if (!decode_vlc(&br, &mb_inc, mpeg2_mbaddr_vlc_table,
|
|
|
|
G_N_ELEMENTS(mpeg2_mbaddr_vlc_table))) {
|
|
|
|
GST_WARNING("failed to decode first macroblock_address_increment");
|
|
|
|
goto failed;
|
|
|
|
}
|
|
|
|
mb_x += mb_inc == GST_MPEG_VIDEO_MACROBLOCK_ESCAPE ? 33 : mb_inc;
|
|
|
|
} while (mb_inc == GST_MPEG_VIDEO_MACROBLOCK_ESCAPE);
|
|
|
|
|
|
|
|
slice_hdr->slice_horizontal_position = mb_x;
|
|
|
|
slice_hdr->slice_vertical_position = mb_y;
|
|
|
|
|
|
|
|
gst_vaapi_decoder_unit_set_parsed_info(unit, slice_hdr, NULL);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
|
|
|
|
failed:
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 09:48:27 +00:00
|
|
|
decode_slice(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GstVaapiPicture * const picture = priv->current_picture;
|
|
|
|
GstVaapiSlice *slice;
|
|
|
|
VASliceParameterBufferMPEG2 *slice_param;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoSliceHdr * const slice_hdr = unit->parsed_info;
|
2011-08-05 09:55:11 +00:00
|
|
|
|
2012-12-27 13:54:29 +00:00
|
|
|
GST_DEBUG("slice %d (%u bytes)", slice_hdr->slice_vertical_position,
|
2013-01-07 09:48:27 +00:00
|
|
|
unit->size);
|
2012-12-27 13:41:04 +00:00
|
|
|
|
|
|
|
slice = GST_VAAPI_SLICE_NEW(MPEG2, decoder,
|
2013-01-02 16:23:53 +00:00
|
|
|
(GST_BUFFER_DATA(GST_VAAPI_DECODER_CODEC_FRAME(decoder)->input_buffer) +
|
2013-01-07 09:48:27 +00:00
|
|
|
unit->offset), unit->size);
|
2011-08-05 09:55:11 +00:00
|
|
|
if (!slice) {
|
2012-03-29 09:13:20 +00:00
|
|
|
GST_ERROR("failed to allocate slice");
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
2012-01-26 08:48:11 +00:00
|
|
|
gst_vaapi_picture_add_slice(picture, slice);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
/* Fill in VASliceParameterBufferMPEG2 */
|
|
|
|
slice_param = slice->param;
|
2012-12-27 13:54:29 +00:00
|
|
|
slice_param->macroblock_offset = slice_hdr->header_size;
|
|
|
|
slice_param->slice_horizontal_position = slice_hdr->slice_horizontal_position;
|
|
|
|
slice_param->slice_vertical_position = slice_hdr->slice_vertical_position;
|
|
|
|
slice_param->quantiser_scale_code = slice_hdr->quantiser_scale_code;
|
|
|
|
slice_param->intra_slice_flag = slice_hdr->intra_slice;
|
2011-08-05 09:55:11 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2012-01-31 09:47:36 +00:00
|
|
|
static inline gint
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
scan_for_start_code(const guchar *buf, guint buf_size,
|
|
|
|
GstMpegVideoPacketTypeCode *type_ptr)
|
2012-01-31 09:47:36 +00:00
|
|
|
{
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
guint i = 0;
|
|
|
|
|
|
|
|
while (i <= (buf_size - 4)) {
|
|
|
|
if (buf[i + 2] > 1)
|
|
|
|
i += 3;
|
|
|
|
else if (buf[i + 1])
|
|
|
|
i += 2;
|
|
|
|
else if (buf[i] || buf[i + 2] != 1)
|
|
|
|
i++;
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i <= (buf_size - 4)) {
|
|
|
|
if (type_ptr)
|
|
|
|
*type_ptr = buf[i + 3];
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
return -1;
|
2012-01-31 09:47:36 +00:00
|
|
|
}
|
|
|
|
|
2012-10-10 07:45:03 +00:00
|
|
|
static GstVaapiDecoderStatus
|
2013-01-07 14:24:51 +00:00
|
|
|
parse_unit(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit,
|
|
|
|
GstMpegVideoPacket *packet)
|
|
|
|
{
|
|
|
|
GstMpegVideoPacketTypeCode type;
|
|
|
|
GstMpegVideoPacketExtensionCode ext_type;
|
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
|
|
|
|
type = packet->type;
|
|
|
|
switch (type) {
|
|
|
|
case GST_MPEG_VIDEO_PACKET_PICTURE:
|
|
|
|
status = parse_picture(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE:
|
|
|
|
status = parse_sequence(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXTENSION:
|
|
|
|
ext_type = packet->data[4] >> 4;
|
|
|
|
switch (ext_type) {
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE:
|
|
|
|
status = parse_sequence_ext(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_DISPLAY:
|
|
|
|
status = parse_sequence_display_ext(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_QUANT_MATRIX:
|
|
|
|
status = parse_quant_matrix_ext(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_PICTURE:
|
|
|
|
status = parse_picture_ext(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
status = GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_GOP:
|
|
|
|
status = parse_gop(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
|
|
|
|
type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
|
|
|
|
status = parse_slice(decoder, unit, packet);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
status = GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
decode_unit(GstVaapiDecoderMpeg2 *decoder, GstVaapiDecoderUnit *unit,
|
|
|
|
GstMpegVideoPacket *packet)
|
2012-10-10 07:45:03 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoPacketTypeCode type;
|
|
|
|
GstMpegVideoPacketExtensionCode ext_type;
|
2012-10-10 07:45:03 +00:00
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
|
2013-01-07 14:24:51 +00:00
|
|
|
type = packet->type;
|
|
|
|
switch (type) {
|
2012-10-10 07:45:03 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_PICTURE:
|
|
|
|
if (!priv->width || !priv->height)
|
|
|
|
goto unknown_picture_size;
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_picture(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE:
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_sequence(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
2012-12-27 13:41:04 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_EXTENSION:
|
2013-01-07 14:24:51 +00:00
|
|
|
ext_type = packet->data[4] >> 4;
|
|
|
|
switch (ext_type) {
|
2012-10-10 07:45:03 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE:
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_sequence_ext(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
2013-01-02 13:02:29 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_SEQUENCE_DISPLAY:
|
|
|
|
status = decode_sequence_display_ext(decoder, unit);
|
|
|
|
break;
|
2012-10-10 07:45:03 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_QUANT_MATRIX:
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_quant_matrix_ext(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_EXT_PICTURE:
|
|
|
|
if (!priv->width || !priv->height)
|
|
|
|
goto unknown_picture_size;
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_picture_ext(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
// Ignore unknown start-code extensions
|
2013-01-07 14:24:51 +00:00
|
|
|
GST_WARNING("unsupported packet extension type 0x%02x", ext_type);
|
2012-10-10 07:45:03 +00:00
|
|
|
status = GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE_END:
|
|
|
|
status = decode_sequence_end(decoder);
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_GOP:
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_gop(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-01-07 14:24:51 +00:00
|
|
|
if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
|
|
|
|
type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
|
2012-12-27 13:41:04 +00:00
|
|
|
status = decode_slice(decoder, unit);
|
2012-10-10 07:45:03 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-01-07 14:24:51 +00:00
|
|
|
GST_WARNING("unsupported packet type 0x%02x", type);
|
2012-10-10 07:45:03 +00:00
|
|
|
status = GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return status;
|
|
|
|
|
|
|
|
unknown_picture_size:
|
|
|
|
// Ignore packet while picture size is undefined
|
|
|
|
// i.e. missing sequence headers, or not parsed correctly
|
|
|
|
GST_WARNING("failed to parse picture of unknown size");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2012-12-06 13:01:46 +00:00
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
ensure_decoder(GstVaapiDecoderMpeg2 *decoder)
|
2011-08-05 09:55:11 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
|
|
|
|
g_return_val_if_fail(priv->is_constructed,
|
|
|
|
GST_VAAPI_DECODER_STATUS_ERROR_INIT_FAILED);
|
|
|
|
|
|
|
|
if (!priv->is_opened) {
|
2012-12-06 13:01:46 +00:00
|
|
|
priv->is_opened = gst_vaapi_decoder_mpeg2_open(decoder);
|
2011-08-05 09:55:11 +00:00
|
|
|
if (!priv->is_opened)
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_UNSUPPORTED_CODEC;
|
|
|
|
}
|
2012-12-06 13:01:46 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
gst_vaapi_decoder_mpeg2_parse(GstVaapiDecoder *base_decoder,
|
2013-01-07 10:13:07 +00:00
|
|
|
GstAdapter *adapter, gboolean at_eos, GstVaapiDecoderUnit *unit)
|
2012-12-06 13:01:46 +00:00
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2 * const decoder =
|
2013-01-02 13:45:50 +00:00
|
|
|
GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
|
2013-01-02 13:18:31 +00:00
|
|
|
GstVaapiParserState * const ps = GST_VAAPI_PARSER_STATE(base_decoder);
|
2012-12-06 13:01:46 +00:00
|
|
|
GstVaapiDecoderStatus status;
|
2013-01-09 15:05:39 +00:00
|
|
|
GstMpegVideoPacketTypeCode type, type2 = GST_MPEG_VIDEO_PACKET_NONE;
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
const guchar *buf;
|
|
|
|
guint buf_size, flags;
|
|
|
|
gint ofs, ofs1, ofs2;
|
2012-12-06 13:01:46 +00:00
|
|
|
|
|
|
|
status = ensure_decoder(decoder);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
return status;
|
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
buf_size = gst_adapter_available(adapter);
|
|
|
|
if (buf_size < 4)
|
2012-12-06 13:01:46 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
|
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
buf = gst_adapter_peek(adapter, buf_size);
|
|
|
|
if (!buf)
|
2012-12-06 13:01:46 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
|
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ofs = scan_for_start_code(buf, buf_size, &type);
|
|
|
|
if (ofs < 0)
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
|
|
|
|
ofs1 = ofs;
|
2013-01-02 13:18:31 +00:00
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ofs2 = ps->input_offset2 - 4;
|
|
|
|
if (ofs2 < ofs1 + 4)
|
|
|
|
ofs2 = ofs1 + 4;
|
2013-01-02 13:18:31 +00:00
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ofs = G_UNLIKELY(buf_size < ofs2 + 4) ? -1 :
|
2013-01-09 15:05:39 +00:00
|
|
|
scan_for_start_code(&buf[ofs2], buf_size - ofs2, &type2);
|
2012-12-06 13:01:46 +00:00
|
|
|
if (ofs < 0) {
|
|
|
|
// Assume the whole packet is present if end-of-stream
|
2013-01-02 13:18:31 +00:00
|
|
|
if (!at_eos) {
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ps->input_offset2 = buf_size;
|
2012-12-06 13:01:46 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_NO_DATA;
|
2013-01-02 13:18:31 +00:00
|
|
|
}
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ofs = buf_size - ofs2;
|
2012-12-06 13:01:46 +00:00
|
|
|
}
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
ofs2 += ofs;
|
2013-01-07 09:48:27 +00:00
|
|
|
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
unit->size = ofs2 - ofs1;
|
|
|
|
gst_adapter_flush(adapter, ofs1);
|
|
|
|
ps->input_offset2 = 4;
|
2012-12-27 13:41:04 +00:00
|
|
|
|
2012-12-06 13:01:46 +00:00
|
|
|
/* Check for start of new picture */
|
2012-12-27 13:41:04 +00:00
|
|
|
flags = 0;
|
2013-01-07 14:24:51 +00:00
|
|
|
switch (type) {
|
2012-12-06 13:01:46 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE_END:
|
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_END;
|
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_STREAM_END;
|
|
|
|
break;
|
|
|
|
case GST_MPEG_VIDEO_PACKET_USER_DATA:
|
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_SKIP;
|
|
|
|
/* fall-through */
|
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE:
|
|
|
|
case GST_MPEG_VIDEO_PACKET_GOP:
|
|
|
|
case GST_MPEG_VIDEO_PACKET_PICTURE:
|
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_START;
|
|
|
|
break;
|
2013-01-07 14:24:51 +00:00
|
|
|
case GST_MPEG_VIDEO_PACKET_EXTENSION:
|
mpeg2: optimize scan for start codes.
Accelerate scan for start codes by skipping up to 3 bytes per iteration.
A start code prefix is defined by the following bytes: 00 00 01. Thus,
for any group of 3 bytes (xx yy zz), we have the following possible cases:
1. If zz != 1, this cannot be a start code, then skip 3 bytes;
2. If yy != 0, this cannot be a start code, then skip 2 bytes;
3. If xx != 0 or zz != 1, this cannot be a start code, then skip 1 byte;
4. xx == 00, yy == 00, zz == 1, we have match!
This algorithm requires to peek bytes from the adapter. This increases the
amount of bytes copied to a temporary buffer, but this process is much faster
than scanning for all the bytes and using shift/masks. So, overall, this is
a win.
2013-01-09 12:44:18 +00:00
|
|
|
if (G_UNLIKELY(unit->size < 5))
|
2013-01-07 14:24:51 +00:00
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_BITSTREAM_PARSER;
|
|
|
|
break;
|
2012-12-06 13:01:46 +00:00
|
|
|
default:
|
2013-01-07 14:24:51 +00:00
|
|
|
if (type >= GST_MPEG_VIDEO_PACKET_SLICE_MIN &&
|
2013-01-09 15:05:39 +00:00
|
|
|
type <= GST_MPEG_VIDEO_PACKET_SLICE_MAX) {
|
2012-12-06 13:01:46 +00:00
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_SLICE;
|
2013-01-09 15:05:39 +00:00
|
|
|
switch (type2) {
|
|
|
|
case GST_MPEG_VIDEO_PACKET_USER_DATA:
|
|
|
|
case GST_MPEG_VIDEO_PACKET_SEQUENCE:
|
|
|
|
case GST_MPEG_VIDEO_PACKET_GOP:
|
|
|
|
case GST_MPEG_VIDEO_PACKET_PICTURE:
|
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_FRAME_END;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2012-12-27 13:41:04 +00:00
|
|
|
|
|
|
|
// Ignore system start codes (PES headers)
|
2013-01-07 14:24:51 +00:00
|
|
|
else if (type >= 0xb9 && type <= 0xff)
|
2012-12-27 13:41:04 +00:00
|
|
|
flags |= GST_VAAPI_DECODER_UNIT_FLAG_SKIP;
|
2012-12-06 13:01:46 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
GST_VAAPI_DECODER_UNIT_FLAG_SET(unit, flags);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
gst_vaapi_decoder_mpeg2_decode(GstVaapiDecoder *base_decoder,
|
|
|
|
GstVaapiDecoderUnit *unit)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2 * const decoder =
|
2013-01-02 13:45:50 +00:00
|
|
|
GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
|
2012-12-06 13:01:46 +00:00
|
|
|
GstVaapiDecoderStatus status;
|
2013-01-07 14:24:51 +00:00
|
|
|
GstMpegVideoPacket packet;
|
2012-12-06 13:01:46 +00:00
|
|
|
|
|
|
|
status = ensure_decoder(decoder);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
return status;
|
2013-01-07 14:24:51 +00:00
|
|
|
|
|
|
|
packet.data =
|
|
|
|
(GST_BUFFER_DATA(GST_VAAPI_DECODER_CODEC_FRAME(decoder)->input_buffer) +
|
|
|
|
unit->offset);
|
|
|
|
packet.size = unit->size;
|
|
|
|
packet.type = packet.data[3];
|
|
|
|
packet.offset = 4;
|
|
|
|
|
|
|
|
status = parse_unit(decoder, unit, &packet);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
return status;
|
|
|
|
return decode_unit(decoder, unit, &packet);
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
gst_vaapi_decoder_mpeg2_start_frame(GstVaapiDecoder *base_decoder,
|
|
|
|
GstVaapiDecoderUnit *base_unit)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2 * const decoder =
|
2013-01-02 13:45:50 +00:00
|
|
|
GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
|
2012-12-27 14:18:55 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
2013-01-02 13:10:20 +00:00
|
|
|
GstMpegVideoSequenceHdr *seq_hdr;
|
|
|
|
GstMpegVideoSequenceExt *seq_ext;
|
|
|
|
GstMpegVideoSequenceDisplayExt *seq_display_ext;
|
2012-12-27 14:18:55 +00:00
|
|
|
GstVaapiPicture *picture;
|
|
|
|
GstVaapiDecoderStatus status;
|
|
|
|
|
|
|
|
if (!priv->width || !priv->height) {
|
|
|
|
// Ignore packet while picture size is undefined
|
|
|
|
// i.e. missing sequence headers, or not parsed correctly
|
|
|
|
GST_WARNING("failed to decode picture of unknown size");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2013-01-07 09:48:27 +00:00
|
|
|
seq_hdr = &priv->seq_hdr->data.seq_hdr;
|
|
|
|
seq_ext = priv->seq_ext ? &priv->seq_ext->data.seq_ext : NULL;
|
|
|
|
seq_display_ext = priv->seq_display_ext ?
|
|
|
|
&priv->seq_display_ext->data.seq_display_ext : NULL;
|
2013-01-02 13:10:20 +00:00
|
|
|
if (gst_mpeg_video_finalise_mpeg2_sequence_header(seq_hdr, seq_ext,
|
|
|
|
seq_display_ext))
|
|
|
|
gst_vaapi_decoder_set_pixel_aspect_ratio(base_decoder,
|
|
|
|
seq_hdr->par_w, seq_hdr->par_h);
|
|
|
|
|
2012-12-27 14:18:55 +00:00
|
|
|
status = ensure_context(decoder);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS) {
|
|
|
|
GST_ERROR("failed to reset context");
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->current_picture) {
|
|
|
|
/* Re-use current picture where the first field was decoded */
|
|
|
|
picture = gst_vaapi_picture_new_field(priv->current_picture);
|
|
|
|
if (!picture) {
|
|
|
|
GST_ERROR("failed to allocate field picture");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* Create new picture */
|
|
|
|
picture = GST_VAAPI_PICTURE_NEW(MPEG2, decoder);
|
|
|
|
if (!picture) {
|
|
|
|
GST_ERROR("failed to allocate picture");
|
|
|
|
return GST_VAAPI_DECODER_STATUS_ERROR_ALLOCATION_FAILED;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
gst_vaapi_picture_replace(&priv->current_picture, picture);
|
|
|
|
gst_vaapi_picture_unref(picture);
|
|
|
|
|
|
|
|
status = ensure_quant_matrix(decoder, picture);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS) {
|
|
|
|
GST_ERROR("failed to reset quantizer matrix");
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
|
|
|
status = init_picture(decoder, picture);
|
|
|
|
if (status != GST_VAAPI_DECODER_STATUS_SUCCESS)
|
|
|
|
return status;
|
|
|
|
|
|
|
|
fill_picture(decoder, picture);
|
|
|
|
return GST_VAAPI_DECODER_STATUS_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GstVaapiDecoderStatus
|
|
|
|
gst_vaapi_decoder_mpeg2_end_frame(GstVaapiDecoder *base_decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2 * const decoder =
|
2013-01-02 13:45:50 +00:00
|
|
|
GST_VAAPI_DECODER_MPEG2_CAST(base_decoder);
|
2012-12-27 14:18:55 +00:00
|
|
|
|
|
|
|
return decode_current_picture(decoder);
|
|
|
|
}
|
|
|
|
|
2011-08-05 09:55:11 +00:00
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_finalize(GObject *object)
|
|
|
|
{
|
2013-01-02 13:45:50 +00:00
|
|
|
GstVaapiDecoderMpeg2 * const decoder = GST_VAAPI_DECODER_MPEG2_CAST(object);
|
2011-08-05 09:55:11 +00:00
|
|
|
|
|
|
|
gst_vaapi_decoder_mpeg2_destroy(decoder);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS(gst_vaapi_decoder_mpeg2_parent_class)->finalize(object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_constructed(GObject *object)
|
|
|
|
{
|
2013-01-02 13:45:50 +00:00
|
|
|
GstVaapiDecoderMpeg2 * const decoder = GST_VAAPI_DECODER_MPEG2_CAST(object);
|
2011-08-05 09:55:11 +00:00
|
|
|
GstVaapiDecoderMpeg2Private * const priv = decoder->priv;
|
|
|
|
GObjectClass *parent_class;
|
|
|
|
|
|
|
|
parent_class = G_OBJECT_CLASS(gst_vaapi_decoder_mpeg2_parent_class);
|
|
|
|
if (parent_class->constructed)
|
|
|
|
parent_class->constructed(object);
|
|
|
|
|
|
|
|
priv->is_constructed = gst_vaapi_decoder_mpeg2_create(decoder);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_class_init(GstVaapiDecoderMpeg2Class *klass)
|
|
|
|
{
|
|
|
|
GObjectClass * const object_class = G_OBJECT_CLASS(klass);
|
|
|
|
GstVaapiDecoderClass * const decoder_class = GST_VAAPI_DECODER_CLASS(klass);
|
|
|
|
|
|
|
|
g_type_class_add_private(klass, sizeof(GstVaapiDecoderMpeg2Private));
|
|
|
|
|
|
|
|
object_class->finalize = gst_vaapi_decoder_mpeg2_finalize;
|
|
|
|
object_class->constructed = gst_vaapi_decoder_mpeg2_constructed;
|
|
|
|
|
2012-12-06 13:01:46 +00:00
|
|
|
decoder_class->parse = gst_vaapi_decoder_mpeg2_parse;
|
2011-08-05 09:55:11 +00:00
|
|
|
decoder_class->decode = gst_vaapi_decoder_mpeg2_decode;
|
2012-12-27 14:18:55 +00:00
|
|
|
decoder_class->start_frame = gst_vaapi_decoder_mpeg2_start_frame;
|
|
|
|
decoder_class->end_frame = gst_vaapi_decoder_mpeg2_end_frame;
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gst_vaapi_decoder_mpeg2_init(GstVaapiDecoderMpeg2 *decoder)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2Private *priv;
|
|
|
|
|
|
|
|
priv = GST_VAAPI_DECODER_MPEG2_GET_PRIVATE(decoder);
|
|
|
|
decoder->priv = priv;
|
2012-04-02 14:07:58 +00:00
|
|
|
priv->hw_profile = GST_VAAPI_PROFILE_UNKNOWN;
|
2011-08-05 09:55:11 +00:00
|
|
|
priv->profile = GST_VAAPI_PROFILE_MPEG2_SIMPLE;
|
2012-04-02 08:43:30 +00:00
|
|
|
priv->profile_changed = TRUE; /* Allow fallbacks to work */
|
2011-08-05 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gst_vaapi_decoder_mpeg2_new:
|
|
|
|
* @display: a #GstVaapiDisplay
|
|
|
|
* @caps: a #GstCaps holding codec information
|
|
|
|
*
|
|
|
|
* Creates a new #GstVaapiDecoder for MPEG-2 decoding. The @caps can
|
|
|
|
* hold extra information like codec-data and pictured coded size.
|
|
|
|
*
|
|
|
|
* Return value: the newly allocated #GstVaapiDecoder object
|
|
|
|
*/
|
|
|
|
GstVaapiDecoder *
|
|
|
|
gst_vaapi_decoder_mpeg2_new(GstVaapiDisplay *display, GstCaps *caps)
|
|
|
|
{
|
|
|
|
GstVaapiDecoderMpeg2 *decoder;
|
|
|
|
|
|
|
|
g_return_val_if_fail(GST_VAAPI_IS_DISPLAY(display), NULL);
|
|
|
|
g_return_val_if_fail(GST_IS_CAPS(caps), NULL);
|
|
|
|
|
|
|
|
decoder = g_object_new(
|
|
|
|
GST_VAAPI_TYPE_DECODER_MPEG2,
|
|
|
|
"display", display,
|
|
|
|
"caps", caps,
|
|
|
|
NULL
|
|
|
|
);
|
|
|
|
if (!decoder->priv->is_constructed) {
|
|
|
|
g_object_unref(decoder);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
return GST_VAAPI_DECODER_CAST(decoder);
|
|
|
|
}
|