/* * 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 "config.h" #include "avutil.h" #include "avassert.h" /** * @file * various utility functions */ const char *av_get_media_type_string(enum AVMediaType media_type) { … } char av_get_picture_type_char(enum AVPictureType pict_type) { … } unsigned av_int_list_length_for_size(unsigned elsize, const void *list, uint64_t term) { … } char *av_fourcc_make_string(char *buf, uint32_t fourcc) { … } AVRational av_get_time_base_q(void) { … } void av_assert0_fpu(void) { … }