mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests: h264parse: _unmap buffer upon exit
This commit is contained in:
parent
bbbdbb536b
commit
cf942f4e1f
1 changed files with 3 additions and 1 deletions
|
@ -106,8 +106,10 @@ verify_buffer (buffer_verify_data_s * vdata, GstBuffer * buffer)
|
||||||
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
gst_buffer_map (buffer, &map, GST_MAP_READ);
|
||||||
fail_unless (map.size > 4);
|
fail_unless (map.size > 4);
|
||||||
/* only need to check avc output case */
|
/* only need to check avc output case */
|
||||||
if (GST_READ_UINT32_BE (map.data) == 0x01)
|
if (GST_READ_UINT32_BE (map.data) == 0x01) {
|
||||||
|
gst_buffer_unmap (buffer, &map);
|
||||||
return FALSE;
|
return FALSE;
|
||||||
|
}
|
||||||
/* header is merged in initial frame */
|
/* header is merged in initial frame */
|
||||||
if (vdata->buffer_counter == 0) {
|
if (vdata->buffer_counter == 0) {
|
||||||
guint8 *data = map.data;
|
guint8 *data = map.data;
|
||||||
|
|
Loading…
Reference in a new issue