Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc
Commits
8c782846
Commit
8c782846
authored
Apr 17, 2012
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ffmpeg options were renamed
ffmpeg modules were renamed too some time ago
parent
39eaf8e0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
19 additions
and
19 deletions
+19
-19
modules/gui/hildon/maemo_callbacks.c
modules/gui/hildon/maemo_callbacks.c
+2
-2
modules/gui/macosx/simple_prefs.m
modules/gui/macosx/simple_prefs.m
+2
-2
modules/stream_out/record.c
modules/stream_out/record.c
+6
-6
modules/stream_out/standard.c
modules/stream_out/standard.c
+5
-5
projects/macosx/framework/Sources/VLCLibrary.m
projects/macosx/framework/Sources/VLCLibrary.m
+2
-2
share/lua/http/index.html
share/lua/http/index.html
+1
-1
share/lua/http/mobile.html
share/lua/http/mobile.html
+1
-1
No files found.
modules/gui/hildon/maemo_callbacks.c
View file @
8c782846
...
@@ -255,9 +255,9 @@ void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data )
...
@@ -255,9 +255,9 @@ void dropframe_cb( GtkMenuItem *menuitem, gpointer user_data )
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
user_data
;
intf_thread_t
*
p_intf
=
(
intf_thread_t
*
)
user_data
;
if
(
gtk_check_menu_item_get_active
(
GTK_CHECK_MENU_ITEM
(
menuitem
)
)
)
if
(
gtk_check_menu_item_get_active
(
GTK_CHECK_MENU_ITEM
(
menuitem
)
)
)
config_PutInt
(
p_intf
,
"
ffmpeg
-skip-frame"
,
1
);
config_PutInt
(
p_intf
,
"
avcodec
-skip-frame"
,
1
);
else
else
config_PutInt
(
p_intf
,
"
ffmpeg
-skip-frame"
,
0
);
config_PutInt
(
p_intf
,
"
avcodec
-skip-frame"
,
0
);
}
}
static
int
keyModifiersToVLC
(
GdkEventKey
*
event
)
static
int
keyModifiersToVLC
(
GdkEventKey
*
event
)
...
...
modules/gui/macosx/simple_prefs.m
View file @
8c782846
...
@@ -618,7 +618,7 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
...
@@ -618,7 +618,7 @@ static inline char * __config_GetLabel( vlc_object_t *p_this, const char *psz_na
[
self
setupButton
:
o_input_avi_pop
forIntList
:
"avi-index"
];
[
self
setupButton
:
o_input_avi_pop
forIntList
:
"avi-index"
];
[
self
setupButton
:
o_input_rtsp_ckb
forBoolValue
:
"rtsp-tcp"
];
[
self
setupButton
:
o_input_rtsp_ckb
forBoolValue
:
"rtsp-tcp"
];
[
self
setupButton
:
o_input_skipLoop_pop
forIntList
:
"
ffmpeg
-skiploopfilter"
];
[
self
setupButton
:
o_input_skipLoop_pop
forIntList
:
"
avcodec
-skiploopfilter"
];
[
self
setupButton
:
o_input_mkv_preload_dir_ckb
forBoolValue
:
"mkv-preload-local-dir"
];
[
self
setupButton
:
o_input_mkv_preload_dir_ckb
forBoolValue
:
"mkv-preload-local-dir"
];
...
@@ -955,7 +955,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
...
@@ -955,7 +955,7 @@ static inline void save_module_list( intf_thread_t * p_intf, id object, const ch
SaveIntList
(
o_input_avi_pop
,
"avi-index"
);
SaveIntList
(
o_input_avi_pop
,
"avi-index"
);
config_PutInt
(
p_intf
,
"rtsp-tcp"
,
[
o_input_rtsp_ckb
state
]
);
config_PutInt
(
p_intf
,
"rtsp-tcp"
,
[
o_input_rtsp_ckb
state
]
);
SaveIntList
(
o_input_skipLoop_pop
,
"
ffmpeg
-skiploopfilter"
);
SaveIntList
(
o_input_skipLoop_pop
,
"
avcodec
-skiploopfilter"
);
config_PutInt
(
p_intf
,
"mkv-preload-local-dir"
,
[
o_input_mkv_preload_dir_ckb
state
]
);
config_PutInt
(
p_intf
,
"mkv-preload-local-dir"
,
[
o_input_mkv_preload_dir_ckb
state
]
);
...
...
modules/stream_out/record.c
View file @
8c782846
...
@@ -276,7 +276,7 @@ static const muxer_properties_t p_muxers[] = {
...
@@ -276,7 +276,7 @@ static const muxer_properties_t p_muxers[] = {
M
(
"wav"
,
"wav"
,
1
,
VLC_CODEC_U8
,
VLC_CODEC_S16L
,
M
(
"wav"
,
"wav"
,
1
,
VLC_CODEC_U8
,
VLC_CODEC_S16L
,
VLC_CODEC_S24L
,
VLC_CODEC_S32L
,
VLC_CODEC_FL32
),
VLC_CODEC_S24L
,
VLC_CODEC_S32L
,
VLC_CODEC_FL32
),
//M( "
ffmpeg
{mux=flac}", "flac", 1, VLC_CODEC_FLAC ), BROKEN
//M( "
avformat
{mux=flac}", "flac", 1, VLC_CODEC_FLAC ), BROKEN
M
(
"ogg"
,
"ogg"
,
INT_MAX
,
VLC_CODEC_VORBIS
,
VLC_CODEC_SPEEX
,
VLC_CODEC_FLAC
,
M
(
"ogg"
,
"ogg"
,
INT_MAX
,
VLC_CODEC_VORBIS
,
VLC_CODEC_SPEEX
,
VLC_CODEC_FLAC
,
VLC_CODEC_SUBT
,
VLC_CODEC_THEORA
,
VLC_CODEC_DIRAC
),
VLC_CODEC_SUBT
,
VLC_CODEC_THEORA
,
VLC_CODEC_DIRAC
),
...
@@ -427,11 +427,11 @@ static void OutputStart( sout_stream_t *p_stream )
...
@@ -427,11 +427,11 @@ static void OutputStart( sout_stream_t *p_stream )
#if 0
#if 0
// XXX ffmpeg sefault really easily if you try an unsupported codec
// XXX ffmpeg sefault really easily if you try an unsupported codec
// mov and avi at least segfault
// mov and avi at least segfault
{ "
ffmpeg
{mux=avi}", "avi" },
{ "
avformat
{mux=avi}", "avi" },
{ "
ffmpeg
{mux=mov}", "mov" },
{ "
avformat
{mux=mov}", "mov" },
{ "
ffmpeg
{mux=mp4}", "mp4" },
{ "
avformat
{mux=mp4}", "mp4" },
{ "
ffmpeg
{mux=nsv}", "nsv" },
{ "
avformat
{mux=nsv}", "nsv" },
{ "
ffmpeg
{mux=flv}", "flv" },
{ "
avformat
{mux=flv}", "flv" },
#endif
#endif
{
NULL
,
NULL
}
{
NULL
,
NULL
}
};
};
...
...
modules/stream_out/standard.c
View file @
8c782846
...
@@ -227,9 +227,9 @@ static const char *getMuxFromAlias( const char *psz_alias )
...
@@ -227,9 +227,9 @@ static const char *getMuxFromAlias( const char *psz_alias )
{
"ps"
,
"ps"
},
{
"ps"
,
"ps"
},
{
"mpeg1"
,
"mpeg1"
},
{
"mpeg1"
,
"mpeg1"
},
{
"wav"
,
"wav"
},
{
"wav"
,
"wav"
},
{
"flv"
,
"
ffmpeg
{mux=flv}"
},
{
"flv"
,
"
avformat
{mux=flv}"
},
{
"mkv"
,
"
ffmpeg
{mux=matroska}"
},
{
"mkv"
,
"
avformat
{mux=matroska}"
},
{
"webm"
,
"
ffmpeg
{mux=webm}"
},
{
"webm"
,
"
avformat
{mux=webm}"
},
};
};
if
(
!
psz_alias
)
if
(
!
psz_alias
)
...
@@ -303,9 +303,9 @@ static void checkAccessMux( sout_stream_t *p_stream, char *psz_access,
...
@@ -303,9 +303,9 @@ static void checkAccessMux( sout_stream_t *p_stream, char *psz_access,
msg_Err
(
p_stream
,
"mov and mp4 mux are only valid with file output"
);
msg_Err
(
p_stream
,
"mov and mp4 mux are only valid with file output"
);
else
if
(
!
strncmp
(
psz_access
,
"udp"
,
3
)
)
else
if
(
!
strncmp
(
psz_access
,
"udp"
,
3
)
)
{
{
if
(
!
strncmp
(
psz_mux
,
"ffmpeg"
,
6
)
)
if
(
!
strncmp
(
psz_mux
,
"ffmpeg"
,
6
)
||
!
strncmp
(
psz_mux
,
"avformat"
,
8
)
)
{
/* why would you use ffmpeg's ts muxer ? YOU DON'T LOVE VLC ??? */
{
/* why would you use ffmpeg's ts muxer ? YOU DON'T LOVE VLC ??? */
char
*
psz_ffmpeg_mux
=
var_CreateGetString
(
p_stream
,
"
ffmpeg
-mux"
);
char
*
psz_ffmpeg_mux
=
var_CreateGetString
(
p_stream
,
"
sout-avformat
-mux"
);
if
(
!
psz_ffmpeg_mux
||
strncmp
(
psz_ffmpeg_mux
,
"mpegts"
,
6
)
)
if
(
!
psz_ffmpeg_mux
||
strncmp
(
psz_ffmpeg_mux
,
"mpegts"
,
6
)
)
msg_Err
(
p_stream
,
"UDP output is only valid with TS mux"
);
msg_Err
(
p_stream
,
"UDP output is only valid with TS mux"
);
free
(
psz_ffmpeg_mux
);
free
(
psz_ffmpeg_mux
);
...
...
projects/macosx/framework/Sources/VLCLibrary.m
View file @
8c782846
...
@@ -61,8 +61,8 @@ static VLCLibrary * sharedLibrary = nil;
...
@@ -61,8 +61,8 @@ static VLCLibrary * sharedLibrary = nil;
[
defaultParams
addObject
:
@"--no-video-title-show"
];
// Don't show the title on overlay when starting to play
[
defaultParams
addObject
:
@"--no-video-title-show"
];
// Don't show the title on overlay when starting to play
[
defaultParams
addObject
:
@"--verbose=4"
];
// Let's not wreck the logs
[
defaultParams
addObject
:
@"--verbose=4"
];
// Let's not wreck the logs
#if TARGET_OS_IPHONE
#if TARGET_OS_IPHONE
[
defaultParams
addObject
:
@"--
ffmpeg
-fast"
];
[
defaultParams
addObject
:
@"--
avcodec
-fast"
];
[
defaultParams
addObject
:
@"--
ffmpeg
-skiploopfilter=all"
];
[
defaultParams
addObject
:
@"--
avcodec
-skiploopfilter=all"
];
[
defaultParams
addObject
:
@"--vout=vout_ios"
];
[
defaultParams
addObject
:
@"--vout=vout_ios"
];
[
defaultParams
addObject
:
@"--aout=audioqueue"
];
[
defaultParams
addObject
:
@"--aout=audioqueue"
];
#else
#else
...
...
share/lua/http/index.html
View file @
8c782846
...
@@ -169,7 +169,7 @@
...
@@ -169,7 +169,7 @@
if
(
$
(
'
#viewContainer
'
).
css
(
'
display
'
)
==
'
none
'
){
if
(
$
(
'
#viewContainer
'
).
css
(
'
display
'
)
==
'
none
'
){
$
(
'
#buttonViewer
'
).
click
();
$
(
'
#buttonViewer
'
).
click
();
}
}
var
defaultStream
=
'
new Current broadcast enabled input "
'
+
file
+
'
" output #transcode{vcodec=FLV1,vb=4096,fps=25,scale=1,acodec=mp3,ab=512,samplerate=44100,channels=2}:std{access=
'
+
$
(
'
#stream_protocol
'
).
val
()
+
'
,mux=
ffmpeg
{{mux=flv}},dst=0.0.0.0:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
()
+
'
}
'
;
var
defaultStream
=
'
new Current broadcast enabled input "
'
+
file
+
'
" output #transcode{vcodec=FLV1,vb=4096,fps=25,scale=1,acodec=mp3,ab=512,samplerate=44100,channels=2}:std{access=
'
+
$
(
'
#stream_protocol
'
).
val
()
+
'
,mux=
avformat
{{mux=flv}},dst=0.0.0.0:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
()
+
'
}
'
;
sendVLMCmd
(
'
del Current;
'
+
defaultStream
+
'
;control Current play
'
);
sendVLMCmd
(
'
del Current;
'
+
defaultStream
+
'
;control Current play
'
);
$
(
'
#player
'
).
attr
(
'
href
'
,
$
(
'
#stream_protocol
'
).
val
()
+
'
://
'
+
$
(
'
#stream_host
'
).
val
()
+
'
:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
());
$
(
'
#player
'
).
attr
(
'
href
'
,
$
(
'
#stream_protocol
'
).
val
()
+
'
://
'
+
$
(
'
#stream_host
'
).
val
()
+
'
:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
());
current_que
=
'
stream
'
;
current_que
=
'
stream
'
;
...
...
share/lua/http/mobile.html
View file @
8c782846
...
@@ -57,7 +57,7 @@
...
@@ -57,7 +57,7 @@
$
(
'
#buttonSout
'
).
click
(
function
(){
$
(
'
#buttonSout
'
).
click
(
function
(){
var
file
=
decodeURIComponent
(
$
(
'
#buttonPlay
'
).
attr
(
'
mrl
'
));
var
file
=
decodeURIComponent
(
$
(
'
#buttonPlay
'
).
attr
(
'
mrl
'
));
if
(
file
){
if
(
file
){
var
defaultStream
=
'
new Current broadcast enabled input "
'
+
file
+
'
" output #transcode{vcodec=FLV1,vb=4096,fps=25,scale=1,acodec=mp3,ab=512,samplerate=44100,channels=2}:std{access=
'
+
$
(
'
#stream_protocol
'
).
val
()
+
'
,mux=
ffmpeg
{{mux=flv}},dst=0.0.0.0:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
()
+
'
}
'
;
var
defaultStream
=
'
new Current broadcast enabled input "
'
+
file
+
'
" output #transcode{vcodec=FLV1,vb=4096,fps=25,scale=1,acodec=mp3,ab=512,samplerate=44100,channels=2}:std{access=
'
+
$
(
'
#stream_protocol
'
).
val
()
+
'
,mux=
avformat
{{mux=flv}},dst=0.0.0.0:
'
+
$
(
'
#stream_port
'
).
val
()
+
'
/
'
+
$
(
'
#stream_file
'
).
val
()
+
'
}
'
;
sendVLMCmd
(
'
del Current;
'
+
defaultStream
+
'
;control Current play
'
,
'
window.location="mobile_view.html"
'
);
sendVLMCmd
(
'
del Current;
'
+
defaultStream
+
'
;control Current play
'
,
'
window.location="mobile_view.html"
'
);
}
}
return
false
;
return
false
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment