tsmux: code style fix

trivial patch to add proper ( while checking for if(G_UNLIKELY())

https://bugzilla.gnome.org/show_bug.cgi?id=751305
This commit is contained in:
Vineeth TM 2015-06-22 10:58:00 +09:00 committed by Tim-Philipp Müller
parent 1a182e7a41
commit 39d657c274

View file

@ -917,12 +917,11 @@ tsmux_section_write_packet (GstMpegtsSectionType * type,
len, section->pi.stream_avail - len);
/* Push the packet without PCR */
if G_UNLIKELY
(!tsmux_packet_out (mux, packet_buffer, -1)) {
if (G_UNLIKELY (!tsmux_packet_out (mux, packet_buffer, -1))) {
/* Buffer given away */
packet_buffer = NULL;
goto fail;
}
}
packet_buffer = NULL;
section->pi.stream_avail -= len;