X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=libavcodec%2Fxiph.h;h=afaece7cee9ed804a238b89aa75ec410a41aec13;hb=971177f751a6e2931232accceab438bce277bde8;hp=910ff37a10112bc7835933033917481a5b2a1204;hpb=efb775777f815f3140f79f58d3f756a3a4831235;p=ffmpeg diff --git a/libavcodec/xiph.h b/libavcodec/xiph.h index 910ff37a101..afaece7cee9 100644 --- a/libavcodec/xiph.h +++ b/libavcodec/xiph.h @@ -1,30 +1,30 @@ /* - * Copyright (C) 2007 FFmpeg Project + * Copyright (C) 2007 Libav Project * - * This file is part of FFmpeg. + * This file is part of Libav. * - * FFmpeg is free software; you can redistribute it and/or + * Libav 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, + * Libav 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 + * License along with Libav; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ #ifndef AVCODEC_XIPH_H #define AVCODEC_XIPH_H -#include "common.h" +#include "libavutil/common.h" /** - * Splits a single extradata buffer into the three headers that most + * Split a single extradata buffer into the three headers that most * Xiph codecs use. (e.g. Theora and Vorbis) * Works both with Matroska's packing and lavc's packing. * @@ -36,8 +36,8 @@ * @param[out] header_len The sizes of each of the three headers. * @return On error a negative value is returned, on success zero. */ -int ff_split_xiph_headers(uint8_t *extradata, int extradata_size, - int first_header_size, uint8_t *header_start[3], - int header_len[3]); +int avpriv_split_xiph_headers(uint8_t *extradata, int extradata_size, + int first_header_size, uint8_t *header_start[3], + int header_len[3]); -#endif // AVCODEC_XIPH_H +#endif /* AVCODEC_XIPH_H */