summaryrefslogtreecommitdiff
path: root/src/libffmpeg/ffmpeg_decoder.h
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 23:53:39 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-04-04 23:53:39 +0200
commitca897ff0f84cdc7fc83449d1d06dcc9528edbb97 (patch)
tree313c6245e23b257a05f220c65c6cdf2d474323be /src/libffmpeg/ffmpeg_decoder.h
parent60a408c3446733dc752979c1eab579c25a4a4897 (diff)
parentf5dc5087a79d813259a674bd96ba4dea43fb254c (diff)
downloadxine-lib-ca897ff0f84cdc7fc83449d1d06dcc9528edbb97.tar.gz
xine-lib-ca897ff0f84cdc7fc83449d1d06dcc9528edbb97.tar.bz2
Merge with main repository.
--HG-- rename : src/libffmpeg/dvaudio_decoder.c => src/libffmpeg/ff_dvaudio_decoder.c rename : src/libffmpeg/video_decoder.c => src/libffmpeg/ff_video_decoder.c rename : src/libffmpeg/xine_decoder.h => src/libffmpeg/ffmpeg_decoder.h rename : src/libffmpeg/xine_encoder.c => src/libffmpeg/ffmpeg_encoder.c
Diffstat (limited to 'src/libffmpeg/ffmpeg_decoder.h')
-rw-r--r--src/libffmpeg/ffmpeg_decoder.h52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/libffmpeg/ffmpeg_decoder.h b/src/libffmpeg/ffmpeg_decoder.h
new file mode 100644
index 000000000..f005f09e5
--- /dev/null
+++ b/src/libffmpeg/ffmpeg_decoder.h
@@ -0,0 +1,52 @@
+/*
+ * Copyright (C) 2001-2005 the xine project
+ *
+ * This file is part of xine, a free video player.
+ *
+ * xine is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * xine 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 General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ *
+ * $Id: xine_decoder.h,v 1.7.2.1 2006/12/02 01:20:07 dgp85 Exp $
+ *
+ */
+
+#ifndef HAVE_XINE_DECODER_H
+#define HAVE_XINE_DECODER_H
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif
+
+#include <avcodec.h>
+
+typedef struct ff_codec_s {
+ uint32_t type;
+ enum CodecID id;
+ const char *name;
+} ff_codec_t;
+
+void *init_audio_plugin (xine_t *xine, void *data);
+void *init_video_plugin (xine_t *xine, void *data);
+
+extern decoder_info_t dec_info_ffmpeg_video;
+extern decoder_info_t dec_info_ffmpeg_wmv8;
+extern decoder_info_t dec_info_ffmpeg_wmv9;
+extern decoder_info_t dec_info_ffmpeg_audio;
+
+extern pthread_once_t once_control;
+void init_once_routine(void);
+
+extern pthread_mutex_t ffmpeg_lock;
+
+#endif