mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-21 13:36:39 +00:00
codecparsers: h264: fix quantization matrix conversion routine names.
Fix routine names for zigzag/raster scan order conversion routines for quantization matrices. This ought to use the gst_h264_quant_matrix_*() naming convention instead of gst_h264_video_quant_matrix_*(), which derived from the MPEG-2 function names. https://bugzilla.gnome.org/show_bug.cgi?id=731524 Signed-off-by: Gwenole Beauchesne <gwenole.beauchesne@intel.com>
This commit is contained in:
parent
5196f24138
commit
db887f05ca
3 changed files with 18 additions and 18 deletions
|
@ -40,10 +40,10 @@ gst_h264_nal_parser_new
|
||||||
gst_h264_nal_parser_free
|
gst_h264_nal_parser_free
|
||||||
gst_h264_parse_sps
|
gst_h264_parse_sps
|
||||||
gst_h264_parse_pps
|
gst_h264_parse_pps
|
||||||
gst_h264_video_quant_matrix_8x8_get_zigzag_from_raster
|
gst_h264_quant_matrix_8x8_get_zigzag_from_raster
|
||||||
gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag
|
gst_h264_quant_matrix_8x8_get_raster_from_zigzag
|
||||||
gst_h264_video_quant_matrix_4x4_get_zigzag_from_raster
|
gst_h264_quant_matrix_4x4_get_zigzag_from_raster
|
||||||
gst_h264_video_quant_matrix_4x4_get_raster_from_zigzag
|
gst_h264_quant_matrix_4x4_get_raster_from_zigzag
|
||||||
gst_h264_video_calculate_framerate
|
gst_h264_video_calculate_framerate
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
<SUBSECTION Private>
|
<SUBSECTION Private>
|
||||||
|
|
|
@ -1777,7 +1777,7 @@ gst_h264_parser_parse_sei (GstH264NalParser * nalparser, GstH264NalUnit * nalu,
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_h264_video_quant_matrix_8x8_get_zigzag_from_raster:
|
* gst_h264_quant_matrix_8x8_get_zigzag_from_raster:
|
||||||
* @out_quant: (out): The resulting quantization matrix
|
* @out_quant: (out): The resulting quantization matrix
|
||||||
* @quant: The source quantization matrix
|
* @quant: The source quantization matrix
|
||||||
*
|
*
|
||||||
|
@ -1790,7 +1790,7 @@ gst_h264_parser_parse_sei (GstH264NalParser * nalparser, GstH264NalUnit * nalu,
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_h264_video_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
|
gst_h264_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
|
||||||
const guint8 quant[64])
|
const guint8 quant[64])
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
|
@ -1815,7 +1815,7 @@ gst_h264_video_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
gst_h264_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
||||||
const guint8 quant[64])
|
const guint8 quant[64])
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
|
@ -1827,7 +1827,7 @@ gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* gst_h264_video_quant_matrix_4x4_get_zigzag_from_raster:
|
* gst_h264_quant_matrix_4x4_get_zigzag_from_raster:
|
||||||
* @out_quant: (out): The resulting quantization matrix
|
* @out_quant: (out): The resulting quantization matrix
|
||||||
* @quant: The source quantization matrix
|
* @quant: The source quantization matrix
|
||||||
*
|
*
|
||||||
|
@ -1840,7 +1840,7 @@ gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_h264_video_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
|
gst_h264_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
|
||||||
const guint8 quant[16])
|
const guint8 quant[16])
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
|
@ -1865,7 +1865,7 @@ gst_h264_video_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
|
||||||
* Since: 1.4
|
* Since: 1.4
|
||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
gst_h264_video_quant_matrix_4x4_get_raster_from_zigzag (guint8 out_quant[16],
|
gst_h264_quant_matrix_4x4_get_raster_from_zigzag (guint8 out_quant[16],
|
||||||
const guint8 quant[16])
|
const guint8 quant[16])
|
||||||
{
|
{
|
||||||
guint i;
|
guint i;
|
||||||
|
|
|
@ -769,17 +769,17 @@ GstH264ParserResult gst_h264_parse_sps (GstH264NalUnit *nalu,
|
||||||
GstH264ParserResult gst_h264_parse_pps (GstH264NalParser *nalparser,
|
GstH264ParserResult gst_h264_parse_pps (GstH264NalParser *nalparser,
|
||||||
GstH264NalUnit *nalu, GstH264PPS *pps);
|
GstH264NalUnit *nalu, GstH264PPS *pps);
|
||||||
|
|
||||||
void gst_h264_video_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
|
void gst_h264_quant_matrix_8x8_get_zigzag_from_raster (guint8 out_quant[64],
|
||||||
const guint8 quant[64]);
|
const guint8 quant[64]);
|
||||||
|
|
||||||
void gst_h264_video_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
void gst_h264_quant_matrix_8x8_get_raster_from_zigzag (guint8 out_quant[64],
|
||||||
const guint8 quant[64]);
|
const guint8 quant[64]);
|
||||||
|
|
||||||
void gst_h264_video_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
|
void gst_h264_quant_matrix_4x4_get_zigzag_from_raster (guint8 out_quant[16],
|
||||||
const guint8 quant[16]);
|
const guint8 quant[16]);
|
||||||
|
|
||||||
void gst_h264_video_quant_matrix_4x4_get_raster_from_zigzag (guint8 out_quant[16],
|
void gst_h264_quant_matrix_4x4_get_raster_from_zigzag (guint8 out_quant[16],
|
||||||
const guint8 quant[16]);
|
const guint8 quant[16]);
|
||||||
|
|
||||||
void gst_h264_video_calculate_framerate (const GstH264SPS * sps, guint field_pic_flag,
|
void gst_h264_video_calculate_framerate (const GstH264SPS * sps, guint field_pic_flag,
|
||||||
guint pic_struct, gint * fps_num, gint * fps_den);
|
guint pic_struct, gint * fps_num, gint * fps_den);
|
||||||
|
|
Loading…
Reference in a new issue