blob: 70e9aaac97fd990054d1bd4d52b491fea70d21b1 [file] [log] [blame]
Tristan Matthews0a329cc2013-07-17 13:20:14 -04001/* $Id$ */
2/*
3 * Copyright (C) 2010-2011 Teluu Inc. (http://www.teluu.com)
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19
20/*
21 * This file contains common utilities that are useful for pjmedia components
22 * that use ffmpeg. This is not a public API.
23 */
24
25#ifndef __PJMEDIA_FFMPEG_UTIL_H__
26#define __PJMEDIA_FFMPEG_UTIL_H__
27
28#include <pjmedia/format.h>
29
30#ifdef _MSC_VER
31# ifndef __cplusplus
32# define inline _inline
33# endif
34# pragma warning(disable:4244) /* possible loss of data */
35#endif
36
37#include <libavutil/avutil.h>
38#include <libavcodec/avcodec.h>
39
40void pjmedia_ffmpeg_add_ref();
41void pjmedia_ffmpeg_dec_ref();
42
43pj_status_t pjmedia_format_id_to_PixelFormat(pjmedia_format_id fmt_id,
44 enum PixelFormat *pixel_format);
45
46pj_status_t PixelFormat_to_pjmedia_format_id(enum PixelFormat pf,
47 pjmedia_format_id *fmt_id);
48
49pj_status_t pjmedia_format_id_to_CodecID(pjmedia_format_id fmt_id,
50 enum CodecID *codec_id);
51
52pj_status_t CodecID_to_pjmedia_format_id(enum CodecID codec_id,
53 pjmedia_format_id *fmt_id);
54
55#endif /* __PJMEDIA_FFMPEG_UTIL_H__ */