00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00026 #ifndef AVCODEC_LIBSCHROEDINGER_H
00027 #define AVCODEC_LIBSCHROEDINGER_H
00028
00029 #include "config.h"
00030
00031 #if CONFIG_LIBSCHROEDINGER
00032
00033 #include <schroedinger/schrobitstream.h>
00034 #include <schroedinger/schroframe.h>
00035 #include "avcodec.h"
00036
00037 static const struct {
00038 enum PixelFormat ff_pix_fmt;
00039 SchroChromaFormat schro_pix_fmt;
00040 SchroFrameFormat schro_frame_fmt;
00041 } ffmpeg_schro_pixel_format_map[] = {
00042 { PIX_FMT_YUV420P, SCHRO_CHROMA_420, SCHRO_FRAME_FORMAT_U8_420 },
00043 { PIX_FMT_YUV422P, SCHRO_CHROMA_422, SCHRO_FRAME_FORMAT_U8_422 },
00044 { PIX_FMT_YUV444P, SCHRO_CHROMA_444, SCHRO_FRAME_FORMAT_U8_444 },
00045 };
00046
00051 SchroVideoFormatEnum ff_get_schro_video_format_preset (AVCodecContext *avccontext);
00052
00057 int ff_get_schro_frame_format (SchroChromaFormat schro_chroma_fmt,
00058 SchroFrameFormat *schro_frame_fmt);
00059
00060 #endif
00061 #endif