Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-gpu
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-gpu
Commits
ae764f12
Commit
ae764f12
authored
Feb 10, 2013
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
avcodec audio encoder: add helper for deinterleaving
parent
de398308
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
0 deletions
+38
-0
modules/codec/avcodec/encoder.c
modules/codec/avcodec/encoder.c
+38
-0
No files found.
modules/codec/avcodec/encoder.c
View file @
ae764f12
...
...
@@ -32,6 +32,8 @@
# include "config.h"
#endif
#include <assert.h>
#include <vlc_common.h>
#include <vlc_aout.h>
#include <vlc_sout.h>
...
...
@@ -188,6 +190,42 @@ static const uint16_t mpeg4_default_non_intra_matrix[64] = {
23
,
24
,
25
,
27
,
28
,
30
,
31
,
33
,
};
/**
* Deinterleaves audio samples within a block of samples.
* \param dst destination buffer for planar samples
* \param src source buffer with interleaved samples
* \param samples number of samples (per channel/per plane)
* \param chans channels/planes count
* \param fourcc sample format (must be a linear sample format)
* \note The samples must be naturally aligned in memory.
* \warning Destination and source buffers MUST NOT overlap.
*/
static
void
Deinterleave
(
void
*
restrict
dst
,
const
void
*
restrict
src
,
unsigned
samples
,
unsigned
chans
,
vlc_fourcc_t
fourcc
)
{
#define DEINTERLEAVE_TYPE(type) \
do { \
type *d = dst; \
const type *s = src; \
for( size_t i = 0; i < chans; i++ ) { \
for( size_t j = 0, k = 0; j < samples; j++, k += chans ) \
*(d++) = s[k]; \
s++; \
} \
} while(0)
switch
(
fourcc
)
{
case
VLC_CODEC_U8
:
DEINTERLEAVE_TYPE
(
uint8_t
);
break
;
case
VLC_CODEC_S16N
:
DEINTERLEAVE_TYPE
(
uint16_t
);
break
;
case
VLC_CODEC_FL32
:
DEINTERLEAVE_TYPE
(
float
);
break
;
case
VLC_CODEC_S32N
:
DEINTERLEAVE_TYPE
(
int32_t
);
break
;
case
VLC_CODEC_FL64
:
DEINTERLEAVE_TYPE
(
double
);
break
;
default:
assert
(
0
);
}
#undef DEINTERLEAVE_TYPE
}
/*****************************************************************************
* OpenEncoder: probe the encoder
*****************************************************************************/
...
...
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