From: Gildas Bazin Date: Sun, 12 Dec 2004 17:39:09 +0000 (+0000) Subject: * modules/mux/ogg.c: added support for dirac. X-Git-Tag: 0.8.2~1505 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=36ec573e68e53f14cf1d24c62d7c8713dd91f845;p=vlc * modules/mux/ogg.c: added support for dirac. --- diff --git a/modules/mux/ogg.c b/modules/mux/ogg.c index 6f689e2f61..19dae8ac44 100644 --- a/modules/mux/ogg.c +++ b/modules/mux/ogg.c @@ -347,6 +347,7 @@ static int AddStream( sout_mux_t *p_mux, sout_input_t *p_input ) case VLC_FOURCC( 'W', 'M', 'V', '2' ): case VLC_FOURCC( 'W', 'M', 'V', '3' ): case VLC_FOURCC( 'S', 'N', 'O', 'W' ): + case VLC_FOURCC( 'd', 'r', 'a', 'c' ): p_stream->p_oggds_header = malloc( sizeof(oggds_header_t) ); memset( p_stream->p_oggds_header, 0, sizeof(oggds_header_t) ); p_stream->p_oggds_header->i_packet_type = PACKET_TYPE_HEADER;