[vlc-devel] [PATCH 1/2] handle rtsp URI
Rafaël Carré
funman at videolan.org
Wed Feb 29 23:14:41 CET 2012
Le 2012-02-29 16:57, Thomas Clavier a écrit :
> ---
> vlc-android/AndroidManifest.xml | 11 ++++++++++-
> 1 files changed, 10 insertions(+), 1 deletions(-)
>
> diff --git a/vlc-android/AndroidManifest.xml b/vlc-android/AndroidManifest.xml
> index 749b3b1..ac1386a 100644
> --- a/vlc-android/AndroidManifest.xml
> +++ b/vlc-android/AndroidManifest.xml
> @@ -81,6 +81,15 @@
> android:mimeType="video/*"
> android:scheme="http" />
> </intent-filter>
> + <intent-filter>
> + <action android:name="android.intent.action.VIEW" />
> +
> + <category android:name="android.intent.category.DEFAULT" />
> +
> + <data
> + android:mimeType="video/*"
> + android:scheme="rtsp" />
> + </intent-filter>
> </activity>
> <activity
> android:name=".gui.audio.AudioBrowserActivity"
Can this be merged with the existing http entry?
We'll likely add more protocols (mms, etc)
More information about the vlc-devel
mailing list