Changeset 44678aacee917f399b83e171a2527cbb2875302f
- Timestamp:
- 12/02/08 21:20:24
(10 months ago)
- Author:
- Dennis van Amerongen <trax@videolan.org>
- git-committer:
- Dennis van Amerongen <trax@videolan.org> 1202847624 +0000
- git-parent:
[e07a781efffa02851e86c00d4d2d78dd8e1f2dff]
- git-author:
- Dennis van Amerongen <trax@videolan.org> 1202847624 +0000
- Message:
* extras/contrib/src/x264-svn-win32.patch: add threads count debug info to check how many threads x264 will use (threads 0 is default and will make libx264 automagically set threads = cores * 1.5) and whether win32-pthread works as expected (libx264 can report not compiled with pthread and forces threads = 1)
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r78c9452 |
r44678aa |
|
| 95 | 95 | $(if $(SONAME), install -m 755 $(SONAME) $(DESTDIR)$(libdir)) |
|---|
| 96 | 96 | |
|---|
| | 97 | |
|---|
| | 98 | Index: encoder/encoder.c |
|---|
| | 99 | =================================================================== |
|---|
| | 100 | --- encoder/encoder.c (revision 736) |
|---|
| | 101 | +++ encoder/encoder.c (working copy) |
|---|
| | 102 | @@ -360,6 +360,7 @@ |
|---|
| | 103 | h->param.b_pre_scenecut = 1; |
|---|
| | 104 | #endif |
|---|
| | 105 | } |
|---|
| | 106 | + x264_log( h, X264_LOG_DEBUG, "using threads = %d\n", h->param.i_threads ); |
|---|
| | 107 | |
|---|
| | 108 | if( h->param.b_interlaced ) |
|---|
| | 109 | { |
|---|