summaryrefslogtreecommitdiffstats
path: root/libavcodec/libx265.c
Commit message (Collapse)AuthorAgeFilesLines
...
| * libx265: Support SARDerek Buitenhuis2014-02-241-0/+10
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * libx265: Support 4:4:4Derek Buitenhuis2014-02-241-0/+23
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * libx265: Update API usageDerek Buitenhuis2014-02-241-3/+9
| | | | | | | | | | | | | | Framerate is now a sane rational instead of an integer, and inputDepth is changed to what it actually is. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * libx265: Remove redundant default param callDerek Buitenhuis2014-02-141-1/+0
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
| * libx265: Fix use of uninitialized input pictureDerek Buitenhuis2014-02-141-0/+2
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Remove unneeded bit depth checkDerek Buitenhuis2014-06-121-5/+0
| | | | | | | | | | | | This is no longer needed since the version bump. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Add 4:2:2 supportDerek Buitenhuis2014-06-121-3/+9
| | | | | | | | | | | | | | | | It is also not final yet, so require -strict experimental. Requires a bump to version 17. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Actually use X265_API_IMPORTSDerek Buitenhuis2014-06-121-4/+4
| | | | | | | | | | | | It obvously needs to be above the include statement. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Only set the SAR if it is validDerek Buitenhuis2014-04-101-7/+9
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Use 16-bit SARDerek Buitenhuis2014-04-101-2/+2
| | | | | | | | | | | | The spec says it is 16 bits. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Use x265_param_parse to set the SARDerek Buitenhuis2014-04-101-5/+6
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Use the repeat headers flag when not using global headersMarcus Gustafsson2014-03-311-39/+18
| | | | | | | | | | | | | | This allows proper muxing and seeking in things like MPEG-TS, by placing headers by random access points. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Only use one memcpy for headersDerek Buitenhuis2014-03-241-6/+1
| | | | | | | | | | | | They're guaranteed by the x265 API to be contiguous in memory. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Simple cosmetic fixDerek Buitenhuis2014-03-241-2/+3
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | avcodec/libx265: fill headers in extradataMichael Niedermayer2014-03-141-1/+8
| | | | | | | | | | | | Fixes Ticket3457 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libx265: Use ctx->vui. instead of ctx-> for some options A recent change in ↵sfan52014-03-061-5/+5
| | | | | | | | | | | | | | libx265 moved some options such as sar_width into a 'vui' struct. Signed-off-by: sfan5 <sfan5@live.de> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* | libx265: Use proper error codeDerek Buitenhuis2014-02-241-1/+1
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Properly handled dynamic linking with MSVCDerek Buitenhuis2014-02-241-0/+4
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Support SARDerek Buitenhuis2014-02-241-0/+10
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Support 4:4:4Derek Buitenhuis2014-02-241-0/+23
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Update API usageDerek Buitenhuis2014-02-241-3/+9
| | | | | | | | | | | | | | Framerate is now a sane rational instead of an integer, and inputDepth is changed to what it actually is. Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Remove redundant default param callDerek Buitenhuis2014-02-131-1/+0
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | libx265: Fix use of uninitialized input pictureDerek Buitenhuis2014-02-131-0/+2
| | | | | | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* | Merge commit '50ea93158d4c480f64069e8bd1da388486dcf4ba'Michael Niedermayer2014-02-131-1/+1
|\ \ | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | * commit '50ea93158d4c480f64069e8bd1da388486dcf4ba': Add libx265 encoder Conflicts: Changelog LICENSE configure libavcodec/allcodecs.c libavcodec/libx265.c libavcodec/version.h See: bb6b1731eba2fac424ff8ad3003fe58b308debd1 Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * Add libx265 encoderDerek Buitenhuis2014-02-121-0/+284
| | | | Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
* Add libx265 encoderDerek Buitenhuis2014-02-121-0/+284
Signed-off-by: Derek Buitenhuis <derek.buitenhuis@gmail.com>
OpenPOWER on IntegriCloud