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
ca2439f5
Commit
ca2439f5
authored
Aug 23, 2021
by
Max Kellermann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
filter/ffmpeg: pass "channel_layout" instead of "channels" to buffersrc
Fixes part 1 of
https://github.com/MusicPlayerDaemon/MPD/issues/1235
parent
f9a0db71
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
73 additions
and
2 deletions
+73
-2
NEWS
NEWS
+2
-0
ChannelLayout.hxx
src/lib/ffmpeg/ChannelLayout.hxx
+66
-0
Filter.cxx
src/lib/ffmpeg/Filter.cxx
+5
-2
No files found.
NEWS
View file @
ca2439f5
ver 0.22.11 (not yet released)
* protocol
- fix "albumart" crash
* filter
- ffmpeg: pass "channel_layout" instead of "channels" to buffersrc
* Android
- build with NDK r23
...
...
src/lib/ffmpeg/ChannelLayout.hxx
0 → 100644
View file @
ca2439f5
/*
* Copyright 2003-2021 The Music Player Daemon Project
* http://www.musicpd.org
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#ifndef MPD_FFMPEG_CHANNEL_LAYOUT_HXX
#define MPD_FFMPEG_CHANNEL_LAYOUT_HXX
extern
"C"
{
#include <libavutil/channel_layout.h>
}
/**
* Convert a MPD channel count to a libavutil channel_layout bit mask.
*/
static
constexpr
uint64_t
ToFfmpegChannelLayout
(
unsigned
channels
)
noexcept
{
switch
(
channels
)
{
case
1
:
return
AV_CH_LAYOUT_MONO
;
case
2
:
return
AV_CH_LAYOUT_STEREO
;
case
3
:
return
AV_CH_LAYOUT_SURROUND
;
case
4
:
// TODO is this AV_CH_LAYOUT_2_2?
return
AV_CH_LAYOUT_QUAD
;
case
5
:
// TODO is this AV_CH_LAYOUT_5POINT0_BACK?
return
AV_CH_LAYOUT_5POINT0
;
case
6
:
return
AV_CH_LAYOUT_5POINT1
;
case
7
:
return
AV_CH_LAYOUT_6POINT1
;
case
8
:
return
AV_CH_LAYOUT_7POINT1
;
default
:
/* unreachable */
return
0
;
}
}
#endif
src/lib/ffmpeg/Filter.cxx
View file @
ca2439f5
...
...
@@ -18,10 +18,13 @@
*/
#include "Filter.hxx"
#include "ChannelLayout.hxx"
#include "SampleFormat.hxx"
#include "pcm/AudioFormat.hxx"
#include "util/RuntimeError.hxx"
#include <cinttypes>
#include <stdio.h>
namespace
Ffmpeg
{
...
...
@@ -57,10 +60,10 @@ FilterContext::MakeAudioBufferSource(AudioFormat &audio_format,
char
abuffer_args
[
256
];
sprintf
(
abuffer_args
,
"sample_rate=%u:sample_fmt=%s:channel
s=%u
:time_base=1/%u"
,
"sample_rate=%u:sample_fmt=%s:channel
_layout=0x%"
PRIx64
"
:time_base=1/%u"
,
audio_format
.
sample_rate
,
av_get_sample_fmt_name
(
src_format
),
audio_format
.
channels
,
ToFfmpegChannelLayout
(
audio_format
.
channels
)
,
audio_format
.
sample_rate
);
return
{
RequireFilterByName
(
"abuffer"
),
"abuffer"
,
abuffer_args
,
nullptr
,
graph_ctx
};
...
...
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