mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
h264parser: maintain minimal ABI compat
Because we can. https://bugzilla.gnome.org/show_bug.cgi?id=723352
This commit is contained in:
parent
b5f8b556e9
commit
1b58bbf3ad
2 changed files with 4 additions and 0 deletions
|
@ -1630,6 +1630,9 @@ gst_h264_parse_sps_data (NalReader * nr, GstH264SPS * sps,
|
||||||
sps->crop_rect_y, width, height);
|
sps->crop_rect_y, width, height);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sps->fps_num_removed = 0;
|
||||||
|
sps->fps_den_removed = 1;
|
||||||
|
|
||||||
return TRUE;
|
return TRUE;
|
||||||
|
|
||||||
error:
|
error:
|
||||||
|
|
|
@ -710,6 +710,7 @@ struct _GstH264SPS
|
||||||
gint width, height;
|
gint width, height;
|
||||||
gint crop_rect_width, crop_rect_height;
|
gint crop_rect_width, crop_rect_height;
|
||||||
gint crop_rect_x, crop_rect_y;
|
gint crop_rect_x, crop_rect_y;
|
||||||
|
gint fps_num_removed, fps_den_removed; /* FIXME: remove */
|
||||||
gboolean valid;
|
gboolean valid;
|
||||||
|
|
||||||
/* Subset SPS extensions */
|
/* Subset SPS extensions */
|
||||||
|
|
Loading…
Reference in a new issue