Skip to content

Commit

Permalink
Prep for beta
Browse files Browse the repository at this point in the history
  • Loading branch information
LeifAndersen committed Aug 27, 2017
1 parent bf51f76 commit 12bdbe6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions LOG
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ Commit#: master
* Documentation Improvements to match the v0.2 API.
* Create stable/testing/unstable(master) branches.
* Fix deadlocks with the player, also solves sever segfaults
* Increased stability of Video (it no longer seems to segfault).
* Add infrastructure to lift ffmpeg logs into Racket logs (require libvid), disabled for this release.

v0.3-alpha.3
Date: 2017-08-09
Expand Down
4 changes: 3 additions & 1 deletion video/private/init.rkt
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
(set! stop-flag #t)
(thread-wait t)
(set! stop-ffmpeg-logging stop-ffmpeg-logging/not-running))))
(start-ffmpeg-logging)
;(start-ffmpeg-logging)

;; Init ffmpeg (ONCE PER PROCESS)
(when (ffmpeg-installed?)
Expand All @@ -113,6 +113,7 @@
(avformat-network-init)
(avdevice-register-all)))

#|
;; Set up the logger.
;; This must be done a new time the module is instantiated, and
;; we unset the logger after its finished.
Expand All @@ -121,6 +122,7 @@
(when (and (ffmpeg-installed?) (libvid-installed?))
(set-racket-log-callback callback-proc)
(av-log-set-callback ffmpeg-log-callback))
|#

;; Because portaudio has a nasty tendency to output a lot of garbadge to stdout, only
;; require it in situations where its actually needed.
Expand Down

0 comments on commit 12bdbe6

Please sign in to comment.