summaryrefslogtreecommitdiff
path: root/src/dxr3/dxr3_mpeg_encoders.c
diff options
context:
space:
mode:
authorThibaut Mattern <tmattern@users.sourceforge.net>2005-02-09 20:03:18 +0000
committerThibaut Mattern <tmattern@users.sourceforge.net>2005-02-09 20:03:18 +0000
commit98ae0af69a0e10d5fe88414617d47ddd7eab1147 (patch)
treef8db6d101dfb2f3b0e1b6f2660d1d39f7ae0b270 /src/dxr3/dxr3_mpeg_encoders.c
parent3a2698a5975e3a9cc7f1f4c006677f664da2c194 (diff)
downloadxine-lib-98ae0af69a0e10d5fe88414617d47ddd7eab1147.tar.gz
xine-lib-98ae0af69a0e10d5fe88414617d47ddd7eab1147.tar.bz2
Finally commit the plugin loader improvements.
see my last mail about this stuff: http://thread.gmane.org/gmane.comp.video.xine.devel/12547 and this thread: http://thread.gmane.org/gmane.comp.video.xine.devel/11213 CVS patchset: 7395 CVS date: 2005/02/09 20:03:18
Diffstat (limited to 'src/dxr3/dxr3_mpeg_encoders.c')
-rw-r--r--src/dxr3/dxr3_mpeg_encoders.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dxr3/dxr3_mpeg_encoders.c b/src/dxr3/dxr3_mpeg_encoders.c
index 87328ac33..85089567f 100644
--- a/src/dxr3/dxr3_mpeg_encoders.c
+++ b/src/dxr3/dxr3_mpeg_encoders.c
@@ -17,7 +17,7 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*
- * $Id: dxr3_mpeg_encoders.c,v 1.22 2004/12/16 13:31:40 mroi Exp $
+ * $Id: dxr3_mpeg_encoders.c,v 1.23 2005/02/09 20:03:22 tmattern Exp $
*/
/* mpeg encoders for the dxr3 video out plugin.
@@ -547,7 +547,7 @@ int dxr3_lavc_init(dxr3_driver_t *drv, plugin_node_t *node)
int (*init)(dxr3_driver_t *);
int result;
- ffmpeg = dlopen(node->filename, RTLD_LAZY);
+ ffmpeg = dlopen(node->file->filename, RTLD_LAZY);
if (!ffmpeg) return 0;
init = dlsym(ffmpeg, "dxr3_encoder_init");