Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
mpd
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Иван Мажукин
mpd
Commits
217b494c
Commit
217b494c
authored
Nov 08, 2009
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
encoder/null: removed empty close() method
That's an optional method.
parent
5ef62312
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
6 deletions
+0
-6
null_encoder.c
src/encoder/null_encoder.c
+0
-6
No files found.
src/encoder/null_encoder.c
View file @
217b494c
...
@@ -72,11 +72,6 @@ null_encoder_open(struct encoder *_encoder,
...
@@ -72,11 +72,6 @@ null_encoder_open(struct encoder *_encoder,
return
true
;
return
true
;
}
}
static
void
null_encoder_close
(
G_GNUC_UNUSED
struct
encoder
*
_encoder
)
{
}
static
bool
static
bool
null_encoder_write
(
struct
encoder
*
_encoder
,
null_encoder_write
(
struct
encoder
*
_encoder
,
const
void
*
data
,
size_t
length
,
const
void
*
data
,
size_t
length
,
...
@@ -115,7 +110,6 @@ const struct encoder_plugin null_encoder_plugin = {
...
@@ -115,7 +110,6 @@ const struct encoder_plugin null_encoder_plugin = {
.
init
=
null_encoder_init
,
.
init
=
null_encoder_init
,
.
finish
=
null_encoder_finish
,
.
finish
=
null_encoder_finish
,
.
open
=
null_encoder_open
,
.
open
=
null_encoder_open
,
.
close
=
null_encoder_close
,
.
write
=
null_encoder_write
,
.
write
=
null_encoder_write
,
.
read
=
null_encoder_read
,
.
read
=
null_encoder_read
,
};
};
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