From 79489524037f62469bb9db74f442328351b294c9 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Tue, 10 Jun 2008 09:18:51 -0700 Subject: [PATCH] Decode H.264 with QuickTime on the Mac. --- modules/codec/quicktime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/codec/quicktime.c b/modules/codec/quicktime.c index b5e9c19c8f..6b4b6cdd76 100644 --- a/modules/codec/quicktime.c +++ b/modules/codec/quicktime.c @@ -66,7 +66,7 @@ static void Close( vlc_object_t * ); vlc_module_begin(); set_description( N_("QuickTime library decoder") ); - set_capability( "decoder", 10 ); + set_capability( "decoder", 100 ); set_category( CAT_INPUT ); set_subcategory( SUBCAT_INPUT_VCODEC ); set_callbacks( Open, Close ); @@ -229,6 +229,7 @@ static int Open( vlc_object_t *p_this ) switch( p_dec->fmt_in.i_codec ) { + case VLC_FOURCC('h','2','6','4'): /* H.264 */ case VLC_FOURCC('S','V','Q','3'): /* Sorenson v3 */ /* case VLC_FOURCC('S','V','Q','1'): Sorenson v1 case VLC_FOURCC('Z','y','G','o'): -- 2.39.2