summaryrefslogtreecommitdiffstats
path: root/audio/reorder_ch.c
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2012-12-03 20:16:17 +0100
committerRudolf Polzer <divverent@xonotic.org>2012-12-03 20:16:17 +0100
commit1085539bde0937dd156566b3dea957f3efbe0b29 (patch)
tree45cf9258bd5b4ff281c83f7a9c11738ecd001c32 /audio/reorder_ch.c
parent54d998d5e7f101312cf26e9fc4d199fa9fed33c2 (diff)
downloadmpv-1085539bde0937dd156566b3dea957f3efbe0b29.tar.bz2
mpv-1085539bde0937dd156566b3dea957f3efbe0b29.tar.xz
af_lavcac3enc, encode: support planar formats
This fixes operation with current ffmpeg releases. Note that this planarization is slow and should be reverted once proper planar audio support is there in mpv.
Diffstat (limited to 'audio/reorder_ch.c')
-rw-r--r--audio/reorder_ch.c36
1 files changed, 35 insertions, 1 deletions
diff --git a/audio/reorder_ch.c b/audio/reorder_ch.c
index 4b51a79439..330a807eae 100644
--- a/audio/reorder_ch.c
+++ b/audio/reorder_ch.c
@@ -1368,7 +1368,6 @@ void reorder_channel_nch(void *buf,
samples, samplesize);
}
-
#ifdef TEST
static void test_copy(int channels) {
@@ -1398,3 +1397,38 @@ int main(int argc, char *argv[]) {
}
#endif
+
+static inline void reorder_to_planar_(void *restrict out, const void *restrict in,
+ size_t size, size_t nchan, size_t nmemb) {
+ size_t i, c;
+ char *outptr = (char *) out;
+ size_t instep = nchan * size;
+
+ for (c = 0; c < nchan; ++c) {
+ const char *inptr = ((const char *) in) + c * size;
+ for (i = 0; i < nmemb; ++i, inptr += instep, outptr += size) {
+ memcpy(outptr, inptr, size);
+ }
+ }
+}
+
+void reorder_to_planar(void *restrict out, const void *restrict in,
+ size_t size, size_t nchan, size_t nmemb)
+{
+ // special case for mono (nothing to do...)
+ if (nchan == 1)
+ memcpy(out, in, size * nchan * nmemb);
+ // these calls exist to insert an inline copy of to_planar_ here with known
+ // value of size to help the compiler replace the memcpy calls by mov
+ // instructions
+ else if (size == 1)
+ reorder_to_planar_(out, in, 1, nchan, nmemb);
+ else if (size == 2)
+ reorder_to_planar_(out, in, 2, nchan, nmemb);
+ else if (size == 4)
+ reorder_to_planar_(out, in, 4, nchan, nmemb);
+ // general case (calls memcpy a lot, should actually never happen, but
+ // stays here for correctness purposes)
+ else
+ reorder_to_planar_(out, in, size, nchan, nmemb);
+}