Martin Storsjö
45c322a8ae
Reduce the number of rounds in DecoderCrashTest
...
Currently this one single test accounts for 12-20% of the total
runtime of running the unit test suite.
2014-11-14 10:41:21 +02:00
ruil2
606da1a97d
Merge pull request #1531 from mstorsjo/use-right-type
...
Use the right data type for a variable
2014-11-14 16:30:17 +08:00
Martin Storsjö
9ec743c156
Use the right data type for a variable
...
Both pNalLengthInByte[] that are accumulated, and sFbi.iFrameSizeInBytes
that it is compared to, are plain 'int', not 'uint32_t'.
This fixes warnings about comparison between signed and unsigned.
2014-11-14 09:47:49 +02:00
huili2
0d16fd61b2
add EC method to freeze sequence when resolution changed and decoding IDR error
2014-11-13 19:26:10 -08:00
ruil2
703bbef128
Merge pull request #1530 from sijchen/after_review
...
[Encoder] add total length in encoder output and complete statistics
2014-11-14 11:20:45 +08:00
Sijia Chen
b56b8725fc
add total length in encoder output and complete most of the statistis calculation
2014-11-13 13:56:58 -08:00
ruil2
aed7b2316c
Merge pull request #1528 from mstorsjo/fix-warnings
...
Cast to the right data type to avoid comparison warnings in gcc
2014-11-13 17:17:41 +08:00
Martin Storsjö
2453676960
Cast to the right data type to avoid comparison warnings in gcc
2014-11-13 10:48:45 +02:00
HaiboZhu
7a2e536e44
Merge pull request #1525 from dongzha/FixbuginMVClip
...
fix mv clip at right boarder
2014-11-13 14:01:45 +08:00
ruil2
66165a65d5
add return value processing
2014-11-13 13:26:14 +08:00
sijchen
b3922b1d3a
Merge pull request #1519 from ruil2/max_nal_size
...
add maxnalsize control for gmp wrapper
2014-11-12 20:44:24 -08:00
dong zhang
e4f114e006
fix mv clip at right boarder
2014-11-13 10:48:35 +08:00
dongzha
429ccb38a8
Merge pull request #1524 from huili2/parse_err_return_bug_fix
...
fix bug of parse error return for VCL data
2014-11-12 13:18:08 +08:00
ruil2
9ba0a1d977
Merge pull request #1522 from sijchen/after_review
...
[Encoder] fix a calculation of fAverageFrameRate
2014-11-12 12:29:13 +08:00
huili2
2527cf5d0b
fix bug of parse error return for VCL data
2014-11-11 19:23:58 -08:00
Sijia Chen
cd5928d397
fix a calculation of fAverageFrameRate
2014-11-11 16:12:38 -08:00
sijchen
f42c9fae42
Merge pull request #1518 from huili2/ec_UT_0_bugfix
...
EC UT fail bug fix
2014-11-11 14:52:28 -08:00
sijchen
a37f1abe5e
Merge pull request #1517 from ruil2/cabac_qp
...
fix cabac encoding bug -- don't get the correct previous mb qp
2014-11-11 14:52:04 -08:00
ruil2
128546b992
add maxnalsize control for gmp wrapper
2014-11-11 14:18:02 +08:00
ruil2
560fcf17fd
rename parameters
2014-11-11 12:21:01 +08:00
huili2
fd45e7ff15
EC UT fail bug fix
2014-11-10 17:56:26 -08:00
sijchen
9512515a41
Merge pull request #1515 from ruil2/add_nal_trace
...
add some traces for bitstream output
2014-11-10 15:00:08 -08:00
ruil2
24823621e1
Merge pull request #1516 from mstorsjo/remove-duplicated-field
...
Remove a duplicated field in SWelsSvcCodingParam
2014-11-10 15:56:51 +08:00
ruil2
c31511257b
fix cabac encoding bug -- don't get the correct previous mb qp
2014-11-10 15:34:49 +08:00
ruil2
1c44c43b8a
add some traces for bitstream output
2014-11-10 15:20:25 +08:00
Martin Storsjö
0aa77d2985
Remove a duplicated field in SWelsSvcCodingParam
...
The same field already exists in SEncParamExt. When the
initialization was deduplicated in ac404ce, this lead to
reading the now uninitialized field in SWelsSvcCodingParam,
instead of the properly initialized one in the base class.
2014-11-10 09:03:18 +02:00
sijchen
8b49f98475
Merge pull request #1507 from ruil2/init
...
remove repeat initialization
2014-11-09 18:07:21 -08:00
ruil2
fc811a80fb
Merge pull request #1512 from mstorsjo/add-float-cast
...
Add a cast when converting from double to float
2014-11-09 09:36:21 +08:00
ruil2
843955bc06
Merge pull request #1511 from mstorsjo/check-fread-return-value
...
Check the return value of fread
2014-11-09 09:35:26 +08:00
Ethan Hugg
a7b22795bf
Merge pull request #1510 from mstorsjo/unsigned-int-literals
...
Change integer literals to unsigned to avoid warnings about comparison between signed and unsigned
2014-11-07 09:49:00 -08:00
Ethan Hugg
3c753c42b8
Merge pull request #1509 from mstorsjo/fix-warnings-cast
...
Add casts to avoid warnings about comparison between signed and unsigned
2014-11-07 09:46:33 -08:00
Ethan Hugg
067fa09781
Merge pull request #1508 from mstorsjo/remove-unused-variables
...
Remove unused variables
2014-11-07 09:45:52 -08:00
Martin Storsjö
c8afd15681
Add a cast when converting from double to float
...
This fixes warnings with MSVC.
2014-11-07 11:41:59 +02:00
Martin Storsjö
80bfc43df5
Check the return value of fread
...
This silences warnings on linux/gcc.
2014-11-07 11:24:30 +02:00
Martin Storsjö
50e2eb5e3c
Change integer literals to unsigned to avoid warnings about comparison between signed and unsigned
...
This fixes warnings in gcc.
2014-11-07 11:19:19 +02:00
Martin Storsjö
2b9f4f6607
Add casts to avoid warnings about comparison between signed and unsigned
...
This fixes warnings with gcc.
2014-11-07 11:17:44 +02:00
Martin Storsjö
08c07e4b8f
Remove unused variables
...
This fixes warnings with clang and gcc.
2014-11-07 11:12:51 +02:00
ruil2
ac404ce69d
remove repeat initialization
2014-11-07 14:58:43 +08:00
HaiboZhu
44013d4cd5
Merge pull request #1504 from syureyi/android_bugfix
...
android platform bug fix
2014-11-06 21:31:03 +08:00
dongzha
789603a8b1
Merge pull request #1503 from huili2/ec_crossIDR
...
enable cross IDR EC method
2014-11-06 17:24:17 +08:00
zhuiling
7fa6c576e3
android platform bug fix
2014-11-06 17:15:42 +08:00
dongzha
0fa667ac5f
Merge pull request #1502 from dongzha/RemoveUglyCode
...
remove ugly MC code
2014-11-06 15:26:38 +08:00
dongzha
1a7826c6eb
remove ugly MC code
2014-11-06 14:44:33 +08:00
sijchen
5cb5c28331
Merge pull request #1500 from syureyi/decoderstatics
...
decoder statictis adding
2014-11-06 14:25:04 +08:00
zhuling13
45ef803e4d
decoder statictis adding
...
mem
mem
decstatictis
time change
time change
set decTime=0
2014-11-05 22:01:32 -08:00
huili2
3d21825901
Merge pull request #1497 from dongzha/FixCabacBug
...
fix cabac bug in deltaqp
2014-11-06 12:19:13 +08:00
dongzha
ba0351f569
fix cabac bug in deltaqp
2014-11-06 10:51:18 +08:00
sijchen
63180b9b36
Merge pull request #1494 from huili2/ec_final_crash_UT
...
add a simple UT for debugging decoder crash
2014-11-05 14:24:54 +08:00
ruil2
8ed4e83e93
Merge pull request #1490 from sijchen/after_review
...
[Encoder] Fixing for large number of slices
2014-11-04 15:12:38 +08:00
huili2
32697b046b
add a simple UT for debugging decoder crash
2014-11-03 23:05:34 -08:00