FFmpeg
Loading...
Searching...
No Matches
pafaudio.c
Go to the documentation of this file.
1/*
2 * Packed Animation File audio decoder
3 * Copyright (c) 2012 Paul B Mahol
4 *
5 * This file is part of FFmpeg.
6 *
7 * FFmpeg is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * FFmpeg is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with FFmpeg; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
24
25#include "avcodec.h"
26#include "codec_internal.h"
27#include "decode.h"
28#include "mathops.h"
29#include "paf.h"
30
32{
33 if (avctx->ch_layout.nb_channels != 2) {
34 av_log(avctx, AV_LOG_ERROR, "invalid number of channels\n");
36 }
37
41
42 return 0;
43}
44
46 int *got_frame, AVPacket *pkt)
47{
48 int16_t *output_samples;
49 const uint8_t *src = pkt->data;
50 int frames, ret, i, j;
51 int16_t cb[256];
52
54 if (frames < 1)
56
57 frame->nb_samples = PAF_SOUND_SAMPLES * frames;
58 if ((ret = ff_get_buffer(avctx, frame, 0)) < 0)
59 return ret;
60
61 output_samples = (int16_t *)frame->data[0];
62 // codebook of 256 16-bit samples and 8-bit indices to it
63 for (j = 0; j < frames; j++) {
64 for (i = 0; i < 256; i++)
65 cb[i] = sign_extend(AV_RL16(src + i * 2), 16);
66 src += 256 * 2;
67 // always 2 channels
68 for (i = 0; i < PAF_SOUND_SAMPLES * 2; i++)
69 *output_samples++ = cb[*src++];
70 }
71 *got_frame = 1;
72
73 return pkt->size;
74}
75
77 .p.name = "paf_audio",
78 CODEC_LONG_NAME("Amazing Studio Packed Animation File Audio"),
79 .p.type = AVMEDIA_TYPE_AUDIO,
81 .init = paf_audio_init,
83 .p.capabilities = AV_CODEC_CAP_DR1,
84};
const FFCodec ff_paf_audio_decoder
Definition pafaudio.c:76
Libavcodec external API header.
#define i(width, name, range_min, range_max)
Definition cbs_h264.c:63
Public libavutil channel layout APIs header.
#define FF_CODEC_DECODE_CB(func)
#define CODEC_LONG_NAME(str)
int ff_get_buffer(AVCodecContext *avctx, AVFrame *frame, int flags)
Get a buffer for a frame.
Definition decode.c:1777
static AVPacket * pkt
static AVFrame * frame
#define AV_CODEC_CAP_DR1
Codec uses get_buffer() or get_encode_buffer() for allocating buffers and supports custom allocators.
Definition codec.h:49
@ AV_CODEC_ID_PAF_AUDIO
Definition codec_id.h:517
#define AV_CHANNEL_LAYOUT_STEREO
void av_channel_layout_uninit(AVChannelLayout *channel_layout)
Free any allocated data in the channel layout and reset the channel count to 0.
#define AVERROR_INVALIDDATA
Invalid data found when processing input.
Definition error.h:61
#define AV_LOG_ERROR
Something went wrong and cannot losslessly be recovered.
Definition log.h:210
@ AVMEDIA_TYPE_AUDIO
Definition avutil.h:201
@ AV_SAMPLE_FMT_S16
signed 16 bits
Definition samplefmt.h:58
#define AV_RL16(p)
#define av_cold
Definition attributes.h:117
static av_const int sign_extend(int val, unsigned bits)
Definition mathops.h:135
#define PAF_SOUND_FRAME_SIZE
Definition paf.h:26
#define PAF_SOUND_SAMPLES
Definition paf.h:25
static int paf_audio_decode(AVCodecContext *avctx, AVFrame *frame, int *got_frame, AVPacket *pkt)
Definition pafaudio.c:45
static av_cold int paf_audio_init(AVCodecContext *avctx)
Definition pafaudio.c:31
An AVChannelLayout holds information about the channel layout of audio data.
int nb_channels
Number of channels in this layout.
main external API structure.
Definition avcodec.h:443
AVChannelLayout ch_layout
Audio channel layout.
Definition avcodec.h:1055
enum AVSampleFormat sample_fmt
audio sample format
Definition avcodec.h:1047
This structure describes decoded (raw) audio or video data.
Definition frame.h:472
This structure stores compressed data.
Definition packet.h:580
#define av_log(a,...)
#define src
Definition vp8dsp.c:248
static int frames
Definition movenc.c:67
static double cb(void *priv, double x, double y)
Definition vf_geq.c:247