Commit 911e1f49 authored by Felix Paul Kühne's avatar Felix Paul Kühne

* fix transcoding using H.264 / H.263. The change in the wx-intf needs testing.

parent addc88a8
......@@ -134,11 +134,11 @@ static VLCWizard *_o_sharedInstance = nil;
_NS("DivX third version (useable with MPEG TS, MPEG1, ASF and OGG)"), \
@"MUX_TS", @"MUX_MPEG", @"MUX_ASF", @"MUX_OGG", @"NO", @"NO", @"NO", \
@"NO", @"NO", nil];
o_h263 = [NSArray arrayWithObjects: @"H.263", @"H263", \
o_h263 = [NSArray arrayWithObjects: @"H.263", @"h263", \
_NS("H263 is a video codec optimized for videoconference " \
"(low rates, useable with MPEG TS)"), @"MUX_TS", @"NO", @"NO", @"NO", \
@"NO", @"NO", @"NO", @"NO", @"NO", nil];
o_h264 = [NSArray arrayWithObjects: @"H.264", @"H264", \
o_h264 = [NSArray arrayWithObjects: @"H.264", @"h264", \
_NS("H264 is a new video codec (useable with MPEG TS and MP4)"), \
@"MUX_TS", @"MUX_MP4", @"NO", @"NO", @"NO", @"NO", @"NO", @"NO", \
@"NO", nil];
......
......@@ -2,7 +2,7 @@
* streamdata.cpp: streaming/transcoding data
*****************************************************************************
* Copyright (C) 2000-2005 the VideoLAN team
* $Id: wizard.cpp 7826 2004-05-30 14:43:12Z zorglub $
* $Id$
*
* Authors: Clment Stenac <zorglub@videolan.org>
*
......@@ -50,10 +50,10 @@ const struct codec vcodecs_array[] =
{ "DIVX 3" ,"DIV3",N_("DivX third version (useable with MPEG TS, MPEG1, ASF" \
" and OGG)") ,
{MUX_TS , MUX_MPEG , MUX_ASF , MUX_OGG , -1 , -1,-1,-1,-1 } },
{ "H 263" , "H263" , N_("H263 is a video codec optimized for videoconference " \
{ "H 263" , "h263" , N_("H263 is a video codec optimized for videoconference " \
"(low rates, useable with MPEG TS)") ,
{ MUX_TS, -1, -1,-1,-1,-1,-1,-1,-1 } },
{ "H 264" , "H264" , N_("H264 is a new video codec (useable with MPEG TS " \
{ "H 264" , "h264" , N_("H264 is a new video codec (useable with MPEG TS " \
"and MPEG4)") ,
{ MUX_TS, MUX_MP4, MUX_ASF,-1,-1,-1,-1,-1,-1 } },
{ "WMV 1" , "WMV1", N_("WMV (Windows Media Video) 7 (useable with MPEG TS, " \
......
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