audio_fifo.c 6.91 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
/*
 * 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 <stdlib.h>
#include <stdio.h>
#include <inttypes.h>
22
#include "libavutil/mem.h"
23 24 25 26 27 28 29 30 31
#include "libavutil/audio_fifo.c"

#define MAX_CHANNELS    32


typedef struct TestStruct {
    const enum AVSampleFormat format;
    const int nb_ch;
    void const *data_planes[MAX_CHANNELS];
32
    const int nb_samples_pch;
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
} TestStruct;

static const uint8_t data_U8 [] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11                        };
static const int16_t data_S16[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11                        };
static const float   data_FLT[] = {0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0};

static const TestStruct test_struct[] = {
    {.format = AV_SAMPLE_FMT_U8   , .nb_ch = 1, .data_planes = {data_U8 ,             }, .nb_samples_pch = 12},
    {.format = AV_SAMPLE_FMT_U8P  , .nb_ch = 2, .data_planes = {data_U8 , data_U8 +6, }, .nb_samples_pch = 6 },
    {.format = AV_SAMPLE_FMT_S16  , .nb_ch = 1, .data_planes = {data_S16,             }, .nb_samples_pch = 12},
    {.format = AV_SAMPLE_FMT_S16P , .nb_ch = 2, .data_planes = {data_S16, data_S16+6, }, .nb_samples_pch = 6 },
    {.format = AV_SAMPLE_FMT_FLT  , .nb_ch = 1, .data_planes = {data_FLT,             }, .nb_samples_pch = 12},
    {.format = AV_SAMPLE_FMT_FLTP , .nb_ch = 2, .data_planes = {data_FLT, data_FLT+6, }, .nb_samples_pch = 6 }
};

48 49 50 51 52 53 54 55 56
static void free_data_planes(AVAudioFifo *afifo, void **output_data)
{
    int i;
    for (i = 0; i < afifo->nb_buffers; ++i){
        av_freep(&output_data[i]);
    }
    av_freep(&output_data);
}

57 58
static void ERROR(const char *str)
{
59 60
    fprintf(stderr, "%s\n", str);
    exit(1);
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
}

static void print_audio_bytes(const TestStruct *test_sample, void **data_planes, int nb_samples)
{
    int p, b, f;
    int byte_offset      = av_get_bytes_per_sample(test_sample->format);
    int buffers          = av_sample_fmt_is_planar(test_sample->format)
                                         ? test_sample->nb_ch : 1;
    int line_size        = (buffers > 1) ? nb_samples * byte_offset
                                         : nb_samples * byte_offset * test_sample->nb_ch;
    for (p = 0; p < buffers; ++p){
        for(b = 0; b < line_size; b+=byte_offset){
            for (f = 0; f < byte_offset; f++){
                int order = !HAVE_BIGENDIAN ? (byte_offset - f - 1) : f;
                printf("%02x", *((uint8_t*)data_planes[p] + b + order));
            }
            putchar(' ');
        }
        putchar('\n');
    }
}

static int read_samples_from_audio_fifo(AVAudioFifo* afifo, void ***output, int nb_samples)
{
85
    int i;
86
    int samples        = FFMIN(nb_samples, afifo->nb_samples);
87
    int tot_elements   = !av_sample_fmt_is_planar(afifo->sample_fmt)
88
                         ? samples : afifo->channels * samples;
89 90 91
    void **data_planes = av_malloc_array(afifo->nb_buffers, sizeof(void*));
    if (!data_planes)
        ERROR("failed to allocate memory!");
92 93
    if (*output)
        free_data_planes(afifo, *output);
94 95 96
    *output            = data_planes;

    for (i = 0; i < afifo->nb_buffers; ++i){
97 98 99
        data_planes[i] = av_malloc_array(tot_elements, afifo->sample_size);
        if (!data_planes[i])
            ERROR("failed to allocate memory!");
100 101 102 103 104
    }

    return av_audio_fifo_read(afifo, *output, nb_samples);
}

105
static int write_samples_to_audio_fifo(AVAudioFifo* afifo, const TestStruct *test_sample,
106 107 108 109 110
                                       int nb_samples, int offset)
{
    int offset_size, i;
    void *data_planes[MAX_CHANNELS];

111
    if(nb_samples > test_sample->nb_samples_pch - offset){
112 113
        return 0;
    }
114
    if(offset >= test_sample->nb_samples_pch){
115 116 117 118 119
        return 0;
    }
    offset_size  = offset * afifo->sample_size;

    for (i = 0; i < afifo->nb_buffers ; ++i){
120
        data_planes[i] = (uint8_t*)test_sample->data_planes[i] + offset_size;
121 122 123 124 125
    }

    return av_audio_fifo_write(afifo, data_planes, nb_samples);
}

126
static void test_function(const TestStruct *test_sample)
127 128 129
{
    int ret, i;
    void **output_data  = NULL;
130 131
    AVAudioFifo *afifo  = av_audio_fifo_alloc(test_sample->format, test_sample->nb_ch,
                                            test_sample->nb_samples_pch);
132 133 134
    if (!afifo) {
        ERROR("ERROR: av_audio_fifo_alloc returned NULL!");
    }
135
    ret = write_samples_to_audio_fifo(afifo, test_sample, test_sample->nb_samples_pch, 0);
136 137 138 139 140
    if (ret < 0){
        ERROR("ERROR: av_audio_fifo_write failed!");
    }
    printf("written: %d\n", ret);

141
    ret = write_samples_to_audio_fifo(afifo, test_sample, test_sample->nb_samples_pch, 0);
142 143 144 145 146 147
    if (ret < 0){
        ERROR("ERROR: av_audio_fifo_write failed!");
    }
    printf("written: %d\n", ret);
    printf("remaining samples in audio_fifo: %d\n\n", av_audio_fifo_size(afifo));

148
    ret = read_samples_from_audio_fifo(afifo, &output_data, test_sample->nb_samples_pch);
149
    if (ret < 0){
150
        ERROR("ERROR: av_audio_fifo_read failed!");
151 152
    }
    printf("read: %d\n", ret);
153
    print_audio_bytes(test_sample, output_data, ret);
154 155 156 157 158 159 160 161
    printf("remaining samples in audio_fifo: %d\n\n", av_audio_fifo_size(afifo));

    /* test av_audio_fifo_peek */
    ret = av_audio_fifo_peek(afifo, output_data, afifo->nb_samples);
    if (ret < 0){
        ERROR("ERROR: av_audio_fifo_peek failed!");
    }
    printf("peek:\n");
162
    print_audio_bytes(test_sample, output_data, ret);
163 164 165 166 167 168 169
    printf("\n");

    /* test av_audio_fifo_peek_at */
    printf("peek_at:\n");
    for (i = 0; i < afifo->nb_samples; ++i){
        ret = av_audio_fifo_peek_at(afifo, output_data, 1, i);
        if (ret < 0){
170
            ERROR("ERROR: av_audio_fifo_peek_at failed!");
171 172
        }
        printf("%d:\n", i);
173
        print_audio_bytes(test_sample, output_data, ret);
174 175 176 177 178 179 180 181 182 183 184 185 186
    }
    printf("\n");

    /* test av_audio_fifo_drain */
    ret = av_audio_fifo_drain(afifo, afifo->nb_samples);
    if (ret < 0){
        ERROR("ERROR: av_audio_fifo_drain failed!");
    }
    if (afifo->nb_samples){
        ERROR("drain failed to flush all samples in audio_fifo!");
    }

    /* deallocate */
187
    free_data_planes(afifo, output_data);
188 189 190 191 192 193 194 195 196
    av_audio_fifo_free(afifo);
}

int main(void)
{
    int t, tests = sizeof(test_struct)/sizeof(test_struct[0]);

    for (t = 0; t < tests; ++t){
        printf("\nTEST: %d\n\n", t+1);
197
        test_function(&test_struct[t]);
198 199 200
    }
    return 0;
}