mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-23 16:50:47 +00:00
h263parse: shuffle code to untangle h263parse and parameter parsing
This commit is contained in:
parent
daed6713db
commit
46308f8c53
5 changed files with 219 additions and 189 deletions
|
@ -6,4 +6,4 @@ libgsth263parse_la_LIBADD = $(GST_BASE_LIBS) $(GST_LIBS)
|
|||
libgsth263parse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
||||
libgsth263parse_la_LIBTOOLFLAGS = --tag=disable-static
|
||||
|
||||
noinst_HEADERS = gsth263parse.h gstbaseparse.h
|
||||
noinst_HEADERS = gsth263parse.h h263parse.h gstbaseparse.h
|
||||
|
|
|
@ -179,6 +179,70 @@ out:
|
|||
return psc_pos;
|
||||
}
|
||||
|
||||
static void
|
||||
gst_h263_parse_set_src_caps (GstH263Parse * h263parse, H263Params * params)
|
||||
{
|
||||
GstStructure *st;
|
||||
GstCaps *caps, *sink_caps;
|
||||
gint fr_num, fr_denom;
|
||||
|
||||
g_assert (h263parse->state == PASSTHROUGH || h263parse->state == GOT_HEADER);
|
||||
|
||||
caps = GST_PAD_CAPS (GST_BASE_PARSE_SINK_PAD (h263parse));
|
||||
if (caps) {
|
||||
caps = gst_caps_copy (caps);
|
||||
} else {
|
||||
caps = gst_caps_new_simple ("video/x-h263",
|
||||
"variant", G_TYPE_STRING, "itu", NULL);
|
||||
}
|
||||
gst_caps_set_simple (caps, "parsed", G_TYPE_BOOLEAN, TRUE, NULL);
|
||||
|
||||
sink_caps = GST_PAD_CAPS (GST_BASE_PARSE_SINK_PAD (h263parse));
|
||||
if (sink_caps && (st = gst_caps_get_structure (sink_caps, 0)) &&
|
||||
gst_structure_get_fraction (st, "framerate", &fr_num, &fr_denom)) {
|
||||
/* Got it in caps - nothing more to do */
|
||||
GST_DEBUG ("Sink caps override framerate from headers");
|
||||
} else {
|
||||
/* Caps didn't have the framerate - get it from params */
|
||||
gst_h263_parse_get_framerate (params, &fr_num, &fr_denom);
|
||||
}
|
||||
gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION, fr_num, fr_denom,
|
||||
NULL);
|
||||
|
||||
if (h263parse->state == GOT_HEADER) {
|
||||
gst_caps_set_simple (caps,
|
||||
"annex-d", G_TYPE_BOOLEAN, (params->features & H263_OPTION_UMV_MODE),
|
||||
"annex-e", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SAC_MODE),
|
||||
"annex-f", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AP_MODE),
|
||||
"annex-g", G_TYPE_BOOLEAN, (params->features & H263_OPTION_PB_MODE),
|
||||
"annex-i", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIC_MODE),
|
||||
"annex-j", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DF_MODE),
|
||||
"annex-k", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SS_MODE),
|
||||
"annex-m", G_TYPE_BOOLEAN, (params->type == PICTURE_IMPROVED_PB),
|
||||
"annex-n", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RPS_MODE),
|
||||
"annex-q", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RRU_MODE),
|
||||
"annex-r", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ISD_MODE),
|
||||
"annex-s", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIV_MODE),
|
||||
"annex-t", G_TYPE_BOOLEAN, (params->features & H263_OPTION_MQ_MODE),
|
||||
"annex-u", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ERPS_MODE),
|
||||
"annex-v", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DPS_MODE),
|
||||
NULL);
|
||||
|
||||
h263parse->profile = gst_h263_parse_get_profile (params);
|
||||
if (h263parse->profile != -1)
|
||||
gst_caps_set_simple (caps, "profile", G_TYPE_UINT, h263parse->profile,
|
||||
NULL);
|
||||
|
||||
h263parse->level = gst_h263_parse_get_level (params, h263parse->profile,
|
||||
h263parse->bitrate, fr_num, fr_denom);
|
||||
if (h263parse->level != -1)
|
||||
gst_caps_set_simple (caps, "level", G_TYPE_UINT, h263parse->level, NULL);
|
||||
}
|
||||
|
||||
gst_pad_set_caps (GST_BASE_PARSE_SRC_PAD (GST_BASE_PARSE (h263parse)), caps);
|
||||
gst_caps_unref (caps);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
gst_h263_parse_check_valid_frame (GstBaseParse * parse, GstBuffer * buffer,
|
||||
guint * framesize, gint * skipsize)
|
||||
|
@ -219,9 +283,9 @@ gst_h263_parse_check_valid_frame (GstBaseParse * parse, GstBuffer * buffer,
|
|||
/* If this is the first frame, parse and set srcpad caps */
|
||||
if (h263parse->state == PARSING) {
|
||||
H263Params *params = NULL;
|
||||
GstFlowReturn res = gst_h263_parse_get_params (h263parse, buffer,
|
||||
¶ms, FALSE);
|
||||
GstFlowReturn res;
|
||||
|
||||
res = gst_h263_parse_get_params (¶ms, buffer, FALSE, &h263parse->state);
|
||||
if (res != GST_FLOW_OK || h263parse->state != GOT_HEADER) {
|
||||
GST_WARNING ("Couldn't parse header - setting passthrough mode");
|
||||
gst_base_parse_set_passthrough (parse, TRUE);
|
||||
|
@ -262,7 +326,7 @@ gst_h263_parse_parse_frame (GstBaseParse * parse, GstBuffer * buffer)
|
|||
|
||||
h263parse = GST_H263_PARSE (parse);
|
||||
|
||||
res = gst_h263_parse_get_params (h263parse, buffer, ¶ms, TRUE);
|
||||
res = gst_h263_parse_get_params (¶ms, buffer, TRUE, &h263parse->state);
|
||||
if (res != GST_FLOW_OK)
|
||||
goto out;
|
||||
|
||||
|
|
|
@ -32,17 +32,10 @@
|
|||
#include <gst/base/gstadapter.h>
|
||||
#include <gstbaseparse.h>
|
||||
|
||||
#include "h263parse.h"
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PARSING = 0,
|
||||
GOT_HEADER,
|
||||
PASSTHROUGH
|
||||
} H263ParseState;
|
||||
|
||||
typedef struct _H263Params H263Params;
|
||||
|
||||
#define GST_TYPE_H263_PARSE \
|
||||
(gst_h263_parse_get_type())
|
||||
#define GST_H263_PARSE(obj) \
|
||||
|
@ -74,16 +67,5 @@ struct _GstH263ParseClass
|
|||
GstBaseParseClass parent_class;
|
||||
};
|
||||
|
||||
gboolean gst_h263_parse_is_delta_unit (H263Params * params);
|
||||
GstFlowReturn gst_h263_parse_get_params (GstH263Parse * h263parse,
|
||||
GstBuffer * buffer, H263Params ** params_p, gboolean fast);
|
||||
void gst_h263_parse_get_framerate (GstCaps * caps, H263Params * params,
|
||||
gint * num, gint * denom);
|
||||
void gst_h263_parse_set_src_caps (GstH263Parse * h263parse,
|
||||
H263Params * params);
|
||||
gint gst_h263_parse_get_profile (H263Params * params);
|
||||
gint gst_h263_parse_get_level (H263Params * params, gint profile,
|
||||
guint bitrate, gint fps_num, gint fps_denom);
|
||||
|
||||
G_END_DECLS
|
||||
#endif
|
||||
|
|
|
@ -30,99 +30,6 @@
|
|||
GST_DEBUG_CATEGORY_EXTERN (h263_parse_debug);
|
||||
#define GST_CAT_DEFAULT h263_parse_debug
|
||||
|
||||
/* H263 Optional Features */
|
||||
typedef enum
|
||||
{
|
||||
/* Optional Unrestricted Motion Vector (UMV) mode (see Annex D) */
|
||||
H263_OPTION_UMV_MODE = 1 << 0,
|
||||
/* Optional Syntax-based Arithmetic Coding (SAC) mode (see Annex E) */
|
||||
H263_OPTION_SAC_MODE = 1 << 1,
|
||||
/* Optional Advanced Prediction mode (AP) (see Annex F) */
|
||||
H263_OPTION_AP_MODE = 1 << 2,
|
||||
/* Optional PB-frames mode (see Annex G) */
|
||||
H263_OPTION_PB_MODE = 1 << 3,
|
||||
/* Optional Advanced INTRA Coding (AIC) mode (see Annex I) */
|
||||
H263_OPTION_AIC_MODE = 1 << 4,
|
||||
/* Optional Deblocking Filter (DF) mode (see Annex J) */
|
||||
H263_OPTION_DF_MODE = 1 << 5,
|
||||
/* Optional Slice Structured (SS) mode (see Annex K) */
|
||||
H263_OPTION_SS_MODE = 1 << 6,
|
||||
/* Optional Reference Picture Selection (RPS) mode (see Annex N) */
|
||||
H263_OPTION_RPS_MODE = 1 << 7,
|
||||
/* Optional Independent Segment Decoding (ISD) mode (see Annex R) */
|
||||
H263_OPTION_ISD_MODE = 1 << 8,
|
||||
/* Optional Alternative INTER VLC (AIV) mode (see Annex S) */
|
||||
H263_OPTION_AIV_MODE = 1 << 9,
|
||||
/* Optional Modified Quantization (MQ) mode (see Annex T) */
|
||||
H263_OPTION_MQ_MODE = 1 << 10,
|
||||
/* Optional Reference Picture Resampling (RPR) mode (see Annex P) */
|
||||
H263_OPTION_RPR_MODE = 1 << 11,
|
||||
/* Optional Reduced-Resolution Update (RRU) mode (see Annex Q) */
|
||||
H263_OPTION_RRU_MODE = 1 << 12,
|
||||
/* Optional Enhanced Reference Picture Selection (ERPS) mode (see Annex U) */
|
||||
H263_OPTION_ERPS_MODE = 1 << 13,
|
||||
/* Optional Data Partitioned Slices (DPS) mode (see Annex V) */
|
||||
H263_OPTION_DPS_MODE = 1 << 14
|
||||
} H263OptionalFeatures;
|
||||
|
||||
/* H263 Picture Types */
|
||||
typedef enum
|
||||
{
|
||||
PICTURE_I = 0, /* I-picture (INTRA) Baseline */
|
||||
PICTURE_P, /* P-picture (INTER) Baseline */
|
||||
PICTURE_IMPROVED_PB, /* Improved PB-frame (Annex M) */
|
||||
PICTURE_B, /* B-picture (Annex O) */
|
||||
PICTURE_EI, /* EI-picture (Annex O) */
|
||||
PICTURE_EP, /* EP-picture (Annex O) */
|
||||
PICTURE_RESERVED1,
|
||||
PICTURE_RESERVED2,
|
||||
PICTURE_PB /* PB-frame (See Annex G) */
|
||||
} H263PictureType;
|
||||
|
||||
/* H263 Picture Format */
|
||||
typedef enum
|
||||
{
|
||||
PICTURE_FMT_FORBIDDEN_0 = 0,
|
||||
PICTURE_FMT_SUB_QCIF,
|
||||
PICTURE_FMT_QCIF,
|
||||
PICTURE_FMT_CIF,
|
||||
PICTURE_FMT_4CIF,
|
||||
PICTURE_FMT_16CIF,
|
||||
PICTURE_FMT_RESERVED1,
|
||||
PICTURE_FMT_EXTENDEDPTYPE
|
||||
} H263PictureFormat;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
UUI_ABSENT = 0,
|
||||
UUI_IS_1,
|
||||
UUI_IS_01,
|
||||
} H263UUI;
|
||||
|
||||
struct _H263Params
|
||||
{
|
||||
guint32 temporal_ref;
|
||||
|
||||
H263OptionalFeatures features;
|
||||
|
||||
gboolean splitscreen;
|
||||
gboolean documentcamera;
|
||||
gboolean fullpicturefreezerelease;
|
||||
gboolean custompcfpresent;
|
||||
H263UUI uui;
|
||||
guint8 sss;
|
||||
|
||||
H263PictureFormat format;
|
||||
|
||||
H263PictureType type;
|
||||
|
||||
guint32 width;
|
||||
guint32 height;
|
||||
guint8 parnum, pardenom;
|
||||
gint32 pcfnum, pcfdenom;
|
||||
};
|
||||
|
||||
|
||||
gboolean
|
||||
gst_h263_parse_is_delta_unit (H263Params * params)
|
||||
{
|
||||
|
@ -133,8 +40,8 @@ gst_h263_parse_is_delta_unit (H263Params * params)
|
|||
* extract a subset of the data (for now, it quits once we have the picture
|
||||
* type. */
|
||||
GstFlowReturn
|
||||
gst_h263_parse_get_params (GstH263Parse * h263parse, GstBuffer * buffer,
|
||||
H263Params ** params_p, gboolean fast)
|
||||
gst_h263_parse_get_params (H263Params ** params_p, GstBuffer * buffer,
|
||||
gboolean fast, H263ParseState * state)
|
||||
{
|
||||
static const guint8 partable[6][2] = {
|
||||
{1, 0},
|
||||
|
@ -538,12 +445,12 @@ gst_h263_parse_get_params (GstH263Parse * h263parse, GstBuffer * buffer,
|
|||
* have no means of specifying what sub-modes, if any, are used. */
|
||||
|
||||
done:
|
||||
h263parse->state = GOT_HEADER;
|
||||
*state = GOT_HEADER;
|
||||
more:
|
||||
return GST_FLOW_OK;
|
||||
|
||||
beach:
|
||||
h263parse->state = PASSTHROUGH;
|
||||
*state = PASSTHROUGH;
|
||||
return GST_FLOW_OK;
|
||||
}
|
||||
|
||||
|
@ -752,75 +659,8 @@ gst_h263_parse_get_level (H263Params * params, gint profile,
|
|||
}
|
||||
|
||||
void
|
||||
gst_h263_parse_get_framerate (GstCaps * sink_caps, H263Params * params,
|
||||
gint * num, gint * denom)
|
||||
gst_h263_parse_get_framerate (H263Params * params, gint * num, gint * denom)
|
||||
{
|
||||
GstStructure *st;
|
||||
|
||||
st = gst_caps_get_structure (sink_caps, 0);
|
||||
|
||||
if (gst_structure_get_fraction (st, "framerate", num, denom)) {
|
||||
/* Got it in caps - nothing more to do */
|
||||
GST_DEBUG ("Sink caps override framerate from headers");
|
||||
return;
|
||||
}
|
||||
|
||||
/* Caps didn't have the framerate - get it from params */
|
||||
*num = params->pcfnum;
|
||||
*denom = params->pcfdenom;
|
||||
}
|
||||
|
||||
void
|
||||
gst_h263_parse_set_src_caps (GstH263Parse * h263parse, H263Params * params)
|
||||
{
|
||||
GstCaps *caps;
|
||||
gint fr_num, fr_denom;
|
||||
|
||||
g_assert (h263parse->state == PASSTHROUGH || h263parse->state == GOT_HEADER);
|
||||
|
||||
caps = GST_PAD_CAPS (GST_BASE_PARSE_SINK_PAD (GST_BASE_PARSE (h263parse)));
|
||||
if (caps) {
|
||||
caps = gst_caps_copy (caps);
|
||||
} else {
|
||||
caps = gst_caps_new_simple ("video/x-h263",
|
||||
"variant", G_TYPE_STRING, "itu", NULL);
|
||||
}
|
||||
gst_caps_set_simple (caps, "parsed", G_TYPE_BOOLEAN, TRUE, NULL);
|
||||
|
||||
gst_h263_parse_get_framerate (caps, params, &fr_num, &fr_denom);
|
||||
gst_caps_set_simple (caps, "framerate", GST_TYPE_FRACTION, fr_num, fr_denom,
|
||||
NULL);
|
||||
|
||||
if (h263parse->state == GOT_HEADER) {
|
||||
gst_caps_set_simple (caps,
|
||||
"annex-d", G_TYPE_BOOLEAN, (params->features & H263_OPTION_UMV_MODE),
|
||||
"annex-e", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SAC_MODE),
|
||||
"annex-f", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AP_MODE),
|
||||
"annex-g", G_TYPE_BOOLEAN, (params->features & H263_OPTION_PB_MODE),
|
||||
"annex-i", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIC_MODE),
|
||||
"annex-j", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DF_MODE),
|
||||
"annex-k", G_TYPE_BOOLEAN, (params->features & H263_OPTION_SS_MODE),
|
||||
"annex-m", G_TYPE_BOOLEAN, (params->type == PICTURE_IMPROVED_PB),
|
||||
"annex-n", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RPS_MODE),
|
||||
"annex-q", G_TYPE_BOOLEAN, (params->features & H263_OPTION_RRU_MODE),
|
||||
"annex-r", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ISD_MODE),
|
||||
"annex-s", G_TYPE_BOOLEAN, (params->features & H263_OPTION_AIV_MODE),
|
||||
"annex-t", G_TYPE_BOOLEAN, (params->features & H263_OPTION_MQ_MODE),
|
||||
"annex-u", G_TYPE_BOOLEAN, (params->features & H263_OPTION_ERPS_MODE),
|
||||
"annex-v", G_TYPE_BOOLEAN, (params->features & H263_OPTION_DPS_MODE),
|
||||
NULL);
|
||||
|
||||
h263parse->profile = gst_h263_parse_get_profile (params);
|
||||
if (h263parse->profile != -1)
|
||||
gst_caps_set_simple (caps, "profile", G_TYPE_UINT, h263parse->profile,
|
||||
NULL);
|
||||
|
||||
h263parse->level = gst_h263_parse_get_level (params, h263parse->profile,
|
||||
h263parse->bitrate, fr_num, fr_denom);
|
||||
if (h263parse->level != -1)
|
||||
gst_caps_set_simple (caps, "level", G_TYPE_UINT, h263parse->level, NULL);
|
||||
}
|
||||
|
||||
gst_pad_set_caps (GST_BASE_PARSE_SRC_PAD (GST_BASE_PARSE (h263parse)), caps);
|
||||
gst_caps_unref (caps);
|
||||
}
|
||||
|
|
144
gst/h263parse/h263parse.h
Normal file
144
gst/h263parse/h263parse.h
Normal file
|
@ -0,0 +1,144 @@
|
|||
/* GStreamer H.263 Parser
|
||||
* Copyright (C) <2010> Arun Raghavan <arun.raghavan@collabora.co.uk>
|
||||
* Copyright (C) <2010> Edward Hervey <edward.hervey@collabora.co.uk>
|
||||
* Copyright (C) <2010> Collabora Multimedia
|
||||
* Copyright (C) <2010> Nokia Corporation
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public
|
||||
* License along with this library; if not, write to the
|
||||
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||||
* Boston, MA 02111-1307, USA.
|
||||
*/
|
||||
|
||||
#ifndef __GST_H263_PARAMS_H__
|
||||
#define __GST_H263_PARAMS_H__
|
||||
|
||||
#include <gst/gst.h>
|
||||
#include <gst/base/gstadapter.h>
|
||||
#include <gstbaseparse.h>
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
typedef enum
|
||||
{
|
||||
PARSING = 0,
|
||||
GOT_HEADER,
|
||||
PASSTHROUGH
|
||||
} H263ParseState;
|
||||
|
||||
/* H263 Optional Features */
|
||||
typedef enum
|
||||
{
|
||||
/* Optional Unrestricted Motion Vector (UMV) mode (see Annex D) */
|
||||
H263_OPTION_UMV_MODE = 1 << 0,
|
||||
/* Optional Syntax-based Arithmetic Coding (SAC) mode (see Annex E) */
|
||||
H263_OPTION_SAC_MODE = 1 << 1,
|
||||
/* Optional Advanced Prediction mode (AP) (see Annex F) */
|
||||
H263_OPTION_AP_MODE = 1 << 2,
|
||||
/* Optional PB-frames mode (see Annex G) */
|
||||
H263_OPTION_PB_MODE = 1 << 3,
|
||||
/* Optional Advanced INTRA Coding (AIC) mode (see Annex I) */
|
||||
H263_OPTION_AIC_MODE = 1 << 4,
|
||||
/* Optional Deblocking Filter (DF) mode (see Annex J) */
|
||||
H263_OPTION_DF_MODE = 1 << 5,
|
||||
/* Optional Slice Structured (SS) mode (see Annex K) */
|
||||
H263_OPTION_SS_MODE = 1 << 6,
|
||||
/* Optional Reference Picture Selection (RPS) mode (see Annex N) */
|
||||
H263_OPTION_RPS_MODE = 1 << 7,
|
||||
/* Optional Independent Segment Decoding (ISD) mode (see Annex R) */
|
||||
H263_OPTION_ISD_MODE = 1 << 8,
|
||||
/* Optional Alternative INTER VLC (AIV) mode (see Annex S) */
|
||||
H263_OPTION_AIV_MODE = 1 << 9,
|
||||
/* Optional Modified Quantization (MQ) mode (see Annex T) */
|
||||
H263_OPTION_MQ_MODE = 1 << 10,
|
||||
/* Optional Reference Picture Resampling (RPR) mode (see Annex P) */
|
||||
H263_OPTION_RPR_MODE = 1 << 11,
|
||||
/* Optional Reduced-Resolution Update (RRU) mode (see Annex Q) */
|
||||
H263_OPTION_RRU_MODE = 1 << 12,
|
||||
/* Optional Enhanced Reference Picture Selection (ERPS) mode (see Annex U) */
|
||||
H263_OPTION_ERPS_MODE = 1 << 13,
|
||||
/* Optional Data Partitioned Slices (DPS) mode (see Annex V) */
|
||||
H263_OPTION_DPS_MODE = 1 << 14
|
||||
} H263OptionalFeatures;
|
||||
|
||||
/* H263 Picture Types */
|
||||
typedef enum
|
||||
{
|
||||
PICTURE_I = 0, /* I-picture (INTRA) Baseline */
|
||||
PICTURE_P, /* P-picture (INTER) Baseline */
|
||||
PICTURE_IMPROVED_PB, /* Improved PB-frame (Annex M) */
|
||||
PICTURE_B, /* B-picture (Annex O) */
|
||||
PICTURE_EI, /* EI-picture (Annex O) */
|
||||
PICTURE_EP, /* EP-picture (Annex O) */
|
||||
PICTURE_RESERVED1,
|
||||
PICTURE_RESERVED2,
|
||||
PICTURE_PB /* PB-frame (See Annex G) */
|
||||
} H263PictureType;
|
||||
|
||||
/* H263 Picture Format */
|
||||
typedef enum
|
||||
{
|
||||
PICTURE_FMT_FORBIDDEN_0 = 0,
|
||||
PICTURE_FMT_SUB_QCIF,
|
||||
PICTURE_FMT_QCIF,
|
||||
PICTURE_FMT_CIF,
|
||||
PICTURE_FMT_4CIF,
|
||||
PICTURE_FMT_16CIF,
|
||||
PICTURE_FMT_RESERVED1,
|
||||
PICTURE_FMT_EXTENDEDPTYPE
|
||||
} H263PictureFormat;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
UUI_ABSENT = 0,
|
||||
UUI_IS_1,
|
||||
UUI_IS_01,
|
||||
} H263UUI;
|
||||
|
||||
|
||||
typedef struct _H263Params H263Params;
|
||||
|
||||
struct _H263Params
|
||||
{
|
||||
guint32 temporal_ref;
|
||||
|
||||
H263OptionalFeatures features;
|
||||
|
||||
gboolean splitscreen;
|
||||
gboolean documentcamera;
|
||||
gboolean fullpicturefreezerelease;
|
||||
gboolean custompcfpresent;
|
||||
H263UUI uui;
|
||||
guint8 sss;
|
||||
|
||||
H263PictureFormat format;
|
||||
|
||||
H263PictureType type;
|
||||
|
||||
guint32 width;
|
||||
guint32 height;
|
||||
guint8 parnum, pardenom;
|
||||
gint32 pcfnum, pcfdenom;
|
||||
};
|
||||
|
||||
gboolean gst_h263_parse_is_delta_unit (H263Params * params);
|
||||
GstFlowReturn gst_h263_parse_get_params (H263Params ** params_p,
|
||||
GstBuffer * buffer, gboolean fast, H263ParseState * state);
|
||||
void gst_h263_parse_get_framerate (H263Params * params,
|
||||
gint * num, gint * denom);
|
||||
gint gst_h263_parse_get_profile (H263Params * params);
|
||||
gint gst_h263_parse_get_level (H263Params * params, gint profile,
|
||||
guint bitrate, gint fps_num, gint fps_denom);
|
||||
|
||||
G_END_DECLS
|
||||
#endif
|
Loading…
Reference in a new issue