/*1* Copyright (c) 2011 Stefano Sabatini2* Copyright (c) 2009 Giliard B. de Freitas <[email protected]>3* Copyright (C) 2002 Gunnar Monell <[email protected]>4*5* This file is part of FFmpeg.6*7* FFmpeg is free software; you can redistribute it and/or8* modify it under the terms of the GNU Lesser General Public9* License as published by the Free Software Foundation; either10* version 2.1 of the License, or (at your option) any later version.11*12* FFmpeg is distributed in the hope that it will be useful,13* but WITHOUT ANY WARRANTY; without even the implied warranty of14* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU15* Lesser General Public License for more details.16*17* You should have received a copy of the GNU Lesser General Public18* License along with FFmpeg; if not, write to the Free Software19* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA20*/2122#ifndef AVDEVICE_FBDEV_COMMON_H23#define AVDEVICE_FBDEV_COMMON_H2425#include <features.h>26#include <linux/fb.h>27#include "libavutil/pixfmt.h"2829struct AVDeviceInfoList;3031enum AVPixelFormat ff_get_pixfmt_from_fb_varinfo(struct fb_var_screeninfo *varinfo);3233const char* ff_fbdev_default_device(void);3435int ff_fbdev_get_device_list(struct AVDeviceInfoList *device_list);3637#endif /* AVDEVICE_FBDEV_COMMON_H */383940