libavcodec/v210dec.h
44d27736
 /*
d814a839
  * This file is part of FFmpeg.
44d27736
  *
d814a839
  * FFmpeg is free software; you can redistribute it and/or
44d27736
  * 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.
  *
d814a839
  * FFmpeg is distributed in the hope that it will be useful,
44d27736
  * 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
d814a839
  * License along with FFmpeg; if not, write to the Free Software
44d27736
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 #ifndef AVCODEC_V210DEC_H
 #define AVCODEC_V210DEC_H
 
 #include "libavutil/log.h"
 #include "libavutil/opt.h"
 
c7b9eab2
 
44d27736
 typedef struct {
     AVClass *av_class;
     int custom_stride;
     int aligned_input;
2f06b563
     int stride_warning_shown;
44d27736
     void (*unpack_frame)(const uint32_t *src, uint16_t *y, uint16_t *u, uint16_t *v, int width);
 } V210DecContext;
 
23a90768
 void ff_v210_x86_init(V210DecContext *s);
44d27736
 
 #endif /* AVCODEC_V210DEC_H */