You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-11-23 21:54:53 +02:00
The aim of this is twofold: a) Clang warns when setting a deprecated
field in a definition and because several of the widely set
AVCodec fields are deprecated, one gets several hundred warnings
from Clang for an ordinary build. Yet fortunately Clang (unlike GCC)
allows to disable deprecation warnings inside a definition, so
that one can create simple macros to set these fields that also suppress
deprecation warnings for Clang. This has already been done in
fdff1b9cbf for AVCodec.channel_layouts.
b) Using macros will allow to easily migrate these fields to internal ones.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
187 lines
6.8 KiB
C
187 lines
6.8 KiB
C
/*
|
|
* SMPTE 302M encoder
|
|
* Copyright (c) 2010 Google, Inc.
|
|
* Copyright (c) 2013 Darryl Wallace <wallacdj@gmail.com>
|
|
*
|
|
* This file is part of FFmpeg.
|
|
*
|
|
* FFmpeg is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* FFmpeg 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
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with FFmpeg; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#include "libavutil/channel_layout.h"
|
|
#include "libavutil/reverse.h"
|
|
#include "avcodec.h"
|
|
#include "codec_internal.h"
|
|
#include "encode.h"
|
|
#include "mathops.h"
|
|
#include "put_bits.h"
|
|
|
|
#define AES3_HEADER_LEN 4
|
|
|
|
typedef struct S302MEncContext {
|
|
uint8_t framing_index; /* Set for even channels on multiple of 192 samples */
|
|
} S302MEncContext;
|
|
|
|
static av_cold int s302m_encode_init(AVCodecContext *avctx)
|
|
{
|
|
S302MEncContext *s = avctx->priv_data;
|
|
|
|
if (avctx->ch_layout.nb_channels & 1 || avctx->ch_layout.nb_channels > 8) {
|
|
av_log(avctx, AV_LOG_ERROR,
|
|
"Encoding %d channel(s) is not allowed. Only 2, 4, 6 and 8 channels are supported.\n",
|
|
avctx->ch_layout.nb_channels);
|
|
return AVERROR(EINVAL);
|
|
}
|
|
|
|
switch (avctx->sample_fmt) {
|
|
case AV_SAMPLE_FMT_S16:
|
|
avctx->bits_per_raw_sample = 16;
|
|
break;
|
|
case AV_SAMPLE_FMT_S32:
|
|
if (avctx->bits_per_raw_sample > 20) {
|
|
if (avctx->bits_per_raw_sample > 24)
|
|
av_log(avctx, AV_LOG_WARNING, "encoding as 24 bits-per-sample\n");
|
|
avctx->bits_per_raw_sample = 24;
|
|
} else if (!avctx->bits_per_raw_sample) {
|
|
avctx->bits_per_raw_sample = 24;
|
|
} else if (avctx->bits_per_raw_sample <= 20) {
|
|
avctx->bits_per_raw_sample = 20;
|
|
}
|
|
}
|
|
|
|
avctx->frame_size = 0;
|
|
avctx->bit_rate = 48000 * avctx->ch_layout.nb_channels *
|
|
(avctx->bits_per_raw_sample + 4);
|
|
s->framing_index = 0;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int s302m_encode2_frame(AVCodecContext *avctx, AVPacket *avpkt,
|
|
const AVFrame *frame, int *got_packet_ptr)
|
|
{
|
|
S302MEncContext *s = avctx->priv_data;
|
|
const int nb_channels = avctx->ch_layout.nb_channels;
|
|
const int buf_size = AES3_HEADER_LEN +
|
|
(frame->nb_samples * nb_channels *
|
|
(avctx->bits_per_raw_sample + 4)) / 8;
|
|
int ret, c, channels;
|
|
uint8_t *o;
|
|
PutBitContext pb;
|
|
|
|
if (buf_size - AES3_HEADER_LEN > UINT16_MAX) {
|
|
av_log(avctx, AV_LOG_ERROR, "number of samples in frame too big\n");
|
|
return AVERROR(EINVAL);
|
|
}
|
|
|
|
if ((ret = ff_get_encode_buffer(avctx, avpkt, buf_size, 0)) < 0)
|
|
return ret;
|
|
|
|
o = avpkt->data;
|
|
init_put_bits(&pb, o, buf_size);
|
|
put_bits(&pb, 16, buf_size - AES3_HEADER_LEN);
|
|
put_bits(&pb, 2, (nb_channels - 2) >> 1); // number of channels
|
|
put_bits(&pb, 8, 0); // channel ID
|
|
put_bits(&pb, 2, (avctx->bits_per_raw_sample - 16) / 4); // bits per samples (0 = 16bit, 1 = 20bit, 2 = 24bit)
|
|
put_bits(&pb, 4, 0); // alignments
|
|
flush_put_bits(&pb);
|
|
o += AES3_HEADER_LEN;
|
|
|
|
if (avctx->bits_per_raw_sample == 24) {
|
|
const uint32_t *samples = (uint32_t *)frame->data[0];
|
|
|
|
for (c = 0; c < frame->nb_samples; c++) {
|
|
uint8_t vucf = s->framing_index == 0 ? 0x10: 0;
|
|
|
|
for (channels = 0; channels < nb_channels; channels += 2) {
|
|
o[0] = ff_reverse[(samples[0] & 0x0000FF00) >> 8];
|
|
o[1] = ff_reverse[(samples[0] & 0x00FF0000) >> 16];
|
|
o[2] = ff_reverse[(samples[0] & 0xFF000000) >> 24];
|
|
o[3] = ff_reverse[(samples[1] & 0x00000F00) >> 4] | vucf;
|
|
o[4] = ff_reverse[(samples[1] & 0x000FF000) >> 12];
|
|
o[5] = ff_reverse[(samples[1] & 0x0FF00000) >> 20];
|
|
o[6] = ff_reverse[(samples[1] & 0xF0000000) >> 28];
|
|
o += 7;
|
|
samples += 2;
|
|
}
|
|
|
|
s->framing_index++;
|
|
if (s->framing_index >= 192)
|
|
s->framing_index = 0;
|
|
}
|
|
} else if (avctx->bits_per_raw_sample == 20) {
|
|
const uint32_t *samples = (uint32_t *)frame->data[0];
|
|
|
|
for (c = 0; c < frame->nb_samples; c++) {
|
|
uint8_t vucf = s->framing_index == 0 ? 0x80: 0;
|
|
|
|
for (channels = 0; channels < nb_channels; channels += 2) {
|
|
o[0] = ff_reverse[ (samples[0] & 0x000FF000) >> 12];
|
|
o[1] = ff_reverse[ (samples[0] & 0x0FF00000) >> 20];
|
|
o[2] = ff_reverse[((samples[0] & 0xF0000000) >> 28) | vucf];
|
|
o[3] = ff_reverse[ (samples[1] & 0x000FF000) >> 12];
|
|
o[4] = ff_reverse[ (samples[1] & 0x0FF00000) >> 20];
|
|
o[5] = ff_reverse[ (samples[1] & 0xF0000000) >> 28];
|
|
o += 6;
|
|
samples += 2;
|
|
}
|
|
|
|
s->framing_index++;
|
|
if (s->framing_index >= 192)
|
|
s->framing_index = 0;
|
|
}
|
|
} else if (avctx->bits_per_raw_sample == 16) {
|
|
const uint16_t *samples = (uint16_t *)frame->data[0];
|
|
|
|
for (c = 0; c < frame->nb_samples; c++) {
|
|
uint8_t vucf = s->framing_index == 0 ? 0x10 : 0;
|
|
|
|
for (channels = 0; channels < nb_channels; channels += 2) {
|
|
o[0] = ff_reverse[ samples[0] & 0xFF];
|
|
o[1] = ff_reverse[(samples[0] & 0xFF00) >> 8];
|
|
o[2] = ff_reverse[(samples[1] & 0x0F) << 4] | vucf;
|
|
o[3] = ff_reverse[(samples[1] & 0x0FF0) >> 4];
|
|
o[4] = ff_reverse[(samples[1] & 0xF000) >> 12];
|
|
o += 5;
|
|
samples += 2;
|
|
|
|
}
|
|
|
|
s->framing_index++;
|
|
if (s->framing_index >= 192)
|
|
s->framing_index = 0;
|
|
}
|
|
}
|
|
|
|
*got_packet_ptr = 1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
const FFCodec ff_s302m_encoder = {
|
|
.p.name = "s302m",
|
|
CODEC_LONG_NAME("SMPTE 302M"),
|
|
.p.type = AVMEDIA_TYPE_AUDIO,
|
|
.p.id = AV_CODEC_ID_S302M,
|
|
.p.capabilities = AV_CODEC_CAP_DR1 | AV_CODEC_CAP_EXPERIMENTAL |
|
|
AV_CODEC_CAP_VARIABLE_FRAME_SIZE |
|
|
AV_CODEC_CAP_ENCODER_REORDERED_OPAQUE,
|
|
.priv_data_size = sizeof(S302MEncContext),
|
|
.init = s302m_encode_init,
|
|
FF_CODEC_ENCODE_CB(s302m_encode2_frame),
|
|
CODEC_SAMPLEFMTS(AV_SAMPLE_FMT_S32, AV_SAMPLE_FMT_S16),
|
|
CODEC_SAMPLERATES(48000),
|
|
};
|