mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 00:51:37 +00:00
avutil/internal: Move avpriv_set_systematic_pal2 decl to imgutils_internal.h
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com> Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
parent
055ff8f0f6
commit
51cce6f37a
@ -22,8 +22,8 @@
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
#include "bmp.h"
|
||||
|
@ -30,6 +30,7 @@
|
||||
* @see http://www.w3.org/Graphics/GIF/spec-gif89a.txt
|
||||
*/
|
||||
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavutil/opt.h"
|
||||
#include "avcodec.h"
|
||||
|
@ -26,9 +26,9 @@
|
||||
* @see http://bespin.org/~qz/pc-gpe/pcx.txt
|
||||
*/
|
||||
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "codec_internal.h"
|
||||
#include "encode.h"
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*/
|
||||
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "libavutil/pixdesc.h"
|
||||
#include "avcodec.h"
|
||||
#include "bytestream.h"
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "libavutil/buffer.h"
|
||||
#include "libavutil/frame.h"
|
||||
#include "libavutil/imgutils.h"
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavutil/pixfmt.h"
|
||||
|
||||
|
@ -33,6 +33,7 @@
|
||||
#include "scale_eval.h"
|
||||
#include "video.h"
|
||||
#include "libavutil/eval.h"
|
||||
#include "libavutil/imgutils_internal.h"
|
||||
#include "libavutil/internal.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavutil/opt.h"
|
||||
|
@ -21,6 +21,7 @@
|
||||
|
||||
#include "libavutil/avassert.h"
|
||||
#include "libavutil/mem.h"
|
||||
#include "libavutil/pixfmt.h"
|
||||
#include "libavcodec/av1.h"
|
||||
#include "libavcodec/av1_parse.h"
|
||||
#include "libavcodec/defs.h"
|
||||
|
@ -25,7 +25,6 @@
|
||||
#include "common.h"
|
||||
#include "imgutils.h"
|
||||
#include "imgutils_internal.h"
|
||||
#include "internal.h"
|
||||
#include "intreadwrite.h"
|
||||
#include "log.h"
|
||||
#include "mathematics.h"
|
||||
|
@ -22,6 +22,10 @@
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
|
||||
#include "pixfmt.h"
|
||||
|
||||
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt);
|
||||
|
||||
int ff_image_copy_plane_uc_from_x86(uint8_t *dst, ptrdiff_t dst_linesize,
|
||||
const uint8_t *src, ptrdiff_t src_linesize,
|
||||
ptrdiff_t bytewidth, int height);
|
||||
|
@ -42,7 +42,6 @@
|
||||
#include "attributes.h"
|
||||
#include "libm.h"
|
||||
#include "macros.h"
|
||||
#include "pixfmt.h"
|
||||
|
||||
#ifndef attribute_align_arg
|
||||
#if ARCH_X86_32 && AV_GCC_VERSION_AT_LEAST(4,2)
|
||||
@ -152,8 +151,6 @@ void avpriv_request_sample(void *avc,
|
||||
#define SUINT32 uint32_t
|
||||
#endif
|
||||
|
||||
int avpriv_set_systematic_pal2(uint32_t pal[256], enum AVPixelFormat pix_fmt);
|
||||
|
||||
static av_always_inline av_const int avpriv_mirror(int x, int w)
|
||||
{
|
||||
if (!w)
|
||||
|
Loading…
Reference in New Issue
Block a user