Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
gst-plugins-good
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
George Kiagiadakis
gst-plugins-good
Commits
d7b2820b
Commit
d7b2820b
authored
Jan 09, 2017
by
Tim-Philipp Müller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix indentation
parent
781b5ac7
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
9 additions
and
9 deletions
+9
-9
gst/rtp/gstrtph263depay.c
gst/rtp/gstrtph263depay.c
+1
-1
gst/rtp/gstrtpsbcdepay.c
gst/rtp/gstrtpsbcdepay.c
+1
-1
gst/rtpmanager/rtpjitterbuffer.c
gst/rtpmanager/rtpjitterbuffer.c
+1
-1
gst/rtsp/gstrtspsrc.c
gst/rtsp/gstrtspsrc.c
+4
-4
sys/v4l2/gstv4l2bufferpool.c
sys/v4l2/gstv4l2bufferpool.c
+2
-2
No files found.
gst/rtp/gstrtph263depay.c
View file @
d7b2820b
...
...
@@ -313,7 +313,7 @@ gst_rtp_h263_depay_process (GstRTPBaseDepayload * depayload, GstRTPBuffer * rtp)
/* only mode A should be used when there is a picture start code, but
* buggy payloaders may send mode B/C in start of frame */
if
(
payload_len
>
4
&&
(
GST_READ_UINT32_BE
(
payload
)
>>
10
==
0x20
))
{
GST_DEBUG
(
"Mode %c with PSC => frame start"
,
"ABC"
[
F
+
P
]);
GST_DEBUG
(
"Mode %c with PSC => frame start"
,
"ABC"
[
F
+
P
]);
rtph263depay
->
start
=
TRUE
;
if
((
!
!
(
payload
[
4
]
&
0x02
))
!=
I
)
{
GST_DEBUG
(
"Wrong Picture Coding Type Flag in rtp header"
);
...
...
gst/rtp/gstrtpsbcdepay.c
View file @
d7b2820b
...
...
@@ -182,7 +182,7 @@ gst_rtp_sbc_depay_setcaps (GstRTPBaseDepayload * base, GstCaps * caps)
gst_caps_unref
(
outcaps
);
if
(
oldcaps
)
gst_caps_unref
(
oldcaps
);
gst_caps_unref
(
oldcaps
);
return
TRUE
;
...
...
gst/rtpmanager/rtpjitterbuffer.c
View file @
d7b2820b
...
...
@@ -690,7 +690,7 @@ queue_do_insert (RTPJitterBuffer * jbuf, GList * list, GList * item)
GstClockTime
rtp_jitter_buffer_calculate_pts
(
RTPJitterBuffer
*
jbuf
,
GstClockTime
dts
,
guint32
rtptime
,
GstClockTime
base_time
)
guint32
rtptime
,
GstClockTime
base_time
)
{
guint64
ext_rtptime
;
GstClockTime
gstrtptime
,
pts
;
...
...
gst/rtsp/gstrtspsrc.c
View file @
d7b2820b
...
...
@@ -5045,11 +5045,11 @@ gst_rtspsrc_loop_send_cmd (GstRTSPSrc * src, gint cmd, gint mask)
if
(
old
==
CMD_RECONNECT
)
{
GST_DEBUG_OBJECT
(
src
,
"ignore, we were reconnecting"
);
cmd
=
CMD_RECONNECT
;
}
else
if
(
old
==
CMD_CLOSE
)
{
}
else
if
(
old
==
CMD_CLOSE
)
{
/* our CMD_CLOSE might have interrutped CMD_LOOP. gst_rtspsrc_loop
* will send a CMD_WAIT which would cancel our pending CMD_CLOSE (if
* still pending). We just avoid it here by making sure CMD_CLOSE is
* still the pending command. */
* will send a CMD_WAIT which would cancel our pending CMD_CLOSE (if
* still pending). We just avoid it here by making sure CMD_CLOSE is
* still the pending command. */
GST_DEBUG_OBJECT
(
src
,
"ignore, we were closing"
);
cmd
=
CMD_CLOSE
;
}
else
if
(
old
!=
CMD_WAIT
)
{
...
...
sys/v4l2/gstv4l2bufferpool.c
View file @
d7b2820b
...
...
@@ -955,8 +955,8 @@ gst_v4l2_buffer_pool_flush_stop (GstBufferPool * bpool)
GST_OBJECT_LOCK
(
pool
);
gst_v4l2_buffer_pool_streamoff
(
pool
);
/* Remember buffers to re-enqueue */
memcpy
(
buffers
,
pool
->
buffers
,
sizeof
(
buffers
));
memset
(
pool
->
buffers
,
0
,
sizeof
(
pool
->
buffers
));
memcpy
(
buffers
,
pool
->
buffers
,
sizeof
(
buffers
));
memset
(
pool
->
buffers
,
0
,
sizeof
(
pool
->
buffers
));
GST_OBJECT_UNLOCK
(
pool
);
/* Reset our state */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment