Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-08-18Replace av_dlog with ff_dlog.Ronald S. Bultje
ff_dlog checks compilability, and is non-public. av_dlog is deprecated and no longer exists if FF_API_DLOG=0.
2015-07-27Merge commit 'def97856de6021965db86c25a732d78689bd6bb0'Michael Niedermayer
* commit 'def97856de6021965db86c25a732d78689bd6bb0': lavc: AV-prefix all codec capabilities Conflicts: cmdutils.c ffmpeg.c ffplay.c libavcodec/8svx.c libavcodec/aacenc.c libavcodec/ac3dec.c libavcodec/adpcm.c libavcodec/alac.c libavcodec/atrac3plusdec.c libavcodec/bink.c libavcodec/dnxhddec.c libavcodec/dvdec.c libavcodec/dvenc.c libavcodec/ffv1dec.c libavcodec/ffv1enc.c libavcodec/fic.c libavcodec/flacdec.c libavcodec/flacenc.c libavcodec/flvdec.c libavcodec/fraps.c libavcodec/frwu.c libavcodec/gifdec.c libavcodec/h261dec.c libavcodec/hevc.c libavcodec/iff.c libavcodec/imc.c libavcodec/libopenjpegdec.c libavcodec/libvo-aacenc.c libavcodec/libvorbisenc.c libavcodec/libvpxdec.c libavcodec/libvpxenc.c libavcodec/libx264.c libavcodec/mjpegbdec.c libavcodec/mjpegdec.c libavcodec/mpegaudiodec_float.c libavcodec/msmpeg4dec.c libavcodec/mxpegdec.c libavcodec/nvenc_h264.c libavcodec/nvenc_hevc.c libavcodec/pngdec.c libavcodec/qpeg.c libavcodec/ra288.c libavcodec/rv10.c libavcodec/s302m.c libavcodec/sp5xdec.c libavcodec/takdec.c libavcodec/tiff.c libavcodec/tta.c libavcodec/utils.c libavcodec/v210dec.c libavcodec/vp6.c libavcodec/vp9.c libavcodec/wavpack.c libavcodec/yop.c Merged-by: Michael Niedermayer <michael@niedermayer.cc>
2014-10-20avcodec/ass: add ASS trailing \r\n in one single placeClément Bœsch
2014-04-09avcodec/libzvbi-teletextdec: remove * 1Michael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2014-03-09libzvbi-teletextdec: split dvb packet to slicesMarton Balint
Instead of using the demux function of libzvbi to split the packet to slices (vbi lines), lets do it ourselves. - eliminates the 1 frame delay between page input and output - handles non-ascending line numbers more gracefully - enables us to return error codes on some invalid packets instead of silently ignoring them Signed-off-by: Marton Balint <cus@passwd.hu>
2014-03-09libzvbi-teletextdec: use av_dlog where possibleMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2014-02-22Fix FSF address in colormatrix and libzvbi license headers.Carl Eugen Hoyos
As reported by irc user aca. The files in compat/avisynth are maintained elsewhere, no changes.
2013-12-14libzvbi-teletextdec: set bitmap teletext canvas dimensionsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-12-14libzvbi-teletextdec: add chopped top row size to y offsetMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-12-14libzvbi-teletextdec: use defined constants for bitmap char width and heightMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-12-14libzvbi-teletextdec: cosmeticsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: propagate errors generated in page handlerMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: dont ignore memory allocation error silentlyMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: output ass subtitles instead of plain textMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: use AVBPrint for whitespace cleanupMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: use option constants instead of stringsMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: fix indentation after last commitMarton Balint
Signed-off-by: Marton Balint <cus@passwd.hu>
2013-11-10libzvbi-teletextdec: support multiple teletext pages in a single packetMarton Balint
After this patch, if a packet contains multiple teletext pages, the teletext decoder can return the fist page and store the remaining pages in memory, and return them to the user on the next calls to avcodec_decode_subtitle2. Signed-off-by: Marton Balint <cus@passwd.hu>
2013-10-29avcodec: fix old codec idsMichael Niedermayer
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
2013-10-04cosmetics: group remaining .name and .long_name.Clément Bœsch
See b2bed9325.
2013-09-02lavc: add teletext decoder using libzvbiMarton Balint
Based on a patch by Wolfram Gloger <wmglo@dent.med.uni-muenchen.de>. http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2012-December/136677.html The original patch was rebased by Tudor SUCIU <tudor.suciu@gmail.com>. Lots of additional features and fixes are made by me. Fixes ticket #2086. Changes since last version: - change default page to all pages Signed-off-by: Marton Balint <cus@passwd.hu> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>