Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
9418bdc6
Commit
9418bdc6
authored
Oct 04, 2009
by
Laurent Aimar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed scaletempo after "audio filter2" conversion.
The output timestamp/length wasn't set anymore.
parent
12aa5012
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
modules/audio_filter/scaletempo.c
modules/audio_filter/scaletempo.c
+5
-2
No files found.
modules/audio_filter/scaletempo.c
View file @
9418bdc6
...
...
@@ -493,8 +493,11 @@ static block_t *DoWork( filter_t * p_filter, block_t * p_in_buf )
p_in_buf
->
p_buffer
,
p_in_buf
->
i_buffer
,
p_out_buf
->
p_buffer
);
block_Release
(
p_in_buf
);
p_out_buf
->
i_buffer
=
bytes_out
;
p_out_buf
->
i_nb_samples
=
bytes_out
/
p
->
bytes_per_frame
;
p_out_buf
->
i_pts
=
p_in_buf
->
i_pts
;
p_out_buf
->
i_length
=
p_in_buf
->
i_length
;
block_Release
(
p_in_buf
);
return
p_out_buf
;
}
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