- Patch unmodified files in
https://review.tizen.org/gerrit/#/c/platform/core/api/mediatransporter/+/317656/
Change-Id: Id130f66a708772d7fa9c95028db930dcc79399ec
Name: capi-media-transporter
Summary: A Media Transporter library in Tizen Native API
-Version: 1.2.4
+Version: 1.2.5
Release: 0
Group: Multimedia/API
License: Apache-2.0
throw;
}
- GstBin* bin = GST_BIN(gst_bin_new("auditestbin"));
+ GstBin* bin = GST_BIN(gst_bin_new("audiotestbin"));
+ if (!bin)
+ throw MediaTransporterException(MTPR_ERROR_INVALID_OPERATION, "Failed to create audio test source bin");
try {
gst::_addElementsToBin(bin, elements);
}
GstBin* bin = GST_BIN(gst_bin_new("videotestbin"));
+ if (!bin)
+ throw MediaTransporterException(MTPR_ERROR_INVALID_OPERATION, "Failed to create video test source bin");
try {
gst::_addElementsToBin(bin, elements);