Commit 8aeb9ed3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

vcd: implement ACCESS_GET_CONTENT_TYPE

parent d8aa9aae
...@@ -277,6 +277,10 @@ static int Control( access_t *p_access, int i_query, va_list args ) ...@@ -277,6 +277,10 @@ static int Control( access_t *p_access, int i_query, va_list args )
*va_arg( args, unsigned * ) = p_sys->i_current_seekpoint; *va_arg( args, unsigned * ) = p_sys->i_current_seekpoint;
break; break;
case ACCESS_GET_CONTENT_TYPE:
*va_arg( args, char ** ) = strdup("video/mpeg");
break;
case ACCESS_SET_TITLE: case ACCESS_SET_TITLE:
{ {
int i = va_arg( args, int ); int i = va_arg( args, int );
......
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