mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-11 09:55:36 +00:00
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:
parent
1a182e7a41
commit
39d657c274
1 changed files with 2 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue