Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
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-2-2
Commits
ae9ae8a1
Commit
ae9ae8a1
authored
Mar 22, 2014
by
Ilkka Ollakka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
transcode: obsolete audio-sync
parent
bbd9cc3c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
11 deletions
+3
-11
modules/stream_out/transcode/transcode.c
modules/stream_out/transcode/transcode.c
+3
-11
No files found.
modules/stream_out/transcode/transcode.c
View file @
ae9ae8a1
...
...
@@ -132,11 +132,6 @@
"Runs the optional encoder thread at the OUTPUT priority instead of " \
"VIDEO." )
#define ASYNC_TEXT N_("Synchronise on audio track")
#define ASYNC_LONGTEXT N_( \
"This option will drop/duplicate video frames to synchronise the video " \
"track on the audio track." )
static
const
char
*
const
ppsz_deinterlace_type
[]
=
{
...
...
@@ -198,8 +193,8 @@ vlc_module_begin ()
ACHANS_LONGTEXT
,
false
)
add_integer
(
SOUT_CFG_PREFIX
"samplerate"
,
0
,
ARATE_TEXT
,
ARATE_LONGTEXT
,
true
)
add_bool
(
SOUT_CFG_PREFIX
"audio-sync"
,
false
,
ASYNC_TEXT
,
ASYNC_LONGTEXT
,
false
)
change_integer_range
(
0
,
48000
)
add_obsolete_bool
(
SOUT_CFG_PREFIX
"audio-sync"
)
/*Since 2.2.0 */
add_module_list
(
SOUT_CFG_PREFIX
"afilter"
,
"audio filter"
,
NULL
,
AFILTER_TEXT
,
AFILTER_LONGTEXT
,
false
)
...
...
@@ -230,7 +225,7 @@ static const char *const ppsz_sout_options[] = {
"scale"
,
"fps"
,
"width"
,
"height"
,
"vfilter"
,
"deinterlace"
,
"deinterlace-module"
,
"threads"
,
"aenc"
,
"acodec"
,
"ab"
,
"alang"
,
"afilter"
,
"samplerate"
,
"channels"
,
"senc"
,
"scodec"
,
"soverlay"
,
"sfilter"
,
"osd"
,
"
audio-sync"
,
"
high-priority"
,
"maxwidth"
,
"maxheight"
,
"sfilter"
,
"osd"
,
"high-priority"
,
"maxwidth"
,
"maxheight"
,
NULL
};
...
...
@@ -460,9 +455,6 @@ static int Open( vlc_object_t *p_this )
}
}
/* Audio settings */
p_sys
->
b_master_sync
=
__MAX
(
p_sys
->
b_master_sync
==
VLC_SUCCESS
,
var_GetBool
(
p_stream
,
SOUT_CFG_PREFIX
"audio-sync"
)
);
p_stream
->
pf_add
=
Add
;
p_stream
->
pf_del
=
Del
;
p_stream
->
pf_send
=
Send
;
...
...
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