diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2009-07-11 23:11:56 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2009-07-11 23:11:56 +0000 |
| commit | fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2 (patch) | |
| tree | b8a286f87871ce82c9024ae525f6434153f77b35 /apps/plugins/video.c | |
| parent | 34213c388bce18de3e5a609a3be5b4dfa075fee6 (diff) | |
| download | rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.zip rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.tar.gz rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.tar.bz2 rockbox-fa59ed6ae724b3f75c8ba35efcf7ce18f21e3ed2.tar.xz | |
Fix plugins for the changed pitch scale from r21781
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21794 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/video.c')
| -rw-r--r-- | apps/plugins/video.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/video.c b/apps/plugins/video.c index bd8a95e..6b0a47c 100644 --- a/apps/plugins/video.c +++ b/apps/plugins/video.c @@ -882,7 +882,7 @@ int main(char* filename) file_size = rb->filesize(fd); /* reset pitch value to ensure synchronous playback */ - rb->sound_set_pitch(1000); + rb->sound_set_pitch(PITCH_SPEED_100); /* init statistics */ rb->memset(&gStats, 0, sizeof(gStats)); |