Commit e6aba50a authored by Laurent Aimar's avatar Laurent Aimar

* mp4: handle DEMUX_GET_META (avoid a msg_Err)

parent 4580d2dc
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* mp4.c : MP4 file input module for vlc * mp4.c : MP4 file input module for vlc
***************************************************************************** *****************************************************************************
* Copyright (C) 2001-2004 VideoLAN * Copyright (C) 2001-2004 VideoLAN
* $Id: mp4.c,v 1.58 2004/01/30 14:27:48 fenrir Exp $ * $Id: mp4.c,v 1.59 2004/02/07 13:26:24 fenrir Exp $
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
...@@ -46,6 +46,10 @@ vlc_module_begin(); ...@@ -46,6 +46,10 @@ vlc_module_begin();
set_callbacks( Open, Close ); set_callbacks( Open, Close );
vlc_module_end(); vlc_module_end();
/* TODO:
* - DEMUX_GET_META and meta parsing
*/
/***************************************************************************** /*****************************************************************************
* Local prototypes * Local prototypes
*****************************************************************************/ *****************************************************************************/
...@@ -635,6 +639,9 @@ static int Control( input_thread_t *p_input, int i_query, va_list args ) ...@@ -635,6 +639,9 @@ static int Control( input_thread_t *p_input, int i_query, va_list args )
msg_Warn( p_input, "DEMUX_GET_FPS unimplemented !!" ); msg_Warn( p_input, "DEMUX_GET_FPS unimplemented !!" );
return VLC_EGENERIC; return VLC_EGENERIC;
case DEMUX_GET_META:
return VLC_EGENERIC;
default: default:
msg_Err( p_input, "control query unimplemented !!!" ); msg_Err( p_input, "control query unimplemented !!!" );
return demux_vaControlDefault( p_input, i_query, args ); return demux_vaControlDefault( p_input, i_query, args );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment