mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-10-04 02:59:55 +00:00
gst-plugins-bad: re-indent with GNU indent 2.2.12
Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/4182>
This commit is contained in:
parent
29484f6f12
commit
81716a1097
57 changed files with 584 additions and 520 deletions
|
@ -53,7 +53,7 @@ buffer_size_valid (GstMapInfo * info)
|
||||||
}
|
}
|
||||||
|
|
||||||
GstClockTime
|
GstClockTime
|
||||||
get_avtp_tstamp (GstAvtpCrfBase * avtpcrfbase, struct avtp_stream_pdu * pdu)
|
get_avtp_tstamp (GstAvtpCrfBase * avtpcrfbase, struct avtp_stream_pdu *pdu)
|
||||||
{
|
{
|
||||||
guint64 tstamp = GST_CLOCK_TIME_NONE, tstamp_valid;
|
guint64 tstamp = GST_CLOCK_TIME_NONE, tstamp_valid;
|
||||||
guint32 type;
|
guint32 type;
|
||||||
|
@ -91,7 +91,7 @@ get_avtp_tstamp (GstAvtpCrfBase * avtpcrfbase, struct avtp_stream_pdu * pdu)
|
||||||
}
|
}
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
h264_tstamp_valid (struct avtp_stream_pdu * pdu)
|
h264_tstamp_valid (struct avtp_stream_pdu *pdu)
|
||||||
{
|
{
|
||||||
guint64 subtype, h264_time_valid;
|
guint64 subtype, h264_time_valid;
|
||||||
guint32 type;
|
guint32 type;
|
||||||
|
|
|
@ -277,7 +277,6 @@ BIT_SLICER (Y8, 4, DEF_THR_FRAC) /* any format with 0 bytes between Y or
|
||||||
BIT_SLICER (RGBA24_LE, 4, DEF_THR_FRAC) /* 3 bytes */
|
BIT_SLICER (RGBA24_LE, 4, DEF_THR_FRAC) /* 3 bytes */
|
||||||
BIT_SLICER (RGB16_LE, 4, bs->thresh_frac)
|
BIT_SLICER (RGB16_LE, 4, bs->thresh_frac)
|
||||||
BIT_SLICER (RGB16_BE, 4, bs->thresh_frac)
|
BIT_SLICER (RGB16_BE, 4, bs->thresh_frac)
|
||||||
|
|
||||||
static const unsigned int LP_AVG = 4;
|
static const unsigned int LP_AVG = 4;
|
||||||
|
|
||||||
static vbi_bool
|
static vbi_bool
|
||||||
|
@ -506,7 +505,8 @@ vbi_bool
|
||||||
uint8_t * buffer,
|
uint8_t * buffer,
|
||||||
unsigned int buffer_size,
|
unsigned int buffer_size,
|
||||||
vbi3_bit_slicer_point * points,
|
vbi3_bit_slicer_point * points,
|
||||||
unsigned int *n_points, unsigned int max_points, const uint8_t * raw) {
|
unsigned int *n_points, unsigned int max_points, const uint8_t * raw)
|
||||||
|
{
|
||||||
static const vbi_pixfmt pixfmt = VBI_PIXFMT_Y8;
|
static const vbi_pixfmt pixfmt = VBI_PIXFMT_Y8;
|
||||||
static const unsigned int bpp = 1;
|
static const unsigned int bpp = 1;
|
||||||
static const unsigned int oversampling = 4; /* see above */
|
static const unsigned int oversampling = 4; /* see above */
|
||||||
|
|
|
@ -535,7 +535,7 @@ signal_u8 (uint8_t * raw,
|
||||||
goto bounds;
|
goto bounds;
|
||||||
|
|
||||||
if (sp->interlaced) {
|
if (sp->interlaced) {
|
||||||
row *= 2 + ! !(flags & _VBI_RAW_SWAP_FIELDS);
|
row *= 2 + !!(flags & _VBI_RAW_SWAP_FIELDS);
|
||||||
} else if (flags & _VBI_RAW_SWAP_FIELDS) {
|
} else if (flags & _VBI_RAW_SWAP_FIELDS) {
|
||||||
row += sp->count[0];
|
row += sp->count[0];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1072,7 +1072,7 @@ vbi3_raw_decoder_debug (vbi3_raw_decoder * rd, vbi_bool enable)
|
||||||
#endif
|
#endif
|
||||||
r = TRUE;
|
r = TRUE;
|
||||||
|
|
||||||
rd->debug = ! !enable;
|
rd->debug = !!enable;
|
||||||
|
|
||||||
n_lines = 0;
|
n_lines = 0;
|
||||||
if (enable) {
|
if (enable) {
|
||||||
|
@ -1135,7 +1135,8 @@ vbi3_raw_decoder_services (vbi3_raw_decoder * rd)
|
||||||
/* Attn: strict must be int for compatibility with libzvbi 0.2 (-1 == 0) */
|
/* Attn: strict must be int for compatibility with libzvbi 0.2 (-1 == 0) */
|
||||||
vbi_service_set
|
vbi_service_set
|
||||||
vbi3_raw_decoder_set_sampling_par
|
vbi3_raw_decoder_set_sampling_par
|
||||||
(vbi3_raw_decoder * rd, const vbi_sampling_par * sp, int strict) {
|
(vbi3_raw_decoder * rd, const vbi_sampling_par * sp, int strict)
|
||||||
|
{
|
||||||
unsigned int services;
|
unsigned int services;
|
||||||
|
|
||||||
assert (NULL != rd);
|
assert (NULL != rd);
|
||||||
|
|
|
@ -332,7 +332,8 @@ static vbi_bool
|
||||||
vbi_service_set
|
vbi_service_set
|
||||||
_vbi_sampling_par_check_services_log
|
_vbi_sampling_par_check_services_log
|
||||||
(const vbi_sampling_par * sp,
|
(const vbi_sampling_par * sp,
|
||||||
vbi_service_set services, unsigned int strict, _vbi_log_hook * log) {
|
vbi_service_set services, unsigned int strict, _vbi_log_hook * log)
|
||||||
|
{
|
||||||
const _vbi_service_par *par;
|
const _vbi_service_par *par;
|
||||||
vbi_service_set rservices;
|
vbi_service_set rservices;
|
||||||
|
|
||||||
|
@ -359,7 +360,8 @@ vbi_service_set
|
||||||
(vbi_sampling_par * sp,
|
(vbi_sampling_par * sp,
|
||||||
unsigned int *max_rate,
|
unsigned int *max_rate,
|
||||||
vbi_videostd_set videostd_set_req,
|
vbi_videostd_set videostd_set_req,
|
||||||
vbi_service_set services, _vbi_log_hook * log) {
|
vbi_service_set services, _vbi_log_hook * log)
|
||||||
|
{
|
||||||
const _vbi_service_par *par;
|
const _vbi_service_par *par;
|
||||||
vbi_service_set rservices;
|
vbi_service_set rservices;
|
||||||
vbi_videostd_set videostd_set;
|
vbi_videostd_set videostd_set;
|
||||||
|
@ -502,8 +504,8 @@ vbi_service_set
|
||||||
*/
|
*/
|
||||||
vbi_service_set
|
vbi_service_set
|
||||||
vbi_sampling_par_check_services
|
vbi_sampling_par_check_services
|
||||||
(const vbi_sampling_par * sp,
|
(const vbi_sampling_par * sp, vbi_service_set services, unsigned int strict)
|
||||||
vbi_service_set services, unsigned int strict) {
|
{
|
||||||
return _vbi_sampling_par_check_services_log (sp, services, strict,
|
return _vbi_sampling_par_check_services_log (sp, services, strict,
|
||||||
/* log_hook */ NULL);
|
/* log_hook */ NULL);
|
||||||
}
|
}
|
||||||
|
|
|
@ -2398,7 +2398,7 @@ gst_dash_demux_seek (GstAdaptiveDemux * demux, GstEvent * seek)
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
trickmode_no_audio = ! !(flags & GST_SEEK_FLAG_TRICKMODE_NO_AUDIO);
|
trickmode_no_audio = !!(flags & GST_SEEK_FLAG_TRICKMODE_NO_AUDIO);
|
||||||
|
|
||||||
streams = demux->streams;
|
streams = demux->streams;
|
||||||
if (current_period != gst_mpd_client_get_period_index (dashdemux->client)) {
|
if (current_period != gst_mpd_client_get_period_index (dashdemux->client)) {
|
||||||
|
|
|
@ -832,13 +832,13 @@ log_state (GstDtlsConnection * self, const gchar * str)
|
||||||
GstDtlsConnectionPrivate *priv = self->priv;
|
GstDtlsConnectionPrivate *priv = self->priv;
|
||||||
guint states = 0;
|
guint states = 0;
|
||||||
|
|
||||||
states |= (! !SSL_is_init_finished (priv->ssl) << 0);
|
states |= (!!SSL_is_init_finished (priv->ssl) << 0);
|
||||||
states |= (! !SSL_in_init (priv->ssl) << 4);
|
states |= (!!SSL_in_init (priv->ssl) << 4);
|
||||||
states |= (! !SSL_in_before (priv->ssl) << 8);
|
states |= (!!SSL_in_before (priv->ssl) << 8);
|
||||||
states |= (! !SSL_in_connect_init (priv->ssl) << 12);
|
states |= (!!SSL_in_connect_init (priv->ssl) << 12);
|
||||||
states |= (! !SSL_in_accept_init (priv->ssl) << 16);
|
states |= (!!SSL_in_accept_init (priv->ssl) << 16);
|
||||||
states |= (! !SSL_want_write (priv->ssl) << 20);
|
states |= (!!SSL_want_write (priv->ssl) << 20);
|
||||||
states |= (! !SSL_want_read (priv->ssl) << 24);
|
states |= (!!SSL_want_read (priv->ssl) << 24);
|
||||||
|
|
||||||
#if OPENSSL_VERSION_NUMBER < 0x10100001L
|
#if OPENSSL_VERSION_NUMBER < 0x10100001L
|
||||||
GST_LOG_OBJECT (self, "%s: role=%s buf=(%d,%p:%d/%d) %x|%x %s",
|
GST_LOG_OBJECT (self, "%s: role=%s buf=(%d,%p:%d/%d) %x|%x %s",
|
||||||
|
|
|
@ -422,7 +422,7 @@ gst_hls_demux_stream_seek (GstAdaptiveDemuxStream * stream, gboolean forward,
|
||||||
/* Snap to segment boundary. Improves seek performance on slow machines. */
|
/* Snap to segment boundary. Improves seek performance on slow machines. */
|
||||||
snap_nearest =
|
snap_nearest =
|
||||||
(flags & GST_SEEK_FLAG_SNAP_NEAREST) == GST_SEEK_FLAG_SNAP_NEAREST;
|
(flags & GST_SEEK_FLAG_SNAP_NEAREST) == GST_SEEK_FLAG_SNAP_NEAREST;
|
||||||
snap_after = ! !(flags & GST_SEEK_FLAG_SNAP_AFTER);
|
snap_after = !!(flags & GST_SEEK_FLAG_SNAP_AFTER);
|
||||||
|
|
||||||
GST_M3U8_CLIENT_LOCK (hlsdemux->client);
|
GST_M3U8_CLIENT_LOCK (hlsdemux->client);
|
||||||
/* FIXME: Here we need proper discont handling */
|
/* FIXME: Here we need proper discont handling */
|
||||||
|
|
|
@ -137,7 +137,7 @@ gst_kate_spu_decode_colcon (GstKateEnc * ke, const guint8 * ptr, guint16 sz)
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline guint8
|
static inline guint8
|
||||||
gst_kate_spu_get_nybble (const guint8 * nybbles, size_t * nybble_offset)
|
gst_kate_spu_get_nybble (const guint8 * nybbles, size_t *nybble_offset)
|
||||||
{
|
{
|
||||||
guint8 ret;
|
guint8 ret;
|
||||||
|
|
||||||
|
@ -155,7 +155,7 @@ gst_kate_spu_get_nybble (const guint8 * nybbles, size_t * nybble_offset)
|
||||||
}
|
}
|
||||||
|
|
||||||
static guint16
|
static guint16
|
||||||
gst_kate_spu_get_rle_code (const guint8 * nybbles, size_t * nybble_offset)
|
gst_kate_spu_get_rle_code (const guint8 * nybbles, size_t *nybble_offset)
|
||||||
{
|
{
|
||||||
guint16 code;
|
guint16 code;
|
||||||
|
|
||||||
|
|
|
@ -374,7 +374,7 @@ plugin_init (GstPlugin * plugin)
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __GNUC__
|
#ifdef __GNUC__
|
||||||
__attribute__ ((destructor))
|
__attribute__((destructor))
|
||||||
#endif
|
#endif
|
||||||
static void plugin_cleanup (GstPlugin * plugin)
|
static void plugin_cleanup (GstPlugin * plugin)
|
||||||
{
|
{
|
||||||
|
|
|
@ -358,46 +358,47 @@ gst_openal_helper_probe_caps (ALCcontext * context)
|
||||||
GstAudioChannelPosition positions[8];
|
GstAudioChannelPosition positions[8];
|
||||||
} chans[] = {
|
} chans[] = {
|
||||||
{
|
{
|
||||||
1, {
|
1, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_MONO}
|
GST_AUDIO_CHANNEL_POSITION_MONO}
|
||||||
}, {
|
}, {
|
||||||
2, {
|
2, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT}
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT}
|
||||||
}, {
|
}, {
|
||||||
4, {
|
4, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}
|
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}
|
||||||
}, {
|
}, {
|
||||||
6, {
|
6, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}
|
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}
|
||||||
}, {
|
}, {
|
||||||
7, {
|
7, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_CENTER,
|
GST_AUDIO_CHANNEL_POSITION_REAR_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}
|
GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}
|
||||||
}, {
|
}, {
|
||||||
8, {
|
8, {
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
GST_AUDIO_CHANNEL_POSITION_LFE1,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_REAR_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT,
|
GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT,
|
GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT,
|
||||||
GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}
|
GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}
|
||||||
},};
|
},
|
||||||
|
};
|
||||||
GstStructure *structure;
|
GstStructure *structure;
|
||||||
guint64 channel_mask;
|
guint64 channel_mask;
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
|
@ -417,15 +418,17 @@ gst_openal_helper_probe_caps (ALCcontext * context)
|
||||||
"AL_FORMAT_71CHN32",
|
"AL_FORMAT_71CHN32",
|
||||||
NULL
|
NULL
|
||||||
}, *fmt16[] = {
|
}, *fmt16[] = {
|
||||||
"AL_FORMAT_MONO16",
|
"AL_FORMAT_MONO16",
|
||||||
"AL_FORMAT_STEREO16",
|
"AL_FORMAT_STEREO16",
|
||||||
"AL_FORMAT_QUAD16",
|
"AL_FORMAT_QUAD16",
|
||||||
"AL_FORMAT_51CHN16",
|
"AL_FORMAT_51CHN16",
|
||||||
"AL_FORMAT_61CHN16", "AL_FORMAT_71CHN16", NULL}, *fmt8[] = {
|
"AL_FORMAT_61CHN16", "AL_FORMAT_71CHN16", NULL
|
||||||
"AL_FORMAT_MONO8",
|
}, *fmt8[] = {
|
||||||
"AL_FORMAT_STEREO8",
|
"AL_FORMAT_MONO8",
|
||||||
"AL_FORMAT_QUAD8",
|
"AL_FORMAT_STEREO8",
|
||||||
"AL_FORMAT_51CHN8", "AL_FORMAT_61CHN8", "AL_FORMAT_71CHN8", NULL};
|
"AL_FORMAT_QUAD8",
|
||||||
|
"AL_FORMAT_51CHN8", "AL_FORMAT_61CHN8", "AL_FORMAT_71CHN8", NULL
|
||||||
|
};
|
||||||
int i;
|
int i;
|
||||||
|
|
||||||
if (alIsExtensionPresent ("AL_EXT_FLOAT32")) {
|
if (alIsExtensionPresent ("AL_EXT_FLOAT32")) {
|
||||||
|
|
|
@ -2438,7 +2438,7 @@ rsn_dvdsrc_src_event (GstBaseSrc * basesrc, GstEvent * event)
|
||||||
GST_LOG_OBJECT (src, "handling seek event");
|
GST_LOG_OBJECT (src, "handling seek event");
|
||||||
|
|
||||||
gst_event_parse_seek (event, NULL, NULL, &flags, NULL, NULL, NULL, NULL);
|
gst_event_parse_seek (event, NULL, NULL, &flags, NULL, NULL, NULL, NULL);
|
||||||
src->flushing_seek = ! !(flags & GST_SEEK_FLAG_FLUSH);
|
src->flushing_seek = !!(flags & GST_SEEK_FLAG_FLUSH);
|
||||||
GST_DEBUG_OBJECT (src, "%s seek event",
|
GST_DEBUG_OBJECT (src, "%s seek event",
|
||||||
src->flushing_seek ? "flushing" : "non-flushing");
|
src->flushing_seek ? "flushing" : "non-flushing");
|
||||||
|
|
||||||
|
|
|
@ -1359,7 +1359,8 @@ fixate_size (GstVulkanViewConvert * viewconvert,
|
||||||
GstStructure *ins, *outs;
|
GstStructure *ins, *outs;
|
||||||
const GValue *from_par, *to_par;
|
const GValue *from_par, *to_par;
|
||||||
GValue fpar = { 0, }, tpar = {
|
GValue fpar = { 0, }, tpar = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
othercaps = gst_caps_make_writable (othercaps);
|
othercaps = gst_caps_make_writable (othercaps);
|
||||||
othercaps = gst_caps_truncate (othercaps);
|
othercaps = gst_caps_truncate (othercaps);
|
||||||
|
|
|
@ -422,9 +422,9 @@ gst_x265_enc_sink_getcaps (GstVideoEncoder * enc, GstCaps * filter)
|
||||||
if (max_bit_minus_8 >= 2)
|
if (max_bit_minus_8 >= 2)
|
||||||
has_10bit = TRUE;
|
has_10bit = TRUE;
|
||||||
|
|
||||||
has_8bit &= ! !vtable_8bit;
|
has_8bit &= !!vtable_8bit;
|
||||||
has_10bit &= ! !vtable_10bit;
|
has_10bit &= !!vtable_10bit;
|
||||||
has_12bit &= ! !vtable_12bit;
|
has_12bit &= !!vtable_12bit;
|
||||||
|
|
||||||
/* 4:4:4 profiles can handle 4:2:2 and 4:2:0 */
|
/* 4:4:4 profiles can handle 4:2:2 and 4:2:0 */
|
||||||
if (max_chroma_index >= 2)
|
if (max_chroma_index >= 2)
|
||||||
|
@ -534,8 +534,8 @@ gst_x265_enc_class_init (GstX265EncClass * klass)
|
||||||
"height", GST_TYPE_INT_RANGE, 16, G_MAXINT, NULL);
|
"height", GST_TYPE_INT_RANGE, 16, G_MAXINT, NULL);
|
||||||
|
|
||||||
gst_x265_enc_add_x265_chroma_format (gst_caps_get_structure
|
gst_x265_enc_add_x265_chroma_format (gst_caps_get_structure
|
||||||
(supported_sinkcaps, 0), TRUE, TRUE, TRUE, ! !vtable_8bit,
|
(supported_sinkcaps, 0), TRUE, TRUE, TRUE, !!vtable_8bit,
|
||||||
! !vtable_10bit, ! !vtable_12bit);
|
!!vtable_10bit, !!vtable_12bit);
|
||||||
|
|
||||||
sink_templ = gst_pad_template_new ("sink",
|
sink_templ = gst_pad_template_new ("sink",
|
||||||
GST_PAD_SINK, GST_PAD_ALWAYS, supported_sinkcaps);
|
GST_PAD_SINK, GST_PAD_ALWAYS, supported_sinkcaps);
|
||||||
|
|
|
@ -986,7 +986,7 @@ gst_h264_parser_parse_pic_timing (GstH264NalParser * nalparser,
|
||||||
hrd = &vui->vcl_hrd_parameters;
|
hrd = &vui->vcl_hrd_parameters;
|
||||||
}
|
}
|
||||||
|
|
||||||
tim->CpbDpbDelaysPresentFlag = ! !hrd;
|
tim->CpbDpbDelaysPresentFlag = !!hrd;
|
||||||
tim->pic_struct_present_flag = vui->pic_struct_present_flag;
|
tim->pic_struct_present_flag = vui->pic_struct_present_flag;
|
||||||
|
|
||||||
if (tim->CpbDpbDelaysPresentFlag) {
|
if (tim->CpbDpbDelaysPresentFlag) {
|
||||||
|
|
|
@ -523,7 +523,8 @@ gst_mpeg_video_packet_parse_sequence_display_extension (const GstMpegVideoPacket
|
||||||
gboolean
|
gboolean
|
||||||
gst_mpeg_video_packet_parse_sequence_scalable_extension
|
gst_mpeg_video_packet_parse_sequence_scalable_extension
|
||||||
(const GstMpegVideoPacket * packet,
|
(const GstMpegVideoPacket * packet,
|
||||||
GstMpegVideoSequenceScalableExt * seqscaleext) {
|
GstMpegVideoSequenceScalableExt * seqscaleext)
|
||||||
|
{
|
||||||
GstBitReader br;
|
GstBitReader br;
|
||||||
|
|
||||||
g_return_val_if_fail (seqscaleext != NULL, FALSE);
|
g_return_val_if_fail (seqscaleext != NULL, FALSE);
|
||||||
|
|
|
@ -156,7 +156,7 @@ gst_vulkan_display_wayland_new (const gchar * name)
|
||||||
* Since: 1.18
|
* Since: 1.18
|
||||||
*/
|
*/
|
||||||
GstVulkanDisplayWayland *
|
GstVulkanDisplayWayland *
|
||||||
gst_vulkan_display_wayland_new_with_display (struct wl_display * display)
|
gst_vulkan_display_wayland_new_with_display (struct wl_display *display)
|
||||||
{
|
{
|
||||||
GstVulkanDisplayWayland *ret;
|
GstVulkanDisplayWayland *ret;
|
||||||
|
|
||||||
|
|
|
@ -40,7 +40,7 @@ gst_is_wl_display_handle_need_context_message (GstMessage * msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
GstContext *
|
GstContext *
|
||||||
gst_wl_display_handle_context_new (struct wl_display * display)
|
gst_wl_display_handle_context_new (struct wl_display *display)
|
||||||
{
|
{
|
||||||
GstContext *context =
|
GstContext *context =
|
||||||
gst_context_new (GST_WL_DISPLAY_HANDLE_CONTEXT_TYPE, TRUE);
|
gst_context_new (GST_WL_DISPLAY_HANDLE_CONTEXT_TYPE, TRUE);
|
||||||
|
|
|
@ -349,7 +349,7 @@ gst_wl_display_new (const gchar * name, GError ** error)
|
||||||
}
|
}
|
||||||
|
|
||||||
GstWlDisplay *
|
GstWlDisplay *
|
||||||
gst_wl_display_new_existing (struct wl_display * display,
|
gst_wl_display_new_existing (struct wl_display *display,
|
||||||
gboolean take_ownership, GError ** error)
|
gboolean take_ownership, GError ** error)
|
||||||
{
|
{
|
||||||
GstWlDisplay *self;
|
GstWlDisplay *self;
|
||||||
|
|
|
@ -344,7 +344,7 @@ error:
|
||||||
|
|
||||||
GstWlWindow *
|
GstWlWindow *
|
||||||
gst_wl_window_new_in_surface (GstWlDisplay * display,
|
gst_wl_window_new_in_surface (GstWlDisplay * display,
|
||||||
struct wl_surface * parent, GMutex * render_lock)
|
struct wl_surface *parent, GMutex * render_lock)
|
||||||
{
|
{
|
||||||
GstWlWindow *self;
|
GstWlWindow *self;
|
||||||
GstWlWindowPrivate *priv;
|
GstWlWindowPrivate *priv;
|
||||||
|
|
|
@ -410,7 +410,7 @@ liq_set_last_index_transparent (liq_attr * attr, int is_last)
|
||||||
if (!CHECK_STRUCT_TYPE (attr, liq_attr))
|
if (!CHECK_STRUCT_TYPE (attr, liq_attr))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
attr->last_index_transparent = ! !is_last;
|
attr->last_index_transparent = !!is_last;
|
||||||
}
|
}
|
||||||
|
|
||||||
LIQ_EXPORT void
|
LIQ_EXPORT void
|
||||||
|
|
|
@ -37,8 +37,9 @@ mempool_create (mempool * mptr, const unsigned int size, unsigned int max_size,
|
||||||
if (!*mptr)
|
if (!*mptr)
|
||||||
return NULL;
|
return NULL;
|
||||||
**mptr = (struct mempool) {
|
**mptr = (struct mempool) {
|
||||||
.malloc = malloc,.free = free,.size = MEMPOOL_RESERVED + max_size,.used =
|
.malloc = malloc,.free = free,.size = MEMPOOL_RESERVED + max_size,.used =
|
||||||
sizeof (struct mempool),.next = old,};
|
sizeof (struct mempool),.next = old,
|
||||||
|
};
|
||||||
mptr_used_start = (uintptr_t) (*mptr) + (*mptr)->used;
|
mptr_used_start = (uintptr_t) (*mptr) + (*mptr)->used;
|
||||||
(*mptr)->used += (ALIGN_MASK + 1 - (mptr_used_start & ALIGN_MASK)) & ALIGN_MASK; // reserve bytes required to make subsequent allocations aligned
|
(*mptr)->used += (ALIGN_MASK + 1 - (mptr_used_start & ALIGN_MASK)) & ALIGN_MASK; // reserve bytes required to make subsequent allocations aligned
|
||||||
assert (!(((uintptr_t) (*mptr) + (*mptr)->used) & ALIGN_MASK));
|
assert (!(((uintptr_t) (*mptr) + (*mptr)->used) & ALIGN_MASK));
|
||||||
|
|
|
@ -104,7 +104,8 @@ pam_computeacolorhash (struct acolorhash_table *acht,
|
||||||
// the array was allocated with spare items
|
// the array was allocated with spare items
|
||||||
if (i < achl->capacity) {
|
if (i < achl->capacity) {
|
||||||
other_items[i] = (struct acolorhist_arr_item) {
|
other_items[i] = (struct acolorhist_arr_item) {
|
||||||
.color = px,.perceptual_weight = boost,};
|
.color = px,.perceptual_weight = boost,
|
||||||
|
};
|
||||||
achl->used++;
|
achl->used++;
|
||||||
++colors;
|
++colors;
|
||||||
continue;
|
continue;
|
||||||
|
@ -155,7 +156,8 @@ pam_computeacolorhash (struct acolorhash_table *acht,
|
||||||
achl->other_items = new_items;
|
achl->other_items = new_items;
|
||||||
achl->capacity = capacity;
|
achl->capacity = capacity;
|
||||||
new_items[i] = (struct acolorhist_arr_item) {
|
new_items[i] = (struct acolorhist_arr_item) {
|
||||||
.color = px,.perceptual_weight = boost,};
|
.color = px,.perceptual_weight = boost,
|
||||||
|
};
|
||||||
achl->used++;
|
achl->used++;
|
||||||
} else {
|
} else {
|
||||||
// these are elses for first checks whether first and second inline-stored colors are used
|
// these are elses for first checks whether first and second inline-stored colors are used
|
||||||
|
@ -204,8 +206,9 @@ pam_allocacolorhash (unsigned int maxcolors, unsigned int surface,
|
||||||
if (!t)
|
if (!t)
|
||||||
return NULL;
|
return NULL;
|
||||||
*t = (struct acolorhash_table) {
|
*t = (struct acolorhash_table) {
|
||||||
.mempool = m,.hash_size = hash_size,.maxcolors = maxcolors,.ignorebits =
|
.mempool = m,.hash_size = hash_size,.maxcolors = maxcolors,.ignorebits =
|
||||||
ignorebits,};
|
ignorebits,
|
||||||
|
};
|
||||||
memset (t->buckets, 0, hash_size * sizeof (struct acolorhist_arr_head));
|
memset (t->buckets, 0, hash_size * sizeof (struct acolorhist_arr_head));
|
||||||
return t;
|
return t;
|
||||||
}
|
}
|
||||||
|
@ -217,7 +220,7 @@ pam_allocacolorhash (unsigned int maxcolors, unsigned int surface,
|
||||||
}
|
}
|
||||||
|
|
||||||
LIQ_PRIVATE histogram *
|
LIQ_PRIVATE histogram *
|
||||||
pam_acolorhashtoacolorhist (const struct acolorhash_table * acht,
|
pam_acolorhashtoacolorhist (const struct acolorhash_table *acht,
|
||||||
const double gamma, void *(*malloc) (size_t), void (*free) (void *))
|
const double gamma, void *(*malloc) (size_t), void (*free) (void *))
|
||||||
{
|
{
|
||||||
histogram *hist = malloc (sizeof (hist[0]));
|
histogram *hist = malloc (sizeof (hist[0]));
|
||||||
|
|
|
@ -33,7 +33,7 @@ const struct PgsFrameRateEntry
|
||||||
guint fps_d;
|
guint fps_d;
|
||||||
} PgsFrameRates[] = {
|
} PgsFrameRates[] = {
|
||||||
{
|
{
|
||||||
64, 30000, 1001} /* 29.97 FPS */
|
64, 30000, 1001} /* 29.97 FPS */
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef enum PgsCommandType PgsCommandType;
|
typedef enum PgsCommandType PgsCommandType;
|
||||||
|
|
|
@ -1655,7 +1655,7 @@ gst_field_analysis_process_buffer (GstFieldAnalysis * filter,
|
||||||
&& telecine_matches & FIELD_ANALYSIS_BOTTOM_TOP)) {
|
&& telecine_matches & FIELD_ANALYSIS_BOTTOM_TOP)) {
|
||||||
/* held is opposite to matched => need both field from prev */
|
/* held is opposite to matched => need both field from prev */
|
||||||
/* if t_b, hold bottom from prev and top from current, else vice-versa */
|
/* if t_b, hold bottom from prev and top from current, else vice-versa */
|
||||||
res1->holding = 1 + ! !(telecine_matches & FIELD_ANALYSIS_TOP_BOTTOM);
|
res1->holding = 1 + !!(telecine_matches & FIELD_ANALYSIS_TOP_BOTTOM);
|
||||||
res0->holding = 1 + !(telecine_matches & FIELD_ANALYSIS_TOP_BOTTOM);
|
res0->holding = 1 + !(telecine_matches & FIELD_ANALYSIS_TOP_BOTTOM);
|
||||||
/* push prev TCM */
|
/* push prev TCM */
|
||||||
outbuf =
|
outbuf =
|
||||||
|
|
|
@ -606,10 +606,10 @@ add_count_or_num_tag (GstId3v2Tag * id3v2tag, const GstTagList * list,
|
||||||
const gchar *corr_num; /* corresponding NUMBER tag (if count) */
|
const gchar *corr_num; /* corresponding NUMBER tag (if count) */
|
||||||
} corr[] = {
|
} corr[] = {
|
||||||
{
|
{
|
||||||
GST_TAG_TRACK_NUMBER, GST_TAG_TRACK_COUNT, NULL}, {
|
GST_TAG_TRACK_NUMBER, GST_TAG_TRACK_COUNT, NULL}, {
|
||||||
GST_TAG_TRACK_COUNT, NULL, GST_TAG_TRACK_NUMBER}, {
|
GST_TAG_TRACK_COUNT, NULL, GST_TAG_TRACK_NUMBER}, {
|
||||||
GST_TAG_ALBUM_VOLUME_NUMBER, GST_TAG_ALBUM_VOLUME_COUNT, NULL}, {
|
GST_TAG_ALBUM_VOLUME_NUMBER, GST_TAG_ALBUM_VOLUME_COUNT, NULL}, {
|
||||||
GST_TAG_ALBUM_VOLUME_COUNT, NULL, GST_TAG_ALBUM_VOLUME_NUMBER}
|
GST_TAG_ALBUM_VOLUME_COUNT, NULL, GST_TAG_ALBUM_VOLUME_NUMBER}
|
||||||
};
|
};
|
||||||
guint idx;
|
guint idx;
|
||||||
|
|
||||||
|
@ -846,23 +846,24 @@ add_musicbrainz_tag (GstId3v2Tag * id3v2tag, const GstTagList * list,
|
||||||
const gchar realworld_id[32];
|
const gchar realworld_id[32];
|
||||||
} mb_ids[] = {
|
} mb_ids[] = {
|
||||||
{
|
{
|
||||||
GST_TAG_MUSICBRAINZ_ARTISTID, "MusicBrainz Artist Id",
|
GST_TAG_MUSICBRAINZ_ARTISTID, "MusicBrainz Artist Id",
|
||||||
"musicbrainz_artistid"}, {
|
"musicbrainz_artistid"}, {
|
||||||
GST_TAG_MUSICBRAINZ_ALBUMID, "MusicBrainz Album Id", "musicbrainz_albumid"}, {
|
GST_TAG_MUSICBRAINZ_ALBUMID, "MusicBrainz Album Id",
|
||||||
GST_TAG_MUSICBRAINZ_ALBUMARTISTID, "MusicBrainz Album Artist Id",
|
"musicbrainz_albumid"}, {
|
||||||
"musicbrainz_albumartistid"}, {
|
GST_TAG_MUSICBRAINZ_ALBUMARTISTID, "MusicBrainz Album Artist Id",
|
||||||
GST_TAG_MUSICBRAINZ_RELEASEGROUPID, "MusicBrainz Release Group Id",
|
"musicbrainz_albumartistid"}, {
|
||||||
"musicbrainz_releasegroupid"}, {
|
GST_TAG_MUSICBRAINZ_RELEASEGROUPID, "MusicBrainz Release Group Id",
|
||||||
GST_TAG_MUSICBRAINZ_TRMID, "MusicBrainz TRM Id", "musicbrainz_trmid"}, {
|
"musicbrainz_releasegroupid"}, {
|
||||||
GST_TAG_CDDA_MUSICBRAINZ_DISCID, "MusicBrainz DiscID",
|
GST_TAG_MUSICBRAINZ_TRMID, "MusicBrainz TRM Id", "musicbrainz_trmid"}, {
|
||||||
"musicbrainz_discid"}, {
|
GST_TAG_CDDA_MUSICBRAINZ_DISCID, "MusicBrainz DiscID",
|
||||||
/* the following one is more or less made up, there seems to be little
|
"musicbrainz_discid"}, {
|
||||||
* evidence that any popular application is actually putting this info
|
/* the following one is more or less made up, there seems to be little
|
||||||
* into TXXX frames; the first one comes from a musicbrainz wiki 'proposed
|
* evidence that any popular application is actually putting this info
|
||||||
* tags' page, the second one is analogue to the vorbis/ape/flac tag. */
|
* into TXXX frames; the first one comes from a musicbrainz wiki 'proposed
|
||||||
GST_TAG_CDDA_CDDB_DISCID, "CDDB DiscID", "discid"}, {
|
* tags' page, the second one is analogue to the vorbis/ape/flac tag. */
|
||||||
GST_TAG_MUSICBRAINZ_RELEASETRACKID, "MusicBrainz Track Id",
|
GST_TAG_CDDA_CDDB_DISCID, "CDDB DiscID", "discid"}, {
|
||||||
"musicbrainz_trackid"}
|
GST_TAG_MUSICBRAINZ_RELEASETRACKID, "MusicBrainz Track Id",
|
||||||
|
"musicbrainz_trackid"}
|
||||||
};
|
};
|
||||||
guint i, idx;
|
guint i, idx;
|
||||||
|
|
||||||
|
@ -1136,75 +1137,75 @@ static const struct
|
||||||
const gchar *data;
|
const gchar *data;
|
||||||
} add_funcs[] = {
|
} add_funcs[] = {
|
||||||
{
|
{
|
||||||
/* Simple text tags */
|
/* Simple text tags */
|
||||||
GST_TAG_ARTIST, add_text_tag, "TPE1"}, {
|
GST_TAG_ARTIST, add_text_tag, "TPE1"}, {
|
||||||
GST_TAG_ALBUM_ARTIST, add_text_tag, "TPE2"}, {
|
GST_TAG_ALBUM_ARTIST, add_text_tag, "TPE2"}, {
|
||||||
GST_TAG_TITLE, add_text_tag, "TIT2"}, {
|
GST_TAG_TITLE, add_text_tag, "TIT2"}, {
|
||||||
GST_TAG_ALBUM, add_text_tag, "TALB"}, {
|
GST_TAG_ALBUM, add_text_tag, "TALB"}, {
|
||||||
GST_TAG_COPYRIGHT, add_text_tag, "TCOP"}, {
|
GST_TAG_COPYRIGHT, add_text_tag, "TCOP"}, {
|
||||||
GST_TAG_COMPOSER, add_text_tag, "TCOM"}, {
|
GST_TAG_COMPOSER, add_text_tag, "TCOM"}, {
|
||||||
GST_TAG_GENRE, add_text_tag, "TCON"}, {
|
GST_TAG_GENRE, add_text_tag, "TCON"}, {
|
||||||
GST_TAG_ENCODED_BY, add_text_tag, "TENC"}, {
|
GST_TAG_ENCODED_BY, add_text_tag, "TENC"}, {
|
||||||
GST_TAG_PUBLISHER, add_text_tag, "TPUB"}, {
|
GST_TAG_PUBLISHER, add_text_tag, "TPUB"}, {
|
||||||
GST_TAG_INTERPRETED_BY, add_text_tag, "TPE4"}, {
|
GST_TAG_INTERPRETED_BY, add_text_tag, "TPE4"}, {
|
||||||
GST_TAG_MUSICAL_KEY, add_text_tag, "TKEY"}, {
|
GST_TAG_MUSICAL_KEY, add_text_tag, "TKEY"}, {
|
||||||
|
|
||||||
/* Private frames */
|
/* Private frames */
|
||||||
GST_TAG_PRIVATE_DATA, add_private_data_tag, "PRIV"}, {
|
GST_TAG_PRIVATE_DATA, add_private_data_tag, "PRIV"}, {
|
||||||
GST_ID3_DEMUX_TAG_ID3V2_FRAME, add_id3v2frame_tag, NULL}, {
|
GST_ID3_DEMUX_TAG_ID3V2_FRAME, add_id3v2frame_tag, NULL}, {
|
||||||
|
|
||||||
/* Track and album numbers */
|
/* Track and album numbers */
|
||||||
GST_TAG_TRACK_NUMBER, add_count_or_num_tag, "TRCK"}, {
|
GST_TAG_TRACK_NUMBER, add_count_or_num_tag, "TRCK"}, {
|
||||||
GST_TAG_TRACK_COUNT, add_count_or_num_tag, "TRCK"}, {
|
GST_TAG_TRACK_COUNT, add_count_or_num_tag, "TRCK"}, {
|
||||||
GST_TAG_ALBUM_VOLUME_NUMBER, add_count_or_num_tag, "TPOS"}, {
|
GST_TAG_ALBUM_VOLUME_NUMBER, add_count_or_num_tag, "TPOS"}, {
|
||||||
GST_TAG_ALBUM_VOLUME_COUNT, add_count_or_num_tag, "TPOS"}, {
|
GST_TAG_ALBUM_VOLUME_COUNT, add_count_or_num_tag, "TPOS"}, {
|
||||||
|
|
||||||
/* Comment tags */
|
/* Comment tags */
|
||||||
GST_TAG_COMMENT, add_comment_tag, NULL}, {
|
GST_TAG_COMMENT, add_comment_tag, NULL}, {
|
||||||
GST_TAG_EXTENDED_COMMENT, add_comment_tag, NULL}, {
|
GST_TAG_EXTENDED_COMMENT, add_comment_tag, NULL}, {
|
||||||
|
|
||||||
/* BPM tag */
|
/* BPM tag */
|
||||||
GST_TAG_BEATS_PER_MINUTE, add_bpm_tag, NULL}, {
|
GST_TAG_BEATS_PER_MINUTE, add_bpm_tag, NULL}, {
|
||||||
|
|
||||||
/* Images */
|
/* Images */
|
||||||
GST_TAG_IMAGE, add_image_tag, NULL}, {
|
GST_TAG_IMAGE, add_image_tag, NULL}, {
|
||||||
GST_TAG_PREVIEW_IMAGE, add_image_tag, NULL}, {
|
GST_TAG_PREVIEW_IMAGE, add_image_tag, NULL}, {
|
||||||
|
|
||||||
/* Misc user-defined text tags for IDs (and UFID frame) */
|
/* Misc user-defined text tags for IDs (and UFID frame) */
|
||||||
GST_TAG_MUSICBRAINZ_ARTISTID, add_musicbrainz_tag, "\000"}, {
|
GST_TAG_MUSICBRAINZ_ARTISTID, add_musicbrainz_tag, "\000"}, {
|
||||||
GST_TAG_MUSICBRAINZ_ALBUMID, add_musicbrainz_tag, "\001"}, {
|
GST_TAG_MUSICBRAINZ_ALBUMID, add_musicbrainz_tag, "\001"}, {
|
||||||
GST_TAG_MUSICBRAINZ_ALBUMARTISTID, add_musicbrainz_tag, "\002"}, {
|
GST_TAG_MUSICBRAINZ_ALBUMARTISTID, add_musicbrainz_tag, "\002"}, {
|
||||||
GST_TAG_MUSICBRAINZ_RELEASEGROUPID, add_musicbrainz_tag, "\003"}, {
|
GST_TAG_MUSICBRAINZ_RELEASEGROUPID, add_musicbrainz_tag, "\003"}, {
|
||||||
GST_TAG_MUSICBRAINZ_TRMID, add_musicbrainz_tag, "\004"}, {
|
GST_TAG_MUSICBRAINZ_TRMID, add_musicbrainz_tag, "\004"}, {
|
||||||
GST_TAG_CDDA_MUSICBRAINZ_DISCID, add_musicbrainz_tag, "\005"}, {
|
GST_TAG_CDDA_MUSICBRAINZ_DISCID, add_musicbrainz_tag, "\005"}, {
|
||||||
GST_TAG_CDDA_CDDB_DISCID, add_musicbrainz_tag, "\006"}, {
|
GST_TAG_CDDA_CDDB_DISCID, add_musicbrainz_tag, "\006"}, {
|
||||||
GST_TAG_MUSICBRAINZ_RELEASETRACKID, add_musicbrainz_tag, "\007"}, {
|
GST_TAG_MUSICBRAINZ_RELEASETRACKID, add_musicbrainz_tag, "\007"}, {
|
||||||
GST_TAG_MUSICBRAINZ_TRACKID, add_unique_file_id_tag, NULL}, {
|
GST_TAG_MUSICBRAINZ_TRACKID, add_unique_file_id_tag, NULL}, {
|
||||||
|
|
||||||
/* Info about encoder */
|
/* Info about encoder */
|
||||||
GST_TAG_ENCODER, add_encoder_tag, NULL}, {
|
GST_TAG_ENCODER, add_encoder_tag, NULL}, {
|
||||||
GST_TAG_ENCODER_VERSION, add_encoder_tag, NULL}, {
|
GST_TAG_ENCODER_VERSION, add_encoder_tag, NULL}, {
|
||||||
|
|
||||||
/* URIs */
|
/* URIs */
|
||||||
GST_TAG_COPYRIGHT_URI, add_uri_tag, "WCOP"}, {
|
GST_TAG_COPYRIGHT_URI, add_uri_tag, "WCOP"}, {
|
||||||
GST_TAG_LICENSE_URI, add_uri_tag, "WCOP"}, {
|
GST_TAG_LICENSE_URI, add_uri_tag, "WCOP"}, {
|
||||||
|
|
||||||
/* Up to here, all the frame ids and contents have been the same between
|
/* Up to here, all the frame ids and contents have been the same between
|
||||||
versions 2.3 and 2.4. The rest of them differ... */
|
versions 2.3 and 2.4. The rest of them differ... */
|
||||||
/* Date (in ID3v2.3, this is a TYER tag. In v2.4, it's a TDRC tag */
|
/* Date (in ID3v2.3, this is a TYER tag. In v2.4, it's a TDRC tag */
|
||||||
GST_TAG_DATE_TIME, add_date_tag, NULL}, {
|
GST_TAG_DATE_TIME, add_date_tag, NULL}, {
|
||||||
|
|
||||||
/* Replaygain data (not really supported in 2.3, we use an experimental
|
/* Replaygain data (not really supported in 2.3, we use an experimental
|
||||||
tag there) */
|
tag there) */
|
||||||
GST_TAG_TRACK_PEAK, add_relative_volume_tag, NULL}, {
|
GST_TAG_TRACK_PEAK, add_relative_volume_tag, NULL}, {
|
||||||
GST_TAG_TRACK_GAIN, add_relative_volume_tag, NULL}, {
|
GST_TAG_TRACK_GAIN, add_relative_volume_tag, NULL}, {
|
||||||
GST_TAG_ALBUM_PEAK, add_relative_volume_tag, NULL}, {
|
GST_TAG_ALBUM_PEAK, add_relative_volume_tag, NULL}, {
|
||||||
GST_TAG_ALBUM_GAIN, add_relative_volume_tag, NULL}, {
|
GST_TAG_ALBUM_GAIN, add_relative_volume_tag, NULL}, {
|
||||||
|
|
||||||
/* Sortable version of various tags. These are all v2.4 ONLY */
|
/* Sortable version of various tags. These are all v2.4 ONLY */
|
||||||
GST_TAG_ARTIST_SORTNAME, add_text_tag_v4, "TSOP"}, {
|
GST_TAG_ARTIST_SORTNAME, add_text_tag_v4, "TSOP"}, {
|
||||||
GST_TAG_ALBUM_SORTNAME, add_text_tag_v4, "TSOA"}, {
|
GST_TAG_ALBUM_SORTNAME, add_text_tag_v4, "TSOA"}, {
|
||||||
GST_TAG_TITLE_SORTNAME, add_text_tag_v4, "TSOT"}
|
GST_TAG_TITLE_SORTNAME, add_text_tag_v4, "TSOT"}
|
||||||
};
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -1377,14 +1378,14 @@ static const struct
|
||||||
const GstId3v1WriteFunc func;
|
const GstId3v1WriteFunc func;
|
||||||
} v1_funcs[] = {
|
} v1_funcs[] = {
|
||||||
{
|
{
|
||||||
GST_TAG_TITLE, 3, 30, latin1_convert}, {
|
GST_TAG_TITLE, 3, 30, latin1_convert}, {
|
||||||
GST_TAG_ARTIST, 33, 30, latin1_convert}, {
|
GST_TAG_ARTIST, 33, 30, latin1_convert}, {
|
||||||
GST_TAG_ALBUM, 63, 30, latin1_convert}, {
|
GST_TAG_ALBUM, 63, 30, latin1_convert}, {
|
||||||
GST_TAG_DATE_TIME, 93, 4, date_v1_convert}, {
|
GST_TAG_DATE_TIME, 93, 4, date_v1_convert}, {
|
||||||
GST_TAG_COMMENT, 97, 28, latin1_convert}, {
|
GST_TAG_COMMENT, 97, 28, latin1_convert}, {
|
||||||
/* Note: one-byte gap here */
|
/* Note: one-byte gap here */
|
||||||
GST_TAG_TRACK_NUMBER, 126, 1, track_number_convert}, {
|
GST_TAG_TRACK_NUMBER, 126, 1, track_number_convert}, {
|
||||||
GST_TAG_GENRE, 127, 1, genre_v1_convert}
|
GST_TAG_GENRE, 127, 1, genre_v1_convert}
|
||||||
};
|
};
|
||||||
|
|
||||||
GstBuffer *
|
GstBuffer *
|
||||||
|
|
|
@ -794,8 +794,10 @@ gst_interlace_caps_double_framerate (GstCaps * caps, gboolean half,
|
||||||
} else if (G_VALUE_TYPE (val) == GST_TYPE_FRACTION_RANGE) {
|
} else if (G_VALUE_TYPE (val) == GST_TYPE_FRACTION_RANGE) {
|
||||||
const GValue *min, *max;
|
const GValue *min, *max;
|
||||||
GValue nrange = { 0, }, nmin = {
|
GValue nrange = { 0, }, nmin = {
|
||||||
0,}, nmax = {
|
0,
|
||||||
0,};
|
}, nmax = {
|
||||||
|
0,
|
||||||
|
};
|
||||||
gint n, d;
|
gint n, d;
|
||||||
|
|
||||||
g_value_init (&nrange, GST_TYPE_FRACTION_RANGE);
|
g_value_init (&nrange, GST_TYPE_FRACTION_RANGE);
|
||||||
|
|
|
@ -574,8 +574,8 @@ parse_cod (GstJP2kDecimator * self, GstByteReader * reader,
|
||||||
}
|
}
|
||||||
|
|
||||||
Scod = gst_byte_reader_get_uint8_unchecked (reader);
|
Scod = gst_byte_reader_get_uint8_unchecked (reader);
|
||||||
cod->sop = ! !(Scod & 0x02);
|
cod->sop = !!(Scod & 0x02);
|
||||||
cod->eph = ! !(Scod & 0x04);
|
cod->eph = !!(Scod & 0x04);
|
||||||
|
|
||||||
/* SGcod */
|
/* SGcod */
|
||||||
cod->progression_order = gst_byte_reader_get_uint8_unchecked (reader);
|
cod->progression_order = gst_byte_reader_get_uint8_unchecked (reader);
|
||||||
|
|
|
@ -1837,8 +1837,8 @@ mpegts_base_handle_seek_event (MpegTSBase * base, GstPad * pad,
|
||||||
" stop: %" GST_TIME_FORMAT, rate, GST_TIME_ARGS (start),
|
" stop: %" GST_TIME_FORMAT, rate, GST_TIME_ARGS (start),
|
||||||
GST_TIME_ARGS (stop));
|
GST_TIME_ARGS (stop));
|
||||||
|
|
||||||
flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
|
flush = !!(flags & GST_SEEK_FLAG_FLUSH);
|
||||||
instant_rate_change = ! !(flags & GST_SEEK_FLAG_INSTANT_RATE_CHANGE);
|
instant_rate_change = !!(flags & GST_SEEK_FLAG_INSTANT_RATE_CHANGE);
|
||||||
|
|
||||||
/* Directly send the instant-rate-change event here before taking the
|
/* Directly send the instant-rate-change event here before taking the
|
||||||
* stream-lock so that it can be applied as soon as possible */
|
* stream-lock so that it can be applied as soon as possible */
|
||||||
|
|
|
@ -846,7 +846,8 @@ mxf_metadata_aes3_audio_essence_descriptor_to_structure (MXFMetadataBase * m)
|
||||||
guint i;
|
guint i;
|
||||||
GValue va = { 0, }
|
GValue va = { 0, }
|
||||||
, v = {
|
, v = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
GstMapInfo map;
|
GstMapInfo map;
|
||||||
|
|
||||||
|
@ -888,7 +889,8 @@ mxf_metadata_aes3_audio_essence_descriptor_to_structure (MXFMetadataBase * m)
|
||||||
guint i;
|
guint i;
|
||||||
GValue va = { 0, }
|
GValue va = { 0, }
|
||||||
, v = {
|
, v = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
GstBuffer *buf;
|
GstBuffer *buf;
|
||||||
GstMapInfo map;
|
GstMapInfo map;
|
||||||
|
|
||||||
|
|
|
@ -4845,8 +4845,8 @@ gst_mxf_demux_seek_push (GstMXFDemux * demux, GstEvent * event)
|
||||||
if (format != GST_FORMAT_TIME)
|
if (format != GST_FORMAT_TIME)
|
||||||
goto wrong_format;
|
goto wrong_format;
|
||||||
|
|
||||||
flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
|
flush = !!(flags & GST_SEEK_FLAG_FLUSH);
|
||||||
keyframe = ! !(flags & GST_SEEK_FLAG_KEY_UNIT);
|
keyframe = !!(flags & GST_SEEK_FLAG_KEY_UNIT);
|
||||||
|
|
||||||
/* Work on a copy until we are sure the seek succeeded. */
|
/* Work on a copy until we are sure the seek succeeded. */
|
||||||
memcpy (&seeksegment, &demux->segment, sizeof (GstSegment));
|
memcpy (&seeksegment, &demux->segment, sizeof (GstSegment));
|
||||||
|
@ -5136,8 +5136,8 @@ gst_mxf_demux_seek_pull (GstMXFDemux * demux, GstEvent * event)
|
||||||
if (rate <= 0.0)
|
if (rate <= 0.0)
|
||||||
goto wrong_rate;
|
goto wrong_rate;
|
||||||
|
|
||||||
flush = ! !(flags & GST_SEEK_FLAG_FLUSH);
|
flush = !!(flags & GST_SEEK_FLAG_FLUSH);
|
||||||
keyframe = ! !(flags & GST_SEEK_FLAG_KEY_UNIT);
|
keyframe = !!(flags & GST_SEEK_FLAG_KEY_UNIT);
|
||||||
|
|
||||||
if (!demux->index_table_segments_collected) {
|
if (!demux->index_table_segments_collected) {
|
||||||
collect_index_table_segments (demux);
|
collect_index_table_segments (demux);
|
||||||
|
|
|
@ -734,7 +734,8 @@ mxf_metadata_preface_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_identifications > 0) {
|
if (self->n_identifications > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -778,7 +779,8 @@ mxf_metadata_preface_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_essence_containers > 0) {
|
if (self->n_essence_containers > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -804,7 +806,8 @@ mxf_metadata_preface_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_dm_schemes > 0) {
|
if (self->n_dm_schemes > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -1418,7 +1421,8 @@ mxf_metadata_content_storage_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_packages > 0) {
|
if (self->n_packages > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -1447,7 +1451,8 @@ mxf_metadata_content_storage_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_essence_container_data > 0) {
|
if (self->n_essence_container_data > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -1910,7 +1915,8 @@ mxf_metadata_generic_package_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_tracks > 0) {
|
if (self->n_tracks > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -2556,19 +2562,20 @@ static const struct
|
||||||
const MXFMetadataTrackType type;
|
const MXFMetadataTrackType type;
|
||||||
} mxf_metadata_track_identifier[] = {
|
} mxf_metadata_track_identifier[] = {
|
||||||
{
|
{
|
||||||
MXF_UL (TRACK_TIMECODE_12M_INACTIVE),
|
MXF_UL (TRACK_TIMECODE_12M_INACTIVE),
|
||||||
MXF_METADATA_TRACK_TIMECODE_12M_INACTIVE}, {
|
MXF_METADATA_TRACK_TIMECODE_12M_INACTIVE}, {
|
||||||
MXF_UL (TRACK_TIMECODE_12M_ACTIVE), MXF_METADATA_TRACK_TIMECODE_12M_ACTIVE}, {
|
MXF_UL (TRACK_TIMECODE_12M_ACTIVE),
|
||||||
MXF_UL (TRACK_TIMECODE_309M), MXF_METADATA_TRACK_TIMECODE_309M}, {
|
MXF_METADATA_TRACK_TIMECODE_12M_ACTIVE}, {
|
||||||
MXF_UL (TRACK_METADATA), MXF_METADATA_TRACK_METADATA}, {
|
MXF_UL (TRACK_TIMECODE_309M), MXF_METADATA_TRACK_TIMECODE_309M}, {
|
||||||
MXF_UL (TRACK_PICTURE_ESSENCE), MXF_METADATA_TRACK_PICTURE_ESSENCE}, {
|
MXF_UL (TRACK_METADATA), MXF_METADATA_TRACK_METADATA}, {
|
||||||
MXF_UL (TRACK_SOUND_ESSENCE), MXF_METADATA_TRACK_SOUND_ESSENCE}, {
|
MXF_UL (TRACK_PICTURE_ESSENCE), MXF_METADATA_TRACK_PICTURE_ESSENCE}, {
|
||||||
MXF_UL (TRACK_DATA_ESSENCE), MXF_METADATA_TRACK_DATA_ESSENCE}, {
|
MXF_UL (TRACK_SOUND_ESSENCE), MXF_METADATA_TRACK_SOUND_ESSENCE}, {
|
||||||
MXF_UL (TRACK_AUXILIARY_DATA), MXF_METADATA_TRACK_AUXILIARY_DATA}, {
|
MXF_UL (TRACK_DATA_ESSENCE), MXF_METADATA_TRACK_DATA_ESSENCE}, {
|
||||||
MXF_UL (TRACK_PARSED_TEXT), MXF_METADATA_TRACK_PARSED_TEXT},
|
MXF_UL (TRACK_AUXILIARY_DATA), MXF_METADATA_TRACK_AUXILIARY_DATA}, {
|
||||||
/* Avid video? */
|
MXF_UL (TRACK_PARSED_TEXT), MXF_METADATA_TRACK_PARSED_TEXT},
|
||||||
|
/* Avid video? */
|
||||||
{
|
{
|
||||||
MXF_UL (TRACK_AVID_PICTURE_ESSENCE), MXF_METADATA_TRACK_PICTURE_ESSENCE}
|
MXF_UL (TRACK_AVID_PICTURE_ESSENCE), MXF_METADATA_TRACK_PICTURE_ESSENCE}
|
||||||
};
|
};
|
||||||
|
|
||||||
MXFMetadataTrackType
|
MXFMetadataTrackType
|
||||||
|
@ -2956,7 +2963,8 @@ mxf_metadata_sequence_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_structural_components > 0) {
|
if (self->n_structural_components > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -3570,7 +3578,8 @@ mxf_metadata_dm_source_clip_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_track_ids > 0) {
|
if (self->n_track_ids > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -3800,7 +3809,8 @@ mxf_metadata_dm_segment_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_track_ids > 0) {
|
if (self->n_track_ids > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -4065,7 +4075,8 @@ mxf_metadata_generic_descriptor_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_locators > 0) {
|
if (self->n_locators > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
@ -6140,7 +6151,8 @@ mxf_metadata_multiple_descriptor_to_structure (MXFMetadataBase * m)
|
||||||
if (self->n_sub_descriptors > 0) {
|
if (self->n_sub_descriptors > 0) {
|
||||||
GValue arr = { 0, }
|
GValue arr = { 0, }
|
||||||
, val = {
|
, val = {
|
||||||
0,};
|
0,
|
||||||
|
};
|
||||||
|
|
||||||
g_value_init (&arr, GST_TYPE_ARRAY);
|
g_value_init (&arr, GST_TYPE_ARRAY);
|
||||||
|
|
||||||
|
|
|
@ -52,30 +52,30 @@ static const struct
|
||||||
const gchar *caps_string;
|
const gchar *caps_string;
|
||||||
} _rgba_mapping_table[] = {
|
} _rgba_mapping_table[] = {
|
||||||
{
|
{
|
||||||
"RGB", 3, {
|
"RGB", 3, {
|
||||||
'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("RGB")}, {
|
'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("RGB")}, {
|
||||||
"BGR", 3, {
|
"BGR", 3, {
|
||||||
'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("BGR")}, {
|
'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("BGR")}, {
|
||||||
"v308", 3, {
|
"v308", 3, {
|
||||||
'Y', 8, 'U', 8, 'V', 8}, GST_VIDEO_CAPS_MAKE ("v308")}, {
|
'Y', 8, 'U', 8, 'V', 8}, GST_VIDEO_CAPS_MAKE ("v308")}, {
|
||||||
"xRGB", 4, {
|
"xRGB", 4, {
|
||||||
'F', 8, 'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("xRGB")}, {
|
'F', 8, 'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("xRGB")}, {
|
||||||
"RGBx", 4, {
|
"RGBx", 4, {
|
||||||
'R', 8, 'G', 8, 'B', 8, 'F', 8}, GST_VIDEO_CAPS_MAKE ("RGBx")}, {
|
'R', 8, 'G', 8, 'B', 8, 'F', 8}, GST_VIDEO_CAPS_MAKE ("RGBx")}, {
|
||||||
"xBGR", 4, {
|
"xBGR", 4, {
|
||||||
'F', 8, 'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("xBGR")}, {
|
'F', 8, 'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("xBGR")}, {
|
||||||
"BGRx", 4, {
|
"BGRx", 4, {
|
||||||
'B', 8, 'G', 8, 'R', 8, 'F', 8}, GST_VIDEO_CAPS_MAKE ("BGRx")}, {
|
'B', 8, 'G', 8, 'R', 8, 'F', 8}, GST_VIDEO_CAPS_MAKE ("BGRx")}, {
|
||||||
"RGBA", 4, {
|
"RGBA", 4, {
|
||||||
'R', 8, 'G', 8, 'B', 8, 'A', 8}, GST_VIDEO_CAPS_MAKE ("RGBA")}, {
|
'R', 8, 'G', 8, 'B', 8, 'A', 8}, GST_VIDEO_CAPS_MAKE ("RGBA")}, {
|
||||||
"ARGB", 4, {
|
"ARGB", 4, {
|
||||||
'A', 8, 'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("RGBA")}, {
|
'A', 8, 'R', 8, 'G', 8, 'B', 8}, GST_VIDEO_CAPS_MAKE ("RGBA")}, {
|
||||||
"BGRA", 4, {
|
"BGRA", 4, {
|
||||||
'B', 8, 'G', 8, 'R', 8, 'A', 8}, GST_VIDEO_CAPS_MAKE ("BGRA")}, {
|
'B', 8, 'G', 8, 'R', 8, 'A', 8}, GST_VIDEO_CAPS_MAKE ("BGRA")}, {
|
||||||
"ABGR", 4, {
|
"ABGR", 4, {
|
||||||
'A', 8, 'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("ABGR")}, {
|
'A', 8, 'B', 8, 'G', 8, 'R', 8}, GST_VIDEO_CAPS_MAKE ("ABGR")}, {
|
||||||
"AYUV", 4, {
|
"AYUV", 4, {
|
||||||
'A', 8, 'Y', 8, 'U', 8, 'V', 8}, GST_VIDEO_CAPS_MAKE ("AYUV")}
|
'A', 8, 'Y', 8, 'U', 8, 'V', 8}, GST_VIDEO_CAPS_MAKE ("AYUV")}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct
|
static const struct
|
||||||
|
@ -88,8 +88,9 @@ static const struct
|
||||||
const gchar *caps_string;
|
const gchar *caps_string;
|
||||||
} _cdci_mapping_table[] = {
|
} _cdci_mapping_table[] = {
|
||||||
{
|
{
|
||||||
"YUY2", 2, 1, 0, TRUE, GST_VIDEO_CAPS_MAKE ("YUY2")}, {
|
"YUY2", 2, 1, 0, TRUE, GST_VIDEO_CAPS_MAKE ("YUY2")}, {
|
||||||
"UYVY", 2, 1, 0, FALSE, GST_VIDEO_CAPS_MAKE ("UYVY")},};
|
"UYVY", 2, 1, 0, FALSE, GST_VIDEO_CAPS_MAKE ("UYVY")},
|
||||||
|
};
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
|
|
@ -115,7 +115,7 @@ vad_get_threshold_as_db (struct _vad_s *p)
|
||||||
}
|
}
|
||||||
|
|
||||||
gint
|
gint
|
||||||
vad_update (struct _vad_s * p, gint16 * data, gint len)
|
vad_update (struct _vad_s *p, gint16 * data, gint len)
|
||||||
{
|
{
|
||||||
guint64 tail;
|
guint64 tail;
|
||||||
gint frame_type;
|
gint frame_type;
|
||||||
|
|
|
@ -194,7 +194,7 @@ GstAmfNode *
|
||||||
gst_amf_node_new_boolean (gboolean value)
|
gst_amf_node_new_boolean (gboolean value)
|
||||||
{
|
{
|
||||||
GstAmfNode *node = node_new (GST_AMF_TYPE_BOOLEAN);
|
GstAmfNode *node = node_new (GST_AMF_TYPE_BOOLEAN);
|
||||||
node->value.v_int = ! !value;
|
node->value.v_int = !!value;
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -398,7 +398,7 @@ void
|
||||||
gst_amf_node_set_boolean (GstAmfNode * node, gboolean value)
|
gst_amf_node_set_boolean (GstAmfNode * node, gboolean value)
|
||||||
{
|
{
|
||||||
g_return_if_fail (node->type == GST_AMF_TYPE_BOOLEAN);
|
g_return_if_fail (node->type == GST_AMF_TYPE_BOOLEAN);
|
||||||
node->value.v_int = ! !value;
|
node->value.v_int = !!value;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
@ -675,7 +675,7 @@ parse_boolean (AmfParser * parser)
|
||||||
}
|
}
|
||||||
|
|
||||||
value = parse_u8 (parser);
|
value = parse_u8 (parser);
|
||||||
return ! !value;
|
return !!value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline GBytes *
|
static inline GBytes *
|
||||||
|
|
|
@ -803,7 +803,7 @@ gst_h264_parse_process_sei (GstH264Parse * h264parse, GstH264NalUnit * nalu)
|
||||||
if (sei.payload.frame_packing.spatial_flipping_flag) {
|
if (sei.payload.frame_packing.spatial_flipping_flag) {
|
||||||
/* One of the views is flopped. */
|
/* One of the views is flopped. */
|
||||||
if (sei.payload.frame_packing.frame0_flipped_flag !=
|
if (sei.payload.frame_packing.frame0_flipped_flag !=
|
||||||
! !(mview_flags &
|
!!(mview_flags &
|
||||||
GST_VIDEO_MULTIVIEW_FLAGS_RIGHT_VIEW_FIRST))
|
GST_VIDEO_MULTIVIEW_FLAGS_RIGHT_VIEW_FIRST))
|
||||||
/* the left view is flopped */
|
/* the left view is flopped */
|
||||||
mview_flags |= GST_VIDEO_MULTIVIEW_FLAGS_LEFT_FLOPPED;
|
mview_flags |= GST_VIDEO_MULTIVIEW_FLAGS_LEFT_FLOPPED;
|
||||||
|
@ -816,7 +816,7 @@ gst_h264_parse_process_sei (GstH264Parse * h264parse, GstH264NalUnit * nalu)
|
||||||
if (sei.payload.frame_packing.spatial_flipping_flag) {
|
if (sei.payload.frame_packing.spatial_flipping_flag) {
|
||||||
/* One of the views is flipped, */
|
/* One of the views is flipped, */
|
||||||
if (sei.payload.frame_packing.frame0_flipped_flag !=
|
if (sei.payload.frame_packing.frame0_flipped_flag !=
|
||||||
! !(mview_flags &
|
!!(mview_flags &
|
||||||
GST_VIDEO_MULTIVIEW_FLAGS_RIGHT_VIEW_FIRST))
|
GST_VIDEO_MULTIVIEW_FLAGS_RIGHT_VIEW_FIRST))
|
||||||
/* the left view is flipped */
|
/* the left view is flipped */
|
||||||
mview_flags |= GST_VIDEO_MULTIVIEW_FLAGS_LEFT_FLIPPED;
|
mview_flags |= GST_VIDEO_MULTIVIEW_FLAGS_LEFT_FLIPPED;
|
||||||
|
|
|
@ -390,17 +390,17 @@ picture_start_code_name (guint8 psc)
|
||||||
const gchar *name;
|
const gchar *name;
|
||||||
} psc_names[] = {
|
} psc_names[] = {
|
||||||
{
|
{
|
||||||
0x00, "Picture Start"}, {
|
0x00, "Picture Start"}, {
|
||||||
0xb0, "Reserved"}, {
|
0xb0, "Reserved"}, {
|
||||||
0xb1, "Reserved"}, {
|
0xb1, "Reserved"}, {
|
||||||
0xb2, "User Data Start"}, {
|
0xb2, "User Data Start"}, {
|
||||||
0xb3, "Sequence Header Start"}, {
|
0xb3, "Sequence Header Start"}, {
|
||||||
0xb4, "Sequence Error"}, {
|
0xb4, "Sequence Error"}, {
|
||||||
0xb5, "Extension Start"}, {
|
0xb5, "Extension Start"}, {
|
||||||
0xb6, "Reserved"}, {
|
0xb6, "Reserved"}, {
|
||||||
0xb7, "Sequence End"}, {
|
0xb7, "Sequence End"}, {
|
||||||
0xb8, "Group Start"}, {
|
0xb8, "Group Start"}, {
|
||||||
0xb9, "Program End"}
|
0xb9, "Program End"}
|
||||||
};
|
};
|
||||||
if (psc < 0xB0 && psc > 0)
|
if (psc < 0xB0 && psc > 0)
|
||||||
return "Slice Start";
|
return "Slice Start";
|
||||||
|
@ -422,11 +422,11 @@ picture_type_name (guint8 pct)
|
||||||
const gchar *name;
|
const gchar *name;
|
||||||
} pct_names[] = {
|
} pct_names[] = {
|
||||||
{
|
{
|
||||||
0, "Forbidden"}, {
|
0, "Forbidden"}, {
|
||||||
1, "I Frame"}, {
|
1, "I Frame"}, {
|
||||||
2, "P Frame"}, {
|
2, "P Frame"}, {
|
||||||
3, "B Frame"}, {
|
3, "B Frame"}, {
|
||||||
4, "DC Intra Coded (Shall Not Be Used!)"}
|
4, "DC Intra Coded (Shall Not Be Used!)"}
|
||||||
};
|
};
|
||||||
|
|
||||||
for (i = 0; i < G_N_ELEMENTS (pct_names); i++)
|
for (i = 0; i < G_N_ELEMENTS (pct_names); i++)
|
||||||
|
|
|
@ -95,9 +95,9 @@ static const struct
|
||||||
VC1HeaderFormat en;
|
VC1HeaderFormat en;
|
||||||
} header_formats[] = {
|
} header_formats[] = {
|
||||||
{
|
{
|
||||||
"none", VC1_HEADER_FORMAT_NONE}, {
|
"none", VC1_HEADER_FORMAT_NONE}, {
|
||||||
"asf", VC1_HEADER_FORMAT_ASF}, {
|
"asf", VC1_HEADER_FORMAT_ASF}, {
|
||||||
"sequence-layer", VC1_HEADER_FORMAT_SEQUENCE_LAYER}
|
"sequence-layer", VC1_HEADER_FORMAT_SEQUENCE_LAYER}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct
|
static const struct
|
||||||
|
@ -106,14 +106,15 @@ static const struct
|
||||||
VC1StreamFormat en;
|
VC1StreamFormat en;
|
||||||
} stream_formats[] = {
|
} stream_formats[] = {
|
||||||
{
|
{
|
||||||
"bdu", VC1_STREAM_FORMAT_BDU}, {
|
"bdu", VC1_STREAM_FORMAT_BDU}, {
|
||||||
"bdu-frame", VC1_STREAM_FORMAT_BDU_FRAME}, {
|
"bdu-frame", VC1_STREAM_FORMAT_BDU_FRAME}, {
|
||||||
"sequence-layer-bdu", VC1_STREAM_FORMAT_SEQUENCE_LAYER_BDU}, {
|
"sequence-layer-bdu", VC1_STREAM_FORMAT_SEQUENCE_LAYER_BDU}, {
|
||||||
"sequence-layer-bdu-frame", VC1_STREAM_FORMAT_SEQUENCE_LAYER_BDU_FRAME}, {
|
"sequence-layer-bdu-frame", VC1_STREAM_FORMAT_SEQUENCE_LAYER_BDU_FRAME}, {
|
||||||
"sequence-layer-raw-frame", VC1_STREAM_FORMAT_SEQUENCE_LAYER_RAW_FRAME}, {
|
"sequence-layer-raw-frame", VC1_STREAM_FORMAT_SEQUENCE_LAYER_RAW_FRAME}, {
|
||||||
"sequence-layer-frame-layer", VC1_STREAM_FORMAT_SEQUENCE_LAYER_FRAME_LAYER}, {
|
"sequence-layer-frame-layer",
|
||||||
"asf", VC1_STREAM_FORMAT_ASF}, {
|
VC1_STREAM_FORMAT_SEQUENCE_LAYER_FRAME_LAYER}, {
|
||||||
"frame-layer", VC1_STREAM_FORMAT_FRAME_LAYER}
|
"asf", VC1_STREAM_FORMAT_ASF}, {
|
||||||
|
"frame-layer", VC1_STREAM_FORMAT_FRAME_LAYER}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const struct
|
static const struct
|
||||||
|
@ -122,8 +123,8 @@ static const struct
|
||||||
GstVC1ParseFormat en;
|
GstVC1ParseFormat en;
|
||||||
} parse_formats[] = {
|
} parse_formats[] = {
|
||||||
{
|
{
|
||||||
"WMV3", GST_VC1_PARSE_FORMAT_WMV3}, {
|
"WMV3", GST_VC1_PARSE_FORMAT_WMV3}, {
|
||||||
"WVC1", GST_VC1_PARSE_FORMAT_WVC1}
|
"WVC1", GST_VC1_PARSE_FORMAT_WVC1}
|
||||||
};
|
};
|
||||||
|
|
||||||
static const gchar *
|
static const gchar *
|
||||||
|
@ -2032,22 +2033,22 @@ static const struct
|
||||||
gint par_n, par_d;
|
gint par_n, par_d;
|
||||||
} aspect_ratios[] = {
|
} aspect_ratios[] = {
|
||||||
{
|
{
|
||||||
0, 0}, {
|
0, 0}, {
|
||||||
1, 1}, {
|
1, 1}, {
|
||||||
12, 11}, {
|
12, 11}, {
|
||||||
10, 11}, {
|
10, 11}, {
|
||||||
16, 11}, {
|
16, 11}, {
|
||||||
40, 33}, {
|
40, 33}, {
|
||||||
24, 11}, {
|
24, 11}, {
|
||||||
20, 11}, {
|
20, 11}, {
|
||||||
32, 11}, {
|
32, 11}, {
|
||||||
80, 33}, {
|
80, 33}, {
|
||||||
18, 11}, {
|
18, 11}, {
|
||||||
15, 11}, {
|
15, 11}, {
|
||||||
64, 33}, {
|
64, 33}, {
|
||||||
160, 99}, {
|
160, 99}, {
|
||||||
0, 0}, {
|
0, 0}, {
|
||||||
0, 0}
|
0, 0}
|
||||||
};
|
};
|
||||||
|
|
||||||
/* SMPTE 421M Table 8 */
|
/* SMPTE 421M Table 8 */
|
||||||
|
|
|
@ -43,7 +43,8 @@ static struct
|
||||||
jint YUY2;
|
jint YUY2;
|
||||||
jint YV12;
|
jint YV12;
|
||||||
} android_graphics_imageformat = {
|
} android_graphics_imageformat = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
gint ImageFormat_JPEG;
|
gint ImageFormat_JPEG;
|
||||||
gint ImageFormat_NV16;
|
gint ImageFormat_NV16;
|
||||||
|
|
|
@ -56,7 +56,8 @@ static struct
|
||||||
jmethodID stopSmoothZoom;
|
jmethodID stopSmoothZoom;
|
||||||
jmethodID unlock;
|
jmethodID unlock;
|
||||||
} android_hardware_camera = {
|
} android_hardware_camera = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
|
@ -67,7 +68,8 @@ static struct
|
||||||
jint CAMERA_FACING_BACK;
|
jint CAMERA_FACING_BACK;
|
||||||
jint CAMERA_FACING_FRONT;
|
jint CAMERA_FACING_FRONT;
|
||||||
} android_hardware_camera_camerainfo = {
|
} android_hardware_camera_camerainfo = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
gint CameraInfo_CAMERA_FACING_BACK;
|
gint CameraInfo_CAMERA_FACING_BACK;
|
||||||
gint CameraInfo_CAMERA_FACING_FRONT;
|
gint CameraInfo_CAMERA_FACING_FRONT;
|
||||||
|
@ -78,7 +80,8 @@ static struct
|
||||||
jfieldID width;
|
jfieldID width;
|
||||||
jfieldID height;
|
jfieldID height;
|
||||||
} android_hardware_camera_size = {
|
} android_hardware_camera_size = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
|
@ -186,7 +189,8 @@ static struct
|
||||||
jstring FOCUS_MODE_CONTINUOUS_VIDEO;
|
jstring FOCUS_MODE_CONTINUOUS_VIDEO;
|
||||||
jstring FOCUS_MODE_CONTINUOUS_PICTURE;
|
jstring FOCUS_MODE_CONTINUOUS_PICTURE;
|
||||||
} android_hardware_camera_parameters = {
|
} android_hardware_camera_parameters = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
const gchar *Parameters_WHITE_BALANCE_AUTO;
|
const gchar *Parameters_WHITE_BALANCE_AUTO;
|
||||||
const gchar *Parameters_WHITE_BALANCE_INCANDESCENT;
|
const gchar *Parameters_WHITE_BALANCE_INCANDESCENT;
|
||||||
|
@ -250,7 +254,8 @@ static struct
|
||||||
jclass klass;
|
jclass klass;
|
||||||
jmethodID iterator;
|
jmethodID iterator;
|
||||||
} java_util_list = {
|
} java_util_list = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
|
@ -258,28 +263,32 @@ static struct
|
||||||
jmethodID hasNext;
|
jmethodID hasNext;
|
||||||
jmethodID next;
|
jmethodID next;
|
||||||
} java_util_iterator = {
|
} java_util_iterator = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
jclass klass;
|
jclass klass;
|
||||||
jmethodID intValue;
|
jmethodID intValue;
|
||||||
} java_lang_integer = {
|
} java_lang_integer = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
jclass klass;
|
jclass klass;
|
||||||
jmethodID equals;
|
jmethodID equals;
|
||||||
} java_lang_string = {
|
} java_lang_string = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
jclass klass;
|
jclass klass;
|
||||||
jmethodID constructor;
|
jmethodID constructor;
|
||||||
} org_freedesktop_gstreamer_androidmedia_gstahccallback = {
|
} org_freedesktop_gstreamer_androidmedia_gstahccallback = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static void
|
static void
|
||||||
gst_ah_camera_on_preview_frame (JNIEnv * env, jclass klass, jbyteArray data,
|
gst_ah_camera_on_preview_frame (JNIEnv * env, jclass klass, jbyteArray data,
|
||||||
|
|
|
@ -62,7 +62,8 @@ static struct
|
||||||
jstring SENSOR_SERVICE;
|
jstring SENSOR_SERVICE;
|
||||||
jmethodID getSystemService;
|
jmethodID getSystemService;
|
||||||
} android_content_context = {
|
} android_content_context = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
|
@ -70,7 +71,8 @@ static struct
|
||||||
jfieldID accuracy;
|
jfieldID accuracy;
|
||||||
jfieldID values;
|
jfieldID values;
|
||||||
} android_hardware_sensor_event = {
|
} android_hardware_sensor_event = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
|
@ -79,14 +81,16 @@ static struct
|
||||||
jmethodID registerListener;
|
jmethodID registerListener;
|
||||||
jmethodID unregisterListener;
|
jmethodID unregisterListener;
|
||||||
} android_hardware_sensor_manager = {
|
} android_hardware_sensor_manager = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
static struct
|
static struct
|
||||||
{
|
{
|
||||||
jclass klass;
|
jclass klass;
|
||||||
jmethodID constructor;
|
jmethodID constructor;
|
||||||
} org_freedesktop_gstreamer_androidmedia_gstahscallback = {
|
} org_freedesktop_gstreamer_androidmedia_gstahscallback = {
|
||||||
0};
|
0
|
||||||
|
};
|
||||||
|
|
||||||
GHashTable *sensor_sizes = NULL;
|
GHashTable *sensor_sizes = NULL;
|
||||||
static void
|
static void
|
||||||
|
@ -99,50 +103,52 @@ gst_ah_sensor_sensor_sizes_init (void)
|
||||||
gsize size;
|
gsize size;
|
||||||
} types[] = {
|
} types[] = {
|
||||||
{
|
{
|
||||||
AHS_SENSOR_TYPE_ACCELEROMETER, sizeof (GstAHSAccelerometerValues)}
|
AHS_SENSOR_TYPE_ACCELEROMETER, sizeof (GstAHSAccelerometerValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_AMBIENT_TEMPERATURE,
|
AHS_SENSOR_TYPE_AMBIENT_TEMPERATURE,
|
||||||
sizeof (GstAHSAmbientTemperatureValues)}
|
sizeof (GstAHSAmbientTemperatureValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_GAME_ROTATION_VECTOR,
|
AHS_SENSOR_TYPE_GAME_ROTATION_VECTOR,
|
||||||
sizeof (GstAHSGameRotationVectorValues)}
|
sizeof (GstAHSGameRotationVectorValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR,
|
AHS_SENSOR_TYPE_GEOMAGNETIC_ROTATION_VECTOR,
|
||||||
sizeof (GstAHSGeomagneticRotationVectorValues)}
|
sizeof (GstAHSGeomagneticRotationVectorValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_GRAVITY, sizeof (GstAHSGravityValues)}
|
AHS_SENSOR_TYPE_GRAVITY, sizeof (GstAHSGravityValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_GYROSCOPE, sizeof (GstAHSGyroscopeValues)}
|
AHS_SENSOR_TYPE_GYROSCOPE, sizeof (GstAHSGyroscopeValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_GYROSCOPE_UNCALIBRATED,
|
AHS_SENSOR_TYPE_GYROSCOPE_UNCALIBRATED,
|
||||||
sizeof (GstAHSGyroscopeUncalibratedValues)}
|
sizeof (GstAHSGyroscopeUncalibratedValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_HEART_RATE, sizeof (GstAHSHeartRateValues)}
|
AHS_SENSOR_TYPE_HEART_RATE, sizeof (GstAHSHeartRateValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_LIGHT, sizeof (GstAHSLightValues)}
|
AHS_SENSOR_TYPE_LIGHT, sizeof (GstAHSLightValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_LINEAR_ACCELERATION,
|
AHS_SENSOR_TYPE_LINEAR_ACCELERATION,
|
||||||
sizeof (GstAHSLinearAccelerationValues)}
|
sizeof (GstAHSLinearAccelerationValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_MAGNETIC_FIELD, sizeof (GstAHSMagneticFieldValues)}
|
AHS_SENSOR_TYPE_MAGNETIC_FIELD, sizeof (GstAHSMagneticFieldValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED,
|
AHS_SENSOR_TYPE_MAGNETIC_FIELD_UNCALIBRATED,
|
||||||
sizeof (GstAHSMagneticFieldUncalibratedValues)}
|
sizeof (GstAHSMagneticFieldUncalibratedValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_ORIENTATION, sizeof (GstAHSOrientationValues)}
|
AHS_SENSOR_TYPE_ORIENTATION, sizeof (GstAHSOrientationValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_PRESSURE, sizeof (GstAHSPressureValues)}
|
AHS_SENSOR_TYPE_PRESSURE, sizeof (GstAHSPressureValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_PROXIMITY, sizeof (GstAHSProximityValues)}
|
AHS_SENSOR_TYPE_PROXIMITY, sizeof (GstAHSProximityValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_RELATIVE_HUMIDITY, sizeof (GstAHSRelativeHumidityValues)}
|
AHS_SENSOR_TYPE_RELATIVE_HUMIDITY,
|
||||||
|
sizeof (GstAHSRelativeHumidityValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_ROTATION_VECTOR, sizeof (GstAHSRotationVectorValues)}
|
AHS_SENSOR_TYPE_ROTATION_VECTOR, sizeof (GstAHSRotationVectorValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_STEP_COUNTER, sizeof (GstAHSStepCounterValues)}
|
AHS_SENSOR_TYPE_STEP_COUNTER, sizeof (GstAHSStepCounterValues)}
|
||||||
, {
|
, {
|
||||||
AHS_SENSOR_TYPE_STEP_DETECTOR, sizeof (GstAHSStepDetectorValues)}
|
AHS_SENSOR_TYPE_STEP_DETECTOR, sizeof (GstAHSStepDetectorValues)}
|
||||||
,};
|
,
|
||||||
|
};
|
||||||
|
|
||||||
g_assert_null (sensor_sizes);
|
g_assert_null (sensor_sizes);
|
||||||
|
|
||||||
|
|
|
@ -346,7 +346,7 @@ scan_codecs (GstPlugin * plugin)
|
||||||
GstAmcCodecInfo *tmp = l->data;
|
GstAmcCodecInfo *tmp = l->data;
|
||||||
|
|
||||||
if (strcmp (tmp->name, gst_codec_info->name) == 0
|
if (strcmp (tmp->name, gst_codec_info->name) == 0
|
||||||
&& ! !tmp->is_encoder == ! !gst_codec_info->is_encoder) {
|
&& !!tmp->is_encoder == !!gst_codec_info->is_encoder) {
|
||||||
gint m = tmp->n_supported_types, n;
|
gint m = tmp->n_supported_types, n;
|
||||||
|
|
||||||
GST_LOG ("Successfully scanned codec '%s', appending to existing",
|
GST_LOG ("Successfully scanned codec '%s', appending to existing",
|
||||||
|
@ -509,20 +509,21 @@ static const struct
|
||||||
GstVideoFormat video_format;
|
GstVideoFormat video_format;
|
||||||
} color_format_mapping_table[] = {
|
} color_format_mapping_table[] = {
|
||||||
{
|
{
|
||||||
COLOR_FormatYUV420Planar, GST_VIDEO_FORMAT_I420}, {
|
COLOR_FormatYUV420Planar, GST_VIDEO_FORMAT_I420}, {
|
||||||
COLOR_FormatYUV420Flexible, GST_VIDEO_FORMAT_I420}, {
|
COLOR_FormatYUV420Flexible, GST_VIDEO_FORMAT_I420}, {
|
||||||
COLOR_FormatYUV420SemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_FormatYUV420SemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_TI_FormatYUV420PackedSemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_TI_FormatYUV420PackedSemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_TI_FormatYUV420PackedSemiPlanarInterlaced, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_TI_FormatYUV420PackedSemiPlanarInterlaced, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_INTEL_FormatYUV420PackedSemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_INTEL_FormatYUV420PackedSemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_INTEL_FormatYUV420PackedSemiPlanar_Tiled, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_INTEL_FormatYUV420PackedSemiPlanar_Tiled, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_QCOM_FormatYUV420SemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_QCOM_FormatYUV420SemiPlanar, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_QCOM_FormatYUV420PackedSemiPlanar64x32Tile2m8ka, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_QCOM_FormatYUV420PackedSemiPlanar64x32Tile2m8ka,
|
||||||
COLOR_QCOM_FormatYVU420SemiPlanar32m, GST_VIDEO_FORMAT_NV12}, {
|
GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_QCOM_FormatYVU420SemiPlanar32mMultiView, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_QCOM_FormatYVU420SemiPlanar32m, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_OMX_SEC_FormatNV12Tiled, GST_VIDEO_FORMAT_NV12}, {
|
COLOR_QCOM_FormatYVU420SemiPlanar32mMultiView, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_FormatYCbYCr, GST_VIDEO_FORMAT_YUY2}, {
|
COLOR_OMX_SEC_FormatNV12Tiled, GST_VIDEO_FORMAT_NV12}, {
|
||||||
COLOR_FormatYV12, GST_VIDEO_FORMAT_YV12}
|
COLOR_FormatYCbYCr, GST_VIDEO_FORMAT_YUY2}, {
|
||||||
|
COLOR_FormatYV12, GST_VIDEO_FORMAT_YV12}
|
||||||
};
|
};
|
||||||
|
|
||||||
static gboolean
|
static gboolean
|
||||||
|
@ -1091,8 +1092,8 @@ static const struct
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
} hevc_profile_mapping_table[] = {
|
} hevc_profile_mapping_table[] = {
|
||||||
{
|
{
|
||||||
HEVCProfileMain, "main"}, {
|
HEVCProfileMain, "main"}, {
|
||||||
HEVCProfileMain10, "main-10"}
|
HEVCProfileMain10, "main-10"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1131,32 +1132,32 @@ static const struct
|
||||||
const gchar *level_str;
|
const gchar *level_str;
|
||||||
} hevc_tier_level_mapping_table[] = {
|
} hevc_tier_level_mapping_table[] = {
|
||||||
{
|
{
|
||||||
HEVCMainTierLevel1, "main", "1"}, {
|
HEVCMainTierLevel1, "main", "1"}, {
|
||||||
HEVCMainTierLevel2, "main", "2"}, {
|
HEVCMainTierLevel2, "main", "2"}, {
|
||||||
HEVCMainTierLevel21, "main", "2.1"}, {
|
HEVCMainTierLevel21, "main", "2.1"}, {
|
||||||
HEVCMainTierLevel3, "main", "3"}, {
|
HEVCMainTierLevel3, "main", "3"}, {
|
||||||
HEVCMainTierLevel31, "main", "3.1"}, {
|
HEVCMainTierLevel31, "main", "3.1"}, {
|
||||||
HEVCMainTierLevel4, "main", "4"}, {
|
HEVCMainTierLevel4, "main", "4"}, {
|
||||||
HEVCMainTierLevel41, "main", "4.1"}, {
|
HEVCMainTierLevel41, "main", "4.1"}, {
|
||||||
HEVCMainTierLevel5, "main", "5"}, {
|
HEVCMainTierLevel5, "main", "5"}, {
|
||||||
HEVCMainTierLevel51, "main", "5.1"}, {
|
HEVCMainTierLevel51, "main", "5.1"}, {
|
||||||
HEVCMainTierLevel52, "main", "5.2"}, {
|
HEVCMainTierLevel52, "main", "5.2"}, {
|
||||||
HEVCMainTierLevel6, "main", "6"}, {
|
HEVCMainTierLevel6, "main", "6"}, {
|
||||||
HEVCMainTierLevel61, "main", "6.1"}, {
|
HEVCMainTierLevel61, "main", "6.1"}, {
|
||||||
HEVCMainTierLevel62, "main", "6.2"}, {
|
HEVCMainTierLevel62, "main", "6.2"}, {
|
||||||
HEVCHighTierLevel1, "high", "1"}, {
|
HEVCHighTierLevel1, "high", "1"}, {
|
||||||
HEVCHighTierLevel2, "high", "2"}, {
|
HEVCHighTierLevel2, "high", "2"}, {
|
||||||
HEVCHighTierLevel21, "high", "2.1"}, {
|
HEVCHighTierLevel21, "high", "2.1"}, {
|
||||||
HEVCHighTierLevel3, "high", "3"}, {
|
HEVCHighTierLevel3, "high", "3"}, {
|
||||||
HEVCHighTierLevel31, "high", "3.1"}, {
|
HEVCHighTierLevel31, "high", "3.1"}, {
|
||||||
HEVCHighTierLevel4, "high", "4"}, {
|
HEVCHighTierLevel4, "high", "4"}, {
|
||||||
HEVCHighTierLevel41, "high", "4.1"}, {
|
HEVCHighTierLevel41, "high", "4.1"}, {
|
||||||
HEVCHighTierLevel5, "high", "5"}, {
|
HEVCHighTierLevel5, "high", "5"}, {
|
||||||
HEVCHighTierLevel51, "high", "5.1"}, {
|
HEVCHighTierLevel51, "high", "5.1"}, {
|
||||||
HEVCHighTierLevel52, "high", "5.2"}, {
|
HEVCHighTierLevel52, "high", "5.2"}, {
|
||||||
HEVCHighTierLevel6, "high", "6"}, {
|
HEVCHighTierLevel6, "high", "6"}, {
|
||||||
HEVCHighTierLevel61, "high", "6.1"}, {
|
HEVCHighTierLevel61, "high", "6.1"}, {
|
||||||
HEVCHighTierLevel62, "high", "6.2"}
|
HEVCHighTierLevel62, "high", "6.2"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1196,13 +1197,13 @@ static const struct
|
||||||
const gchar *alt_str;
|
const gchar *alt_str;
|
||||||
} avc_profile_mapping_table[] = {
|
} avc_profile_mapping_table[] = {
|
||||||
{
|
{
|
||||||
AVCProfileBaseline, "baseline", "constrained-baseline"}, {
|
AVCProfileBaseline, "baseline", "constrained-baseline"}, {
|
||||||
AVCProfileMain, "main", NULL}, {
|
AVCProfileMain, "main", NULL}, {
|
||||||
AVCProfileExtended, "extended", NULL}, {
|
AVCProfileExtended, "extended", NULL}, {
|
||||||
AVCProfileHigh, "high"}, {
|
AVCProfileHigh, "high"}, {
|
||||||
AVCProfileHigh10, "high-10", "high-10-intra"}, {
|
AVCProfileHigh10, "high-10", "high-10-intra"}, {
|
||||||
AVCProfileHigh422, "high-4:2:2", "high-4:2:2-intra"}, {
|
AVCProfileHigh422, "high-4:2:2", "high-4:2:2-intra"}, {
|
||||||
AVCProfileHigh444, "high-4:4:4", "high-4:4:4-intra"}
|
AVCProfileHigh444, "high-4:4:4", "high-4:4:4-intra"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1244,22 +1245,22 @@ static const struct
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
} avc_level_mapping_table[] = {
|
} avc_level_mapping_table[] = {
|
||||||
{
|
{
|
||||||
AVCLevel1, "1"}, {
|
AVCLevel1, "1"}, {
|
||||||
AVCLevel1b, "1b"}, {
|
AVCLevel1b, "1b"}, {
|
||||||
AVCLevel11, "1.1"}, {
|
AVCLevel11, "1.1"}, {
|
||||||
AVCLevel12, "1.2"}, {
|
AVCLevel12, "1.2"}, {
|
||||||
AVCLevel13, "1.3"}, {
|
AVCLevel13, "1.3"}, {
|
||||||
AVCLevel2, "2"}, {
|
AVCLevel2, "2"}, {
|
||||||
AVCLevel21, "2.1"}, {
|
AVCLevel21, "2.1"}, {
|
||||||
AVCLevel22, "2.2"}, {
|
AVCLevel22, "2.2"}, {
|
||||||
AVCLevel3, "3"}, {
|
AVCLevel3, "3"}, {
|
||||||
AVCLevel31, "3.1"}, {
|
AVCLevel31, "3.1"}, {
|
||||||
AVCLevel32, "3.2"}, {
|
AVCLevel32, "3.2"}, {
|
||||||
AVCLevel4, "4"}, {
|
AVCLevel4, "4"}, {
|
||||||
AVCLevel41, "4.1"}, {
|
AVCLevel41, "4.1"}, {
|
||||||
AVCLevel42, "4.2"}, {
|
AVCLevel42, "4.2"}, {
|
||||||
AVCLevel5, "5"}, {
|
AVCLevel5, "5"}, {
|
||||||
AVCLevel51, "5.1"}
|
AVCLevel51, "5.1"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1296,15 +1297,15 @@ static const struct
|
||||||
gint gst_id;
|
gint gst_id;
|
||||||
} h263_profile_mapping_table[] = {
|
} h263_profile_mapping_table[] = {
|
||||||
{
|
{
|
||||||
H263ProfileBaseline, 0}, {
|
H263ProfileBaseline, 0}, {
|
||||||
H263ProfileH320Coding, 1}, {
|
H263ProfileH320Coding, 1}, {
|
||||||
H263ProfileBackwardCompatible, 2}, {
|
H263ProfileBackwardCompatible, 2}, {
|
||||||
H263ProfileISWV2, 3}, {
|
H263ProfileISWV2, 3}, {
|
||||||
H263ProfileISWV3, 4}, {
|
H263ProfileISWV3, 4}, {
|
||||||
H263ProfileHighCompression, 5}, {
|
H263ProfileHighCompression, 5}, {
|
||||||
H263ProfileInternet, 6}, {
|
H263ProfileInternet, 6}, {
|
||||||
H263ProfileInterlace, 7}, {
|
H263ProfileInterlace, 7}, {
|
||||||
H263ProfileHighLatency, 8}
|
H263ProfileHighLatency, 8}
|
||||||
};
|
};
|
||||||
|
|
||||||
gint
|
gint
|
||||||
|
@ -1339,13 +1340,13 @@ static const struct
|
||||||
gint gst_id;
|
gint gst_id;
|
||||||
} h263_level_mapping_table[] = {
|
} h263_level_mapping_table[] = {
|
||||||
{
|
{
|
||||||
H263Level10, 10}, {
|
H263Level10, 10}, {
|
||||||
H263Level20, 20}, {
|
H263Level20, 20}, {
|
||||||
H263Level30, 30}, {
|
H263Level30, 30}, {
|
||||||
H263Level40, 40}, {
|
H263Level40, 40}, {
|
||||||
H263Level50, 50}, {
|
H263Level50, 50}, {
|
||||||
H263Level60, 60}, {
|
H263Level60, 60}, {
|
||||||
H263Level70, 70}
|
H263Level70, 70}
|
||||||
};
|
};
|
||||||
|
|
||||||
gint
|
gint
|
||||||
|
@ -1380,22 +1381,22 @@ static const struct
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
} mpeg4_profile_mapping_table[] = {
|
} mpeg4_profile_mapping_table[] = {
|
||||||
{
|
{
|
||||||
MPEG4ProfileSimple, "simple"}, {
|
MPEG4ProfileSimple, "simple"}, {
|
||||||
MPEG4ProfileSimpleScalable, "simple-scalable"}, {
|
MPEG4ProfileSimpleScalable, "simple-scalable"}, {
|
||||||
MPEG4ProfileCore, "core"}, {
|
MPEG4ProfileCore, "core"}, {
|
||||||
MPEG4ProfileMain, "main"}, {
|
MPEG4ProfileMain, "main"}, {
|
||||||
MPEG4ProfileNbit, "n-bit"}, {
|
MPEG4ProfileNbit, "n-bit"}, {
|
||||||
MPEG4ProfileScalableTexture, "scalable"}, {
|
MPEG4ProfileScalableTexture, "scalable"}, {
|
||||||
MPEG4ProfileSimpleFace, "simple-face"}, {
|
MPEG4ProfileSimpleFace, "simple-face"}, {
|
||||||
MPEG4ProfileSimpleFBA, "simple-fba"}, {
|
MPEG4ProfileSimpleFBA, "simple-fba"}, {
|
||||||
MPEG4ProfileBasicAnimated, "basic-animated-texture"}, {
|
MPEG4ProfileBasicAnimated, "basic-animated-texture"}, {
|
||||||
MPEG4ProfileHybrid, "hybrid"}, {
|
MPEG4ProfileHybrid, "hybrid"}, {
|
||||||
MPEG4ProfileAdvancedRealTime, "advanced-real-time"}, {
|
MPEG4ProfileAdvancedRealTime, "advanced-real-time"}, {
|
||||||
MPEG4ProfileCoreScalable, "core-scalable"}, {
|
MPEG4ProfileCoreScalable, "core-scalable"}, {
|
||||||
MPEG4ProfileAdvancedCoding, "advanced-coding-efficiency"}, {
|
MPEG4ProfileAdvancedCoding, "advanced-coding-efficiency"}, {
|
||||||
MPEG4ProfileAdvancedCore, "advanced-core"}, {
|
MPEG4ProfileAdvancedCore, "advanced-core"}, {
|
||||||
MPEG4ProfileAdvancedScalable, "advanced-scalable-texture"}, {
|
MPEG4ProfileAdvancedScalable, "advanced-scalable-texture"}, {
|
||||||
MPEG4ProfileAdvancedSimple, "advanced-simple"}
|
MPEG4ProfileAdvancedSimple, "advanced-simple"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1432,14 +1433,15 @@ static const struct
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
} mpeg4_level_mapping_table[] = {
|
} mpeg4_level_mapping_table[] = {
|
||||||
{
|
{
|
||||||
MPEG4Level0, "0"}, {
|
MPEG4Level0, "0"}, {
|
||||||
MPEG4Level0b, "0b"}, {
|
MPEG4Level0b, "0b"}, {
|
||||||
MPEG4Level1, "1"}, {
|
MPEG4Level1, "1"}, {
|
||||||
MPEG4Level2, "2"}, {
|
MPEG4Level2, "2"}, {
|
||||||
MPEG4Level3, "3"}, {
|
MPEG4Level3, "3"}, {
|
||||||
MPEG4Level4, "4"}, {
|
MPEG4Level4, "4"}, {
|
||||||
MPEG4Level4a, "4a"}, {
|
MPEG4Level4a, "4a"}, {
|
||||||
MPEG4Level5, "5"},};
|
MPEG4Level5, "5"},
|
||||||
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
gst_amc_mpeg4_level_to_string (gint level)
|
gst_amc_mpeg4_level_to_string (gint level)
|
||||||
|
@ -1475,10 +1477,10 @@ static const struct
|
||||||
const gchar *str;
|
const gchar *str;
|
||||||
} aac_profile_mapping_table[] = {
|
} aac_profile_mapping_table[] = {
|
||||||
{
|
{
|
||||||
AACObjectMain, "main"}, {
|
AACObjectMain, "main"}, {
|
||||||
AACObjectLC, "lc"}, {
|
AACObjectLC, "lc"}, {
|
||||||
AACObjectSSR, "ssr"}, {
|
AACObjectSSR, "ssr"}, {
|
||||||
AACObjectLTP, "ltp"}
|
AACObjectLTP, "ltp"}
|
||||||
};
|
};
|
||||||
|
|
||||||
const gchar *
|
const gchar *
|
||||||
|
@ -1515,26 +1517,26 @@ static const struct
|
||||||
GstAudioChannelPosition pos;
|
GstAudioChannelPosition pos;
|
||||||
} channel_mapping_table[] = {
|
} channel_mapping_table[] = {
|
||||||
{
|
{
|
||||||
CHANNEL_OUT_FRONT_LEFT, GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT}, {
|
CHANNEL_OUT_FRONT_LEFT, GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT}, {
|
||||||
CHANNEL_OUT_FRONT_RIGHT, GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT}, {
|
CHANNEL_OUT_FRONT_RIGHT, GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT}, {
|
||||||
CHANNEL_OUT_FRONT_CENTER, GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER}, {
|
CHANNEL_OUT_FRONT_CENTER, GST_AUDIO_CHANNEL_POSITION_FRONT_CENTER}, {
|
||||||
CHANNEL_OUT_LOW_FREQUENCY, GST_AUDIO_CHANNEL_POSITION_LFE1}, {
|
CHANNEL_OUT_LOW_FREQUENCY, GST_AUDIO_CHANNEL_POSITION_LFE1}, {
|
||||||
CHANNEL_OUT_BACK_LEFT, GST_AUDIO_CHANNEL_POSITION_REAR_LEFT}, {
|
CHANNEL_OUT_BACK_LEFT, GST_AUDIO_CHANNEL_POSITION_REAR_LEFT}, {
|
||||||
CHANNEL_OUT_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}, {
|
CHANNEL_OUT_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_REAR_RIGHT}, {
|
||||||
CHANNEL_OUT_FRONT_LEFT_OF_CENTER,
|
CHANNEL_OUT_FRONT_LEFT_OF_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER}, {
|
GST_AUDIO_CHANNEL_POSITION_FRONT_LEFT_OF_CENTER}, {
|
||||||
CHANNEL_OUT_FRONT_RIGHT_OF_CENTER,
|
CHANNEL_OUT_FRONT_RIGHT_OF_CENTER,
|
||||||
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER}, {
|
GST_AUDIO_CHANNEL_POSITION_FRONT_RIGHT_OF_CENTER}, {
|
||||||
CHANNEL_OUT_BACK_CENTER, GST_AUDIO_CHANNEL_POSITION_REAR_CENTER}, {
|
CHANNEL_OUT_BACK_CENTER, GST_AUDIO_CHANNEL_POSITION_REAR_CENTER}, {
|
||||||
CHANNEL_OUT_SIDE_LEFT, GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT}, {
|
CHANNEL_OUT_SIDE_LEFT, GST_AUDIO_CHANNEL_POSITION_SIDE_LEFT}, {
|
||||||
CHANNEL_OUT_SIDE_RIGHT, GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}, {
|
CHANNEL_OUT_SIDE_RIGHT, GST_AUDIO_CHANNEL_POSITION_SIDE_RIGHT}, {
|
||||||
CHANNEL_OUT_TOP_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_FRONT_LEFT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_FRONT_LEFT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_FRONT_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_FRONT_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_FRONT_RIGHT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_FRONT_RIGHT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_BACK_LEFT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_BACK_LEFT, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_BACK_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
CHANNEL_OUT_TOP_BACK_CENTER, GST_AUDIO_CHANNEL_POSITION_INVALID}, {
|
||||||
CHANNEL_OUT_TOP_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_INVALID}
|
CHANNEL_OUT_TOP_BACK_RIGHT, GST_AUDIO_CHANNEL_POSITION_INVALID}
|
||||||
};
|
};
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
|
|
|
@ -491,7 +491,7 @@ retry:
|
||||||
" flags 0x%08x", idx, buffer_info.offset, buffer_info.size,
|
" flags 0x%08x", idx, buffer_info.offset, buffer_info.size,
|
||||||
buffer_info.presentation_time_us, buffer_info.flags);
|
buffer_info.presentation_time_us, buffer_info.flags);
|
||||||
|
|
||||||
is_eos = ! !(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
is_eos = !!(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
||||||
|
|
||||||
buf = gst_amc_codec_get_output_buffer (self->codec, idx, &err);
|
buf = gst_amc_codec_get_output_buffer (self->codec, idx, &err);
|
||||||
if (err) {
|
if (err) {
|
||||||
|
|
|
@ -1383,7 +1383,7 @@ retry:
|
||||||
_find_nearest_frame (self,
|
_find_nearest_frame (self,
|
||||||
gst_util_uint64_scale (buffer_info.presentation_time_us, GST_USECOND, 1));
|
gst_util_uint64_scale (buffer_info.presentation_time_us, GST_USECOND, 1));
|
||||||
|
|
||||||
is_eos = ! !(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
is_eos = !!(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
||||||
|
|
||||||
if (frame
|
if (frame
|
||||||
&& (deadline =
|
&& (deadline =
|
||||||
|
|
|
@ -157,13 +157,15 @@ create_amc_format (GstAmcVideoEnc * encoder, GstVideoCodecState * input_state,
|
||||||
const gchar *key;
|
const gchar *key;
|
||||||
gint id;
|
gint id;
|
||||||
} amc_profile = {
|
} amc_profile = {
|
||||||
NULL, -1};
|
NULL, -1
|
||||||
|
};
|
||||||
struct
|
struct
|
||||||
{
|
{
|
||||||
const gchar *key;
|
const gchar *key;
|
||||||
gint id;
|
gint id;
|
||||||
} amc_level = {
|
} amc_level = {
|
||||||
NULL, -1};
|
NULL, -1
|
||||||
|
};
|
||||||
gint color_format;
|
gint color_format;
|
||||||
gint stride, slice_height;
|
gint stride, slice_height;
|
||||||
GstAmcFormat *format = NULL;
|
GstAmcFormat *format = NULL;
|
||||||
|
@ -1158,7 +1160,7 @@ process_buffer:
|
||||||
_find_nearest_frame (self,
|
_find_nearest_frame (self,
|
||||||
gst_util_uint64_scale (buffer_info.presentation_time_us, GST_USECOND, 1));
|
gst_util_uint64_scale (buffer_info.presentation_time_us, GST_USECOND, 1));
|
||||||
|
|
||||||
is_eos = ! !(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
is_eos = !!(buffer_info.flags & BUFFER_FLAG_END_OF_STREAM);
|
||||||
|
|
||||||
flow_ret =
|
flow_ret =
|
||||||
gst_amc_video_enc_handle_output_frame (self, buf, &buffer_info, frame);
|
gst_amc_video_enc_handle_output_frame (self, buf, &buffer_info, frame);
|
||||||
|
|
|
@ -108,7 +108,7 @@ const CFStringRef kVTCompressionPropertyKey_Quality = CFSTR ("Quality");
|
||||||
#ifdef HAVE_VIDEOTOOLBOX_10_9_6
|
#ifdef HAVE_VIDEOTOOLBOX_10_9_6
|
||||||
extern OSStatus
|
extern OSStatus
|
||||||
VTCompressionSessionPrepareToEncodeFrames (VTCompressionSessionRef session)
|
VTCompressionSessionPrepareToEncodeFrames (VTCompressionSessionRef session)
|
||||||
__attribute__ ((weak_import));
|
__attribute__((weak_import));
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* This property key is currently completely undocumented. The only way you can
|
/* This property key is currently completely undocumented. The only way you can
|
||||||
|
|
|
@ -226,18 +226,18 @@ static const struct
|
||||||
D3DFORMAT d3d_format;
|
D3DFORMAT d3d_format;
|
||||||
} gst_d3d_format_map[] = {
|
} gst_d3d_format_map[] = {
|
||||||
{
|
{
|
||||||
GST_VIDEO_FORMAT_BGRx, D3DFMT_X8R8G8B8}, {
|
GST_VIDEO_FORMAT_BGRx, D3DFMT_X8R8G8B8}, {
|
||||||
GST_VIDEO_FORMAT_RGBx, D3DFMT_X8B8G8R8}, {
|
GST_VIDEO_FORMAT_RGBx, D3DFMT_X8B8G8R8}, {
|
||||||
GST_VIDEO_FORMAT_BGRA, D3DFMT_A8R8G8B8}, {
|
GST_VIDEO_FORMAT_BGRA, D3DFMT_A8R8G8B8}, {
|
||||||
GST_VIDEO_FORMAT_RGBA, D3DFMT_A8B8G8R8}, {
|
GST_VIDEO_FORMAT_RGBA, D3DFMT_A8B8G8R8}, {
|
||||||
GST_VIDEO_FORMAT_BGR, D3DFMT_R8G8B8}, {
|
GST_VIDEO_FORMAT_BGR, D3DFMT_R8G8B8}, {
|
||||||
GST_VIDEO_FORMAT_RGB16, D3DFMT_R5G6B5}, {
|
GST_VIDEO_FORMAT_RGB16, D3DFMT_R5G6B5}, {
|
||||||
GST_VIDEO_FORMAT_RGB15, D3DFMT_X1R5G5B5}, {
|
GST_VIDEO_FORMAT_RGB15, D3DFMT_X1R5G5B5}, {
|
||||||
GST_VIDEO_FORMAT_I420, D3DFMT_YV12}, {
|
GST_VIDEO_FORMAT_I420, D3DFMT_YV12}, {
|
||||||
GST_VIDEO_FORMAT_YV12, D3DFMT_YV12}, {
|
GST_VIDEO_FORMAT_YV12, D3DFMT_YV12}, {
|
||||||
GST_VIDEO_FORMAT_NV12, D3DFMT_NV12}, {
|
GST_VIDEO_FORMAT_NV12, D3DFMT_NV12}, {
|
||||||
GST_VIDEO_FORMAT_YUY2, D3DFMT_YUY2}, {
|
GST_VIDEO_FORMAT_YUY2, D3DFMT_YUY2}, {
|
||||||
GST_VIDEO_FORMAT_UYVY, D3DFMT_UYVY}
|
GST_VIDEO_FORMAT_UYVY, D3DFMT_UYVY}
|
||||||
};
|
};
|
||||||
|
|
||||||
static D3DFORMAT
|
static D3DFORMAT
|
||||||
|
|
|
@ -921,7 +921,7 @@ gst_msdkvpp_transform (GstBaseTransform * trans, GstBuffer * inbuf,
|
||||||
free_msdk_surface (in_surface);
|
free_msdk_surface (in_surface);
|
||||||
return GST_FLOW_ERROR;
|
return GST_FLOW_ERROR;
|
||||||
}
|
}
|
||||||
locked_by_others = ! !in_surface->surface->Data.Locked;
|
locked_by_others = !!in_surface->surface->Data.Locked;
|
||||||
|
|
||||||
/* always convert timestamp of input surface as msdk timestamp */
|
/* always convert timestamp of input surface as msdk timestamp */
|
||||||
if (inbuf->pts == GST_CLOCK_TIME_NONE)
|
if (inbuf->pts == GST_CLOCK_TIME_NONE)
|
||||||
|
|
|
@ -756,7 +756,7 @@ gst_v4l2_decoder_dequeue_src (GstV4l2Decoder * self, guint32 * out_frame_num)
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_v4l2_decoder_set_controls (GstV4l2Decoder * self, GstV4l2Request * request,
|
gst_v4l2_decoder_set_controls (GstV4l2Decoder * self, GstV4l2Request * request,
|
||||||
struct v4l2_ext_control * control, guint count)
|
struct v4l2_ext_control *control, guint count)
|
||||||
{
|
{
|
||||||
gint ret;
|
gint ret;
|
||||||
struct v4l2_ext_controls controls = {
|
struct v4l2_ext_controls controls = {
|
||||||
|
@ -778,7 +778,7 @@ gst_v4l2_decoder_set_controls (GstV4l2Decoder * self, GstV4l2Request * request,
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_v4l2_decoder_get_controls (GstV4l2Decoder * self,
|
gst_v4l2_decoder_get_controls (GstV4l2Decoder * self,
|
||||||
struct v4l2_ext_control * control, guint count)
|
struct v4l2_ext_control *control, guint count)
|
||||||
{
|
{
|
||||||
gint ret;
|
gint ret;
|
||||||
struct v4l2_ext_controls controls = {
|
struct v4l2_ext_controls controls = {
|
||||||
|
|
|
@ -588,7 +588,7 @@ out:
|
||||||
|
|
||||||
gboolean
|
gboolean
|
||||||
gst_wasapi_util_get_device (GstMMDeviceEnumerator * self,
|
gst_wasapi_util_get_device (GstMMDeviceEnumerator * self,
|
||||||
gint data_flow, gint role, const wchar_t * device_strid,
|
gint data_flow, gint role, const wchar_t *device_strid,
|
||||||
IMMDevice ** ret_device)
|
IMMDevice ** ret_device)
|
||||||
{
|
{
|
||||||
gboolean res = FALSE;
|
gboolean res = FALSE;
|
||||||
|
|
|
@ -271,24 +271,30 @@ GST_START_TEST (test_crf_cvf_data)
|
||||||
gst_object_unref (avtpcrfbase);
|
gst_object_unref (avtpcrfbase);
|
||||||
|
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 103000,.buf_dts = 100000,.avtp_ts = 110000,.h264_ts = 108000};
|
.buf_pts = 103000,.buf_dts = 100000,.avtp_ts = 110000,.h264_ts = 108000
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 104204,.buf_dts = 100000,.avtp_ts = 110000,.h264_ts = 109204};
|
.buf_pts = 104204,.buf_dts = 100000,.avtp_ts = 110000,.h264_ts = 109204
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 107000,.buf_dts = 105000,.avtp_ts = 113000,.h264_ts = 118500};
|
.buf_pts = 107000,.buf_dts = 105000,.avtp_ts = 113000,.h264_ts = 118500
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 108400,.buf_dts = 105300,.avtp_ts = 113300,.h264_ts = 119900};
|
.buf_pts = 108400,.buf_dts = 105300,.avtp_ts = 113300,.h264_ts = 119900
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
/* test for invalid DTS */
|
/* test for invalid DTS */
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 107000,.buf_dts = GST_CLOCK_TIME_NONE,.avtp_ts =
|
.buf_pts = 107000,.buf_dts = GST_CLOCK_TIME_NONE,.avtp_ts =
|
||||||
113000,.h264_ts = 118500};
|
113000,.h264_ts = 118500
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 108400,.buf_dts = GST_CLOCK_TIME_NONE,.avtp_ts =
|
.buf_pts = 108400,.buf_dts = GST_CLOCK_TIME_NONE,.avtp_ts =
|
||||||
113300,.h264_ts = 119900};
|
113300,.h264_ts = 119900
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
gst_buffer_unref (buf);
|
gst_buffer_unref (buf);
|
||||||
|
@ -313,15 +319,19 @@ GST_START_TEST (test_crf_aaf_data)
|
||||||
gst_object_unref (avtpcrfbase);
|
gst_object_unref (avtpcrfbase);
|
||||||
|
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 108000,.buf_dts = 0,.avtp_ts = 110000,.h264_ts = 0};
|
.buf_pts = 108000,.buf_dts = 0,.avtp_ts = 110000,.h264_ts = 0
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 108000,.buf_dts = 0,.avtp_ts = 110000,.h264_ts = 0};
|
.buf_pts = 108000,.buf_dts = 0,.avtp_ts = 110000,.h264_ts = 0
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 110000,.buf_dts = 0,.avtp_ts = 113000,.h264_ts = 0};
|
.buf_pts = 110000,.buf_dts = 0,.avtp_ts = 113000,.h264_ts = 0
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 110300,.buf_dts = 0,.avtp_ts = 113300,.h264_ts = 0};
|
.buf_pts = 110300,.buf_dts = 0,.avtp_ts = 113300,.h264_ts = 0
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
gst_buffer_unref (buf);
|
gst_buffer_unref (buf);
|
||||||
|
@ -346,9 +356,11 @@ GST_START_TEST (test_crf_period_zero)
|
||||||
gst_object_unref (avtpcrfbase);
|
gst_object_unref (avtpcrfbase);
|
||||||
|
|
||||||
orig = (struct buffer_tstamps) {
|
orig = (struct buffer_tstamps) {
|
||||||
.buf_pts = 100,.buf_dts = 105,.avtp_ts = 112,.h264_ts = 110};
|
.buf_pts = 100,.buf_dts = 105,.avtp_ts = 112,.h264_ts = 110
|
||||||
|
};
|
||||||
expected = (struct buffer_tstamps) {
|
expected = (struct buffer_tstamps) {
|
||||||
.buf_pts = 100,.buf_dts = 105,.avtp_ts = 112,.h264_ts = 110};
|
.buf_pts = 100,.buf_dts = 105,.avtp_ts = 112,.h264_ts = 110
|
||||||
|
};
|
||||||
test_crf_tstamps (h, buf, &orig, &expected);
|
test_crf_tstamps (h, buf, &orig, &expected);
|
||||||
|
|
||||||
gst_buffer_unref (buf);
|
gst_buffer_unref (buf);
|
||||||
|
|
|
@ -194,7 +194,7 @@ push_vbuffers (gpointer data)
|
||||||
fail_unless (gst_pad_chain (pad, buf) == GST_FLOW_OK);
|
fail_unless (gst_pad_chain (pad, buf) == GST_FLOW_OK);
|
||||||
|
|
||||||
if (timestamp == 2 * GST_SECOND && e->switch_after_2s != DO_NOT_SWITCH) {
|
if (timestamp == 2 * GST_SECOND && e->switch_after_2s != DO_NOT_SWITCH) {
|
||||||
g_object_set (e->element, "recording", ! !e->switch_after_2s, NULL);
|
g_object_set (e->element, "recording", !!e->switch_after_2s, NULL);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
gst_pad_send_event (pad, gst_event_new_eos ());
|
gst_pad_send_event (pad, gst_event_new_eos ());
|
||||||
|
|
|
@ -594,9 +594,10 @@ GST_START_TEST (test_kate_encode_keepalives)
|
||||||
gint packets;
|
gint packets;
|
||||||
} cfg[3] = {
|
} cfg[3] = {
|
||||||
{
|
{
|
||||||
0.5, n_keepalives}, {
|
0.5, n_keepalives}, {
|
||||||
2.0, n_keepalives / 2}, {
|
2.0, n_keepalives / 2}, {
|
||||||
5.0, n_keepalives / 5},};
|
5.0, n_keepalives / 5},
|
||||||
|
};
|
||||||
|
|
||||||
for (round = 0; round < 3; ++round) {
|
for (round = 0; round < 3; ++round) {
|
||||||
kateenc = setup_kateenc ();
|
kateenc = setup_kateenc ();
|
||||||
|
|
|
@ -40,12 +40,12 @@ GST_START_TEST (test_pnm_enc_dec)
|
||||||
const gchar *out_fmt;
|
const gchar *out_fmt;
|
||||||
} test_formats[] = {
|
} test_formats[] = {
|
||||||
{
|
{
|
||||||
"RGB", "RGB"}, {
|
"RGB", "RGB"}, {
|
||||||
"GRAY8", "GRAY8"}, {
|
"GRAY8", "GRAY8"}, {
|
||||||
"GRAY16_BE", "GRAY16_BE"}, {
|
"GRAY16_BE", "GRAY16_BE"}, {
|
||||||
"GRAY16_BE", "GRAY16_LE"}, {
|
"GRAY16_BE", "GRAY16_LE"}, {
|
||||||
"GRAY16_LE", "GRAY16_BE"}, {
|
"GRAY16_LE", "GRAY16_BE"}, {
|
||||||
"GRAY16_LE", "GRAY16_LE"}
|
"GRAY16_LE", "GRAY16_LE"}
|
||||||
};
|
};
|
||||||
|
|
||||||
pipeline =
|
pipeline =
|
||||||
|
|
|
@ -293,7 +293,7 @@ test_play_audio_video_eos_cb (GstPlay * player, TestPlayerStateChange change,
|
||||||
gint step = GPOINTER_TO_INT (new_state->test_data);
|
gint step = GPOINTER_TO_INT (new_state->test_data);
|
||||||
gboolean video;
|
gboolean video;
|
||||||
|
|
||||||
video = ! !(step & 0x10);
|
video = !!(step & 0x10);
|
||||||
step = (step & (~0x10));
|
step = (step & (~0x10));
|
||||||
|
|
||||||
switch (step) {
|
switch (step) {
|
||||||
|
|
|
@ -548,9 +548,9 @@ create_source (TestFeatures features, int fdina, int fdouta, int fdinv,
|
||||||
int fdoutv, test_data * td)
|
int fdoutv, test_data * td)
|
||||||
{
|
{
|
||||||
GstElement *pipeline = NULL;
|
GstElement *pipeline = NULL;
|
||||||
gboolean live = ! !(features & TEST_FEATURE_LIVE);
|
gboolean live = !!(features & TEST_FEATURE_LIVE);
|
||||||
gboolean longdur = ! !(features & TEST_FEATURE_LONG_DURATION);
|
gboolean longdur = !!(features & TEST_FEATURE_LONG_DURATION);
|
||||||
gboolean has_video = ! !(features & TEST_FEATURE_HAS_VIDEO);
|
gboolean has_video = !!(features & TEST_FEATURE_HAS_VIDEO);
|
||||||
|
|
||||||
if (features & TEST_FEATURE_TEST_SOURCE) {
|
if (features & TEST_FEATURE_TEST_SOURCE) {
|
||||||
|
|
||||||
|
@ -874,7 +874,7 @@ test_base (const char *name, TestFeatures features,
|
||||||
if (pid) {
|
if (pid) {
|
||||||
die_on_child_death ();
|
die_on_child_death ();
|
||||||
}
|
}
|
||||||
c_src = ! !pid;
|
c_src = !!pid;
|
||||||
c_sink = !pid;
|
c_sink = !pid;
|
||||||
} else {
|
} else {
|
||||||
c_src = TRUE;
|
c_src = TRUE;
|
||||||
|
@ -5020,7 +5020,7 @@ dynamic_pipeline_change_stress_source_blocked_switch_av (GstPad * pad,
|
||||||
|
|
||||||
g_mutex_lock (&d->mutex);
|
g_mutex_lock (&d->mutex);
|
||||||
switch_av (td->p, gst_element_get_name (source),
|
switch_av (td->p, gst_element_get_name (source),
|
||||||
! !(td->features & TEST_FEATURE_LIVE), TRUE);
|
!!(td->features & TEST_FEATURE_LIVE), TRUE);
|
||||||
g_mutex_unlock (&d->mutex);
|
g_mutex_unlock (&d->mutex);
|
||||||
|
|
||||||
g_idle_add_full (G_PRIORITY_HIGH, remove_source, source, g_object_unref);
|
g_idle_add_full (G_PRIORITY_HIGH, remove_source, source, g_object_unref);
|
||||||
|
@ -5093,7 +5093,7 @@ dynamic_pipeline_change_stress_source_blocked_change_audio_channel (GstPad *
|
||||||
|
|
||||||
g_mutex_lock (&d->mutex);
|
g_mutex_lock (&d->mutex);
|
||||||
change_audio_channel (td->p, gst_element_get_name (source),
|
change_audio_channel (td->p, gst_element_get_name (source),
|
||||||
ipcpipelinesink_name, ! !(td->features & TEST_FEATURE_LIVE));
|
ipcpipelinesink_name, !!(td->features & TEST_FEATURE_LIVE));
|
||||||
g_mutex_unlock (&d->mutex);
|
g_mutex_unlock (&d->mutex);
|
||||||
|
|
||||||
g_idle_add_full (G_PRIORITY_HIGH, remove_source, source, g_object_unref);
|
g_idle_add_full (G_PRIORITY_HIGH, remove_source, source, g_object_unref);
|
||||||
|
|
|
@ -190,9 +190,9 @@ print_keyboard_help (void)
|
||||||
const gchar *key_help;
|
const gchar *key_help;
|
||||||
} key_controls[] = {
|
} key_controls[] = {
|
||||||
{
|
{
|
||||||
"q or ESC", "Quit"}, {
|
"q or ESC", "Quit"}, {
|
||||||
"SPACE", "Toggle fullscreen mode"}, {
|
"SPACE", "Toggle fullscreen mode"}, {
|
||||||
"f", "Toggle force-aspect-ratio"}
|
"f", "Toggle force-aspect-ratio"}
|
||||||
};
|
};
|
||||||
guint i, chars_to_pad, desc_len, max_desc_len = 0;
|
guint i, chars_to_pad, desc_len, max_desc_len = 0;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue