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
c9e700f0
Commit
c9e700f0
authored
Oct 02, 2012
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
decoder/flac: add ctor/dtor to struct flac_data
parent
3c2d73d1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
34 deletions
+17
-34
FLACCommon.cxx
src/decoder/FLACCommon.cxx
+11
-20
FLACCommon.hxx
src/decoder/FLACCommon.hxx
+5
-8
FLACDecoderPlugin.cxx
src/decoder/FLACDecoderPlugin.cxx
+1
-6
No files found.
src/decoder/FLACCommon.cxx
View file @
c9e700f0
...
...
@@ -34,31 +34,22 @@ extern "C" {
#include <assert.h>
void
flac_data_init
(
struct
flac_data
*
data
,
struct
decoder
*
decoder
,
struct
input_stream
*
input_stream
)
flac_data
::
flac_data
(
struct
decoder
*
_decoder
,
struct
input_stream
*
_input_stream
)
:
initialized
(
false
),
unsupported
(
false
),
total_frames
(
0
),
first_frame
(
0
),
next_frame
(
0
),
position
(
0
),
decoder
(
_decoder
),
input_stream
(
_input_stream
),
tag
(
nullptr
)
{
pcm_buffer_init
(
&
data
->
buffer
);
data
->
unsupported
=
false
;
data
->
initialized
=
false
;
data
->
total_frames
=
0
;
data
->
first_frame
=
0
;
data
->
next_frame
=
0
;
data
->
position
=
0
;
data
->
decoder
=
decoder
;
data
->
input_stream
=
input_stream
;
data
->
tag
=
nullptr
;
pcm_buffer_init
(
&
buffer
);
}
void
flac_data_deinit
(
struct
flac_data
*
data
)
flac_data
::~
flac_data
()
{
pcm_buffer_deinit
(
&
data
->
buffer
);
pcm_buffer_deinit
(
&
buffer
);
if
(
data
->
tag
!=
nullptr
)
tag_free
(
data
->
tag
);
if
(
tag
!=
nullptr
)
tag_free
(
tag
);
}
static
enum
sample_format
...
...
src/decoder/FLACCommon.hxx
View file @
c9e700f0
...
...
@@ -78,18 +78,15 @@ struct flac_data {
FLAC__uint64
next_frame
;
FLAC__uint64
position
;
struct
decoder
*
decoder
;
struct
input_stream
*
input_stream
;
struct
tag
*
tag
;
};
/* initializes a given FlacData struct */
void
flac_data_init
(
struct
flac_data
*
data
,
struct
decoder
*
decoder
,
struct
input_stream
*
input_stream
);
struct
tag
*
tag
;
void
flac_data_deinit
(
struct
flac_data
*
data
);
flac_data
(
struct
decoder
*
decoder
,
struct
input_stream
*
input_stream
);
~
flac_data
();
};
void
flac_metadata_common_cb
(
const
FLAC__StreamMetadata
*
block
,
struct
flac_data
*
data
);
...
...
src/decoder/FLACDecoderPlugin.cxx
View file @
c9e700f0
...
...
@@ -317,26 +317,23 @@ flac_decode_internal(struct decoder * decoder,
bool
is_ogg
)
{
FLAC__StreamDecoder
*
flac_dec
;
struct
flac_data
data
;
flac_dec
=
flac_decoder_new
();
if
(
flac_dec
==
nullptr
)
return
;
flac_data_init
(
&
data
,
decoder
,
input_stream
);
struct
flac_data
data
(
decoder
,
input_stream
);
data
.
tag
=
tag_new
();
FLAC__StreamDecoderInitStatus
status
=
stream_init
(
flac_dec
,
&
data
,
is_ogg
);
if
(
status
!=
FLAC__STREAM_DECODER_INIT_STATUS_OK
)
{
flac_data_deinit
(
&
data
);
FLAC__stream_decoder_delete
(
flac_dec
);
g_warning
(
"%s"
,
FLAC__StreamDecoderInitStatusString
[
status
]);
return
;
}
if
(
!
flac_decoder_initialize
(
&
data
,
flac_dec
,
0
))
{
flac_data_deinit
(
&
data
);
FLAC__stream_decoder_finish
(
flac_dec
);
FLAC__stream_decoder_delete
(
flac_dec
);
return
;
...
...
@@ -344,8 +341,6 @@ flac_decode_internal(struct decoder * decoder,
flac_decoder_loop
(
&
data
,
flac_dec
,
0
,
0
);
flac_data_deinit
(
&
data
);
FLAC__stream_decoder_finish
(
flac_dec
);
FLAC__stream_decoder_delete
(
flac_dec
);
}
...
...
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