Skip to content

Commit

Permalink
* Fix broken FFmpegFrameRecorder.setVideoCodecName() (issue #229)
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed Sep 22, 2015
1 parent cb5ff62 commit f3fcee1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@

* Fix broken `FFmpegFrameRecorder.setVideoCodecName()` ([issue #229](https://github.com/bytedeco/javacv/issues/229))
* Remove `FaceRecognition.java` sample, which requires the deprecated `opencv_legacy` module ([issue #200](https://github.com/bytedeco/javacv/issues/200))
* Fix potential crash in `ObjectFinder` with FLANN ([issue #210](https://github.com/bytedeco/javacv/issues/210))
* Add `FFmpegFrameFilter` to let users process `Frame` images with `libavfilter` easily ([issue #164](https://github.com/bytedeco/javacv/issues/164))
Expand Down
1 change: 1 addition & 0 deletions src/main/java/org/bytedeco/javacv/FFmpegFrameRecorder.java
Original file line number Diff line number Diff line change
Expand Up @@ -347,6 +347,7 @@ void startUnsafe() throws Exception {
release();
throw new Exception("avcodec_find_encoder() error: Video codec not found.");
}
oformat.video_codec(video_codec.id());

AVRational frame_rate = av_d2q(frameRate, 1001000);
AVRational supported_framerates = video_codec.supported_framerates();
Expand Down

0 comments on commit f3fcee1

Please sign in to comment.