2010-01-08 01:53:49 +02:00
|
|
|
/*
|
2016-04-27 19:45:23 +02:00
|
|
|
* H.263 internal header
|
2010-01-08 01:53:49 +02:00
|
|
|
*
|
|
|
|
* This file is part of FFmpeg.
|
|
|
|
*
|
|
|
|
* FFmpeg 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,
|
|
|
|
* 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
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
#ifndef AVCODEC_H263_H
|
|
|
|
#define AVCODEC_H263_H
|
|
|
|
|
2010-03-08 20:43:52 +02:00
|
|
|
#include "libavutil/rational.h"
|
|
|
|
#include "mpegvideo.h"
|
|
|
|
|
2013-10-27 13:54:34 +03:00
|
|
|
#define FF_ASPECT_EXTENDED 15
|
2010-01-08 01:53:49 +02:00
|
|
|
|
2015-04-28 11:38:29 +02:00
|
|
|
#define H263_GOB_HEIGHT(h) ((h) <= 400 ? 1 : (h) <= 800 ? 2 : 4)
|
|
|
|
|
2010-01-08 01:53:49 +02:00
|
|
|
av_const int ff_h263_aspect_to_info(AVRational aspect);
|
2012-02-09 12:28:46 +03:00
|
|
|
int16_t *ff_h263_pred_motion(MpegEncContext * s, int block, int dir,
|
|
|
|
int *px, int *py);
|
2021-05-07 17:52:23 +02:00
|
|
|
void ff_h263_init_rl_inter(void);
|
2010-01-09 16:59:06 +02:00
|
|
|
void ff_h263_update_motion_val(MpegEncContext * s);
|
|
|
|
void ff_h263_loop_filter(MpegEncContext * s);
|
2010-01-08 01:53:49 +02:00
|
|
|
|
2011-05-17 17:58:04 +03:00
|
|
|
#endif /* AVCODEC_H263_H */
|