1e1bcc9986
amd64. playdv can now play at the proper rate on amd64 machines. Changes in the port: * Remove inter-library dependencies (does not affect dependent ports). * Fix playdv double-free crash at EOF. * Can no longer be built with SEPARATE_BUILD, needs more investigation. * WANTLIB markers. From: Jacob Meuser <jakemsr@jakemsr.com>
17 lines
652 B
Plaintext
17 lines
652 B
Plaintext
$OpenBSD: patch-playdv_playdv_c,v 1.1 2005/02/22 22:24:36 naddy Exp $
|
|
--- playdv/playdv.c.orig Fri Feb 11 01:57:43 2005
|
|
+++ playdv/playdv.c Fri Feb 11 02:01:55 2005
|
|
@@ -508,9 +508,9 @@ restart:
|
|
seconds += dv_player->tv[2].tv_sec;
|
|
fprintf(stderr,"Processed %d frames in %05.2f seconds (%05.2f fps)\n",
|
|
frame_count, seconds, (double)frame_count/seconds);
|
|
- if(!dv_player->arg_disable_video) {
|
|
- dv_display_exit(dv_player->display);
|
|
- } /* if */
|
|
+ // if(!dv_player->arg_disable_video) {
|
|
+ // dv_display_exit(dv_player->display);
|
|
+ // } /* if */
|
|
if(!dv_player->arg_disable_audio) {
|
|
dv_oss_close(dv_player->oss);
|
|
} /* if */
|