summaryrefslogtreecommitdiff
path: root/libavformat/libavformat.v
Commit message (Collapse)AuthorAge
* lavf: stop exporting internal functionsJames Almer2014-08-11
| | | | | | | | | | Except for those currently used by ffserver. Signed-off-by: James Almer <jamrial@gmail.com> Also left some others that seemed used by applications other than ffserver Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavf/avio: rename url_feof() to avio_feof()James Almer2014-08-08
| | | | | | | It's a public function and should use the avio_ namespace Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavf: remove nonexistent functions from the version fileJames Almer2014-08-07
| | | | | Signed-off-by: James Almer <jamrial@gmail.com> Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dshow: Fix MSVC support, remove av_export, which was apparently unneeded anyway.rogerdpack2013-02-15
| | | | | | Also cleanup exported symbols Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* dshow: attempt to build shared as well as staticrogerdpack2013-02-06
| | | | Signed-off-by: rogerdpack <rogerpack2005@gmail.com>
* lavf: remove nonexistent symbolsPaul B Mahol2013-01-11
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* libavformat.v: export ffurl_protocol_nextMichael Niedermayer2012-09-13
| | | | | | | This is used by avidemux, and is likely usefull to others too. Patch by: gruntster (Avidemux Rev 7990 — 2012-05-30 13:02:27) Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* FireWire DV/HDV input device using libiec61883Georg Lippitsch2012-07-05
| | | | Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* libavformat.v: add ffio_set_buf_size() for ffserver.Michael Niedermayer2012-03-12
| | | | | | its inevitable with the current API Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* buildsys: Fix shared lib build of MPlayer.Ingo Brückl2012-02-11
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* buildsys: Fix shared lib build of ffserver.Michael Niedermayer2012-01-24
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* libavformat/libavformat.v: fix application name in commentMichael Niedermayer2012-01-23
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavf: add init_put_byte() to the list of visible symbols.Anton Khirnov2011-10-28
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge remote-tracking branch 'qatar/master'Michael Niedermayer2011-10-23
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * qatar/master: id3v2: fix doxy comment - 'machine byte order' makes no sense on char arrays VC1: restore mistakenly removed code twinvq: check output buffer size before decoding twinvq: return an error when the packet size is too small lavf: export some forgotten symbols with non-av prefixes. swscale: update altivec yuv2planeX asm to new per-plane API. swscale: make yuv2yuvX_10_sse2/avx 8/9/16-bits aware. yuv2planeX10 SIMD swscale: decide whether to use yuv2plane1/X on a per-plane basis. swscale: reintroduce full precision in 16-bit output. Split up yuv2yuvX functions Split out yuv2yuv1 luma and chroma in order to make them generic DSP functions lavc: replace references to deprecated AVCodecContext.error_recognition to use AVCodecContext.err_recognition lavc: translate non-flag-based er options into flag-based ef options at codec open add -err_filter AVOptions to access flag-based error recognition h264_weight: initialize "height" function argument properly. presets: spelling error in libvpx 1080p50_60 avplay: fix fullscreen behaviour with SDL 1.2.14 on Mac OS X Conflicts: ffplay.c libavformat/libavformat.v libswscale/swscale.c libswscale/x86/swscale_template.c tests/ref/lavfi/pixfmts_scale Merged-by: Michael Niedermayer <michaelni@gmx.at>
| * lavf: export some forgotten symbols with non-av prefixes.Anton Khirnov2011-10-22
| |
* | fix shared lib buildMichael Niedermayer2011-10-21
|/ | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* lavf: hide private symbols.Anton Khirnov2011-10-20
| | | | Overhead as reported by rbelf-size goes from 40147 to 20877.
* Hide demuxers', muxers' and protocols' objects via the ld version script.Diego Elio Pettenò2011-01-28
| | | | | | This reduces the symbols exported by libavformat from 699 to 451. Signed-off-by: Mans Rullgard <mans@mansr.com>
* Add symbol versioning for shared librariesMåns Rullgård2010-01-16
Based on patch by Reinhard Tartler <siretart tauware de> Originally committed as revision 21236 to svn://svn.ffmpeg.org/ffmpeg/trunk