2012-11-03 13:06:53 +00:00
|
|
|
/*
|
|
|
|
* This file is part of MPlayer.
|
|
|
|
*
|
|
|
|
* MPlayer 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.
|
|
|
|
*
|
|
|
|
* MPlayer 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 MPlayer; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <libavutil/avutil.h>
|
|
|
|
#include <libavutil/samplefmt.h>
|
|
|
|
#include "format.h"
|
|
|
|
#include "fmt-conversion.h"
|
|
|
|
|
|
|
|
static const struct {
|
|
|
|
enum AVSampleFormat sample_fmt;
|
|
|
|
int fmt;
|
|
|
|
} audio_conversion_map[] = {
|
|
|
|
{AV_SAMPLE_FMT_U8, AF_FORMAT_U8},
|
2013-11-15 20:25:05 +00:00
|
|
|
{AV_SAMPLE_FMT_S16, AF_FORMAT_S16},
|
|
|
|
{AV_SAMPLE_FMT_S32, AF_FORMAT_S32},
|
|
|
|
{AV_SAMPLE_FMT_FLT, AF_FORMAT_FLOAT},
|
|
|
|
{AV_SAMPLE_FMT_DBL, AF_FORMAT_DOUBLE},
|
2012-11-03 13:06:53 +00:00
|
|
|
|
2013-11-10 22:10:16 +00:00
|
|
|
{AV_SAMPLE_FMT_U8P, AF_FORMAT_U8P},
|
|
|
|
{AV_SAMPLE_FMT_S16P, AF_FORMAT_S16P},
|
|
|
|
{AV_SAMPLE_FMT_S32P, AF_FORMAT_S32P},
|
|
|
|
{AV_SAMPLE_FMT_FLTP, AF_FORMAT_FLOATP},
|
|
|
|
{AV_SAMPLE_FMT_DBLP, AF_FORMAT_DOUBLEP},
|
|
|
|
|
2012-11-03 13:06:53 +00:00
|
|
|
{AV_SAMPLE_FMT_NONE, 0},
|
|
|
|
};
|
|
|
|
|
|
|
|
enum AVSampleFormat af_to_avformat(int fmt)
|
|
|
|
{
|
2013-12-21 17:29:42 +00:00
|
|
|
for (int i = 0; audio_conversion_map[i].fmt; i++) {
|
2012-11-03 13:06:53 +00:00
|
|
|
if (audio_conversion_map[i].fmt == fmt)
|
2013-12-21 17:29:42 +00:00
|
|
|
return audio_conversion_map[i].sample_fmt;
|
|
|
|
}
|
2013-12-23 20:24:41 +00:00
|
|
|
return AV_SAMPLE_FMT_NONE;
|
2012-11-03 13:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int af_from_avformat(enum AVSampleFormat sample_fmt)
|
|
|
|
{
|
2013-12-21 17:29:42 +00:00
|
|
|
for (int i = 0; audio_conversion_map[i].fmt; i++) {
|
2012-11-03 13:06:53 +00:00
|
|
|
if (audio_conversion_map[i].sample_fmt == sample_fmt)
|
2013-12-21 17:29:42 +00:00
|
|
|
return audio_conversion_map[i].fmt;
|
2012-11-03 13:06:53 +00:00
|
|
|
}
|
2013-12-21 17:29:42 +00:00
|
|
|
return 0;
|
2012-11-03 13:06:53 +00:00
|
|
|
}
|