/* * Copyright (C) 2011 Michael Niedermayer (michaelni@gmx.at) * * This file is part of libswresample * * libswresample 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. * * libswresample 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 libswresample; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef SWR_INTERNAL_H #define SWR_INTERNAL_H #include "swresample.h" typedef struct AudioData{ uint8_t *ch[SWR_CH_MAX]; uint8_t *data; int ch_count; int bps; int count; int planar; } AudioData; typedef struct SwrContext { //FIXME find unused fields const AVClass *av_class; int log_level_offset; void *log_ctx; enum AVSampleFormat in_sample_fmt; enum AVSampleFormat int_sample_fmt; ///