h264parser: maintain minimal ABI compat

Because we can.

https://bugzilla.gnome.org/show_bug.cgi?id=723352
This commit is contained in:
Tim-Philipp Müller 2016-05-28 10:44:04 +01:00
parent b5f8b556e9
commit 1b58bbf3ad
2 changed files with 4 additions and 0 deletions

View file

@ -1630,6 +1630,9 @@ gst_h264_parse_sps_data (NalReader * nr, GstH264SPS * sps,
sps->crop_rect_y, width, height);
}
sps->fps_num_removed = 0;
sps->fps_den_removed = 1;
return TRUE;
error:

View file

@ -710,6 +710,7 @@ struct _GstH264SPS
gint width, height;
gint crop_rect_width, crop_rect_height;
gint crop_rect_x, crop_rect_y;
gint fps_num_removed, fps_den_removed; /* FIXME: remove */
gboolean valid;
/* Subset SPS extensions */