summaryrefslogtreecommitdiff
path: root/libavdevice
Commit message (Collapse)AuthorAge
* Satisfy style nits.Stefano Sabatini2010-02-05
| | | | Originally committed as revision 21648 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Avoid using deprecated AVFormatParameters::[audio|video]_codec_id field.Jai Menon2010-01-28
| | | | Originally committed as revision 21511 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Include windows.h before vfw.h since the latter requires defineskemuri2010-01-23
| | | | | | | from the former. Patch by kemuri <kemuri9 at gmail dot com> Originally committed as revision 21411 to svn://svn.ffmpeg.org/ffmpeg/trunk
* 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
* Define device_try_init() as static in libavdevice/v4l2.c.Reinhard Tartler2010-01-03
| | | | | | Patch by Reinhard Tartler (siretart AT tauware DOT de). Originally committed as revision 21004 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define _XOPEN_SOURCE as 600 before including a XSI extension header.Carl Eugen Hoyos2009-12-14
| | | | Originally committed as revision 20871 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum PixelFormat as type for input_pixfmt to avoid one icc warning.Carl Eugen Hoyos2009-12-14
| | | | Originally committed as revision 20859 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support compressed formats in the V4L2 input device.Luca Abeni2009-12-14
| | | | | | Patch by klchxbec AT freenet DOT de. Originally committed as revision 20858 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for V4L2 compressed formats in the table used for convertingLuca Abeni2009-12-14
| | | | | | | between V4L2 formats and ffmpeg's formats/codecs. Patch by klchxbec AT freenet DOT de. Originally committed as revision 20857 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use the correct type for the V4L2 format.Luca Abeni2009-12-14
| | | | Originally committed as revision 20856 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Return pkt->size in v4l2_read_packet().Luca Abeni2009-12-14
| | | | | | | mmap_read_frame() takes care of ensuring that the packet size is correct. Originally committed as revision 20855 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Include alsa headers before the internal FFmpeg headers.Matthieu Castet2009-11-29
| | | | | | | | | | | This avoids symbol redefinitions problems, for example avoids the "free" symbol to be redefined before system headers actually using it are included, thus breaking compilation. In particular this change allows to build FFmpeg with salsa. Patch by matthieu castet <$surname.mat?hieu@free fr>. Originally committed as revision 20665 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consistency with other files: av_cold static ---> static av_coldIvo van Poorten2009-11-29
| | | | Originally committed as revision 20662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add nomouse option to not record the mouse cursor.Michael Niedermayer2009-11-27
| | | | | | Implements issue877 Originally committed as revision 20633 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused stuff.Michael Niedermayer2009-11-27
| | | | Originally committed as revision 20632 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Real cursor support in x11grab.Roxis2009-11-27
| | | | | | | Patch by Roxis /// roxis list dot ru Slight changes by me to update the patch to current svn. Originally committed as revision 20631 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not invent error codes but pass the error code on.Michael Niedermayer2009-11-27
| | | | Originally committed as revision 20630 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace very odd and completely broken oss read_packet() by the obvious way toMichael Niedermayer2009-11-27
| | | | | | | read. Fixes issue348. Originally committed as revision 20629 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add functions to return library license and library configuration.Diego Biurrun2009-11-18
| | | | Originally committed as revision 20547 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Split avdevice.c off from alldevices.c.Diego Biurrun2009-11-18
| | | | | | alldevices.c is not a good place for avdevice_version(). Originally committed as revision 20546 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing #includes for avutil.h, required for the AV_VERSION* macros.Diego Biurrun2009-11-16
| | | | Originally committed as revision 20544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Break overly long lines.Diego Biurrun2009-10-18
| | | | Originally committed as revision 20276 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix compilation of beosaudio.cpp, not tested if it actually works though.Reimar Döffinger2009-09-30
| | | | Originally committed as revision 20098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix METEOR vs. BKTR typo, noticed by Steve O'Hara-Smith, steve sohara org.Diego Biurrun2009-09-22
| | | | Originally committed as revision 19965 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing strings.h include needed for strcasecmp.Reimar Döffinger2009-09-19
| | | | Originally committed as revision 19920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not do free AVStream in case of error, this is not supposed to beVitor Sessak2009-09-12
| | | | | | | | done by the demuxer. Fix issue 1378. Originally committed as revision 19825 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Indent.Ramiro Polla2009-09-04
| | | | Originally committed as revision 19757 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use if(0){} instead of #if 0 to prevent debug code to rot.Ramiro Polla2009-09-04
| | | | Originally committed as revision 19756 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Skip headers requiring external libs not present in checkheadersMåns Rullgård2009-08-23
| | | | Originally committed as revision 19685 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Move vfw_read_close to avoid forward declaration.Diego Biurrun2009-08-02
| | | | | | Patch by Diego. Originally committed as revision 19567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Indent.Ramiro Polla2009-07-30
| | | | Originally committed as revision 19545 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Support compressed streams.Ramiro Polla2009-07-30
| | | | Originally committed as revision 19544 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Reorder some code to simplify next patch.Ramiro Polla2009-07-30
| | | | Originally committed as revision 19543 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Return PIX_FMT_NONE instead of -1 on error.Ramiro Polla2009-07-30
| | | | Originally committed as revision 19542 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Update error message:Ramiro Polla2009-07-30
| | | | | | | - Verbose debug information is at max -v 9 now; - Add an empty space for readability. Originally committed as revision 19541 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace WORDS_BIGENDIAN with HAVE_BIGENDIANMåns Rullgård2009-07-26
| | | | Originally committed as revision 19508 to svn://svn.ffmpeg.org/ffmpeg/trunk
* x11grab: remove unnecessary #includes and senseless #defineMåns Rullgård2009-07-21
| | | | Originally committed as revision 19479 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make the configure script select the input/output devices usingStefano Sabatini2009-06-29
| | | | | | | --enable-indev, --enable-outdev rather than --enable-demuxer, --enable-muxer as before, same for disabling them. Originally committed as revision 19293 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change codec_id type to enum CodecID, fix warning.Daniel Verkamp2009-05-06
| | | | | | Patch by Daniel Verkamp daniel @ drv @ nu. Originally committed as revision 18768 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: Split long line.Carl Eugen Hoyos2009-04-14
| | | | Originally committed as revision 18516 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix two icc warnings #188: enumerated type mixed with another type.Carl Eugen Hoyos2009-04-14
| | | | Originally committed as revision 18515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix icc warning #188: enumerated type mixed with another type.Carl Eugen Hoyos2009-04-14
| | | | Originally committed as revision 18514 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix icc warning #188: enumerated type mixed with another type.Carl Eugen Hoyos2009-04-14
| | | | Originally committed as revision 18513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement JACK input device.Olivier Guilyardi2009-04-02
| | | | | | | Patch by Olivier Guilyardi list samalyse com. See the thread: "[FFmpeg-devel] [PATCH] libavdevice: JACK demuxer". Originally committed as revision 18322 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix AVFMT_FLAG_NONBLOCK in alsaLuca Abeni2009-03-07
| | | | Originally committed as revision 17863 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cast a __u64 variable to uint64_t so that it can be printed without warningsLuca Abeni2009-02-15
| | | | Originally committed as revision 17325 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove file name from file headers.Diego Biurrun2009-02-09
| | | | | | It provides no useful information and breaks on renames. Originally committed as revision 17097 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add necessary #includes to pass 'make checkheaders'.Diego Biurrun2009-02-02
| | | | Originally committed as revision 16933 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full internal pathname in doxygen @file directives.Diego Biurrun2009-02-01
| | | | | | | Otherwise doxygen complains about ambiguous filenames when files exist under the same name in different subdirectories. Originally committed as revision 16912 to svn://svn.ffmpeg.org/ffmpeg/trunk
* If AVPacket->data == NULL, the packet does not contain any buffer toLuca Abeni2009-01-30
| | | | | | | be freed. This fixes a double free on exit. Originally committed as revision 16857 to svn://svn.ffmpeg.org/ffmpeg/trunk