Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
ee26f573
Commit
ee26f573
authored
May 01, 2014
by
Francois Cartegnie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
stream_filter: smooth: useless code cleanup
parent
42e6f502
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
+4
-5
modules/stream_filter/smooth/utils.c
modules/stream_filter/smooth/utils.c
+4
-5
No files found.
modules/stream_filter/smooth/utils.c
View file @
ee26f573
...
...
@@ -97,9 +97,8 @@ chunk_t *chunk_New( sms_stream_t* sms, uint64_t duration,\
void
chunk_Free
(
chunk_t
*
chunk
)
{
if
(
chunk
->
data
)
FREENULL
(
chunk
->
data
);
FREENULL
(
chunk
);
free
(
chunk
->
data
);
free
(
chunk
);
}
sms_stream_t
*
sms_New
(
void
)
...
...
@@ -175,10 +174,10 @@ void sms_queue_free( sms_queue_t* queue )
while
(
item
)
{
next
=
item
->
next
;
FREENULL
(
item
);
free
(
item
);
item
=
next
;
}
FREENULL
(
queue
);
free
(
queue
);
}
int
sms_queue_put
(
sms_queue_t
*
queue
,
const
uint64_t
value
)
...
...
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