aboutsummaryrefslogtreecommitdiffstats
path: root/libavcodec/ccaption_dec.c
Commit message (Collapse)AuthorAgeFilesLines
* avcodec/ccaption_dec: Use simple array instead of AVBufferMichael Niedermayer2016-09-181-16/+11
| | | | | | | | | | | | This is simpler and fixes an out of array read, fixing it with AVBuffers would be more complex Fixes: e00d9e6e50e5495cc93fea41147b97bb/asan_heap-oob_12dcdbb_8798_b32a97ea722dd37bb5066812cc674552.mov Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michael@niedermayer.cc> (cherry picked from commit 752e6dfa3ea97e7901870bdd9e5a51f860607240) Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* Replace av_dlog with ff_dlog.Ronald S. Bultje2015-08-181-6/+7
| | | | | ff_dlog checks compilability, and is non-public. av_dlog is deprecated and no longer exists if FF_API_DLOG=0.
* avcodec/ccaption_dec: correcting line breaks in ccAnshul Maheshwari2015-05-031-1/+5
| | | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Reviewed-by: Clément Bœsch <u@pkh.me> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/ccaption_dec: Remove the GOTO statementPranav Vaish2015-04-021-3/+1
|
* avcodec/ccaption_dec: Added Debug logsAnshul Maheshwari2015-02-071-1/+6
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/ccaption_dec: handle error from ass_sub apiAnshul Maheshwari2015-02-071-1/+4
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/ccaption_dec: Added Roll up functionalityAnshul Maheshwari2015-02-071-29/+71
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/ccaption_dec: Adding color and fonts for future use in screenAnshul Maheshwari2015-01-301-0/+2
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* changed name of erase_display_memory to screen_changedAnshul Maheshwari2015-01-201-4/+4
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Initilaize array to known sizeAnshul Maheshwari2015-01-201-1/+1
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* CHAR_DEBUG to av_dlogAnshul Maheshwari2015-01-201-7/+5
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Cosmetic changes in cc_captionAnshul Maheshwari2015-01-201-39/+49
| | | | | Signed-off-by: Anshul Maheshwari <er.anshul.maheshwari@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avcodec/ccaption_dec: Fix typos and cosmeticsMichael Niedermayer2015-01-121-6/+6
| | | | | | | Found-by: ubitux (rest of found stuff left to the author to decide which way to fix) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Adding Closed caption SupportAnshul Maheshwari2015-01-111-0/+529
Signed-off-by: Anshul Maheshwari <anshul.ffmpeg@gmail.com> To test Closed caption use following command ffmpeg -f lavfi -i "movie=input.ts[out0+subcc]" -map s output.srt Signed-off-by: Michael Niedermayer <michaelni@gmx.at>