summaryrefslogtreecommitdiff
path: root/libavdevice
Commit message (Collapse)AuthorAge
...
* Use OBJS variable for all object filesMåns Rullgård2008-10-25
| | | | | | | There is no longer any need to differentiate the object files by source type. Originally committed as revision 15708 to svn://svn.ffmpeg.org/ffmpeg/trunk
* uses FF_ARRAY_ELEMS() where appropriateAurelien Jacobs2008-10-21
| | | | Originally committed as revision 15662 to svn://svn.ffmpeg.org/ffmpeg/trunk
* The v4l2 driver can silently change the pixel format in theJens Rosenboom2008-10-21
| | | | | | | | VIDIOC_S_FMT ioctl(). In this case, device_init() should fail so that a different pixel format is tried. Patch by Jens Rosenboom (jens DOT rosenboom AT eu DOT panasonic DOT com) Originally committed as revision 15660 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing sys/select.h #include, fixes compilation on FreeBSD 7.0.Alexis Ballier2008-10-20
| | | | | | patch by Alexis Ballier, alexis.ballier gmail com Originally committed as revision 15649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use enum typers instead of int.Diego Pettenò2008-10-02
| | | | | | Patch by Diego 'Flameeyes' Pettenò: flameeyes gmail Originally committed as revision 15517 to svn://svn.ffmpeg.org/ffmpeg/trunk
* sync to latest mingw api, remove unneeded struct definitionsBaptiste Coudurier2008-09-26
| | | | Originally committed as revision 15423 to svn://svn.ffmpeg.org/ffmpeg/trunk
* V4L2 support for OpenBSD, patch by Brad, brad comstyle comBrad2008-09-21
| | | | Originally committed as revision 15376 to svn://svn.ffmpeg.org/ffmpeg/trunk
* set bits_per_coded_sample according to new lavc apiBaptiste Coudurier2008-09-09
| | | | Originally committed as revision 15289 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for the RGB32 pixel format in video4linux2 devicesJean Delvare2008-09-05
| | | | | | Patch by Jean Delvare (khali AT linux-fr DOT org) Originally committed as revision 15219 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add support for the PIX_FMT_RGB555 and PIX_FMT_RGB565 pixel formats inJean Delvare2008-09-05
| | | | | | | video4linux2 devices. Patch by Jean Delvare (khali AT linux-fr DOT org) Originally committed as revision 15218 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Globally rename the header inclusion guard names.Stefano Sabatini2008-08-31
| | | | | | | | | Consistently apply this rule: the guard name is obtained from the filename by stripping the leading "lib", converting '/' and '.' to '_' and uppercasing the resulting name. Guard names in the root directory have to be prefixed by "FFMPEG_". Originally committed as revision 15120 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Workaround bug in types.h that has typedef __u64 under #ifndef __STRICT_ANSI__.Michael Niedermayer2008-08-19
| | | | Originally committed as revision 14852 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use '#include <poll.h>' instead of '#include <sys/poll.h>'.Diego Biurrun2008-08-14
| | | | | | It is the standard location as defined by the Open Group. Originally committed as revision 14761 to svn://svn.ffmpeg.org/ffmpeg/trunk
* strcasecmp() requires #include <strings.h>Aurelien Jacobs2008-08-13
| | | | Originally committed as revision 14728 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Implement avdevice_version().Stefano Sabatini2008-08-08
| | | | Originally committed as revision 14668 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: make a v4l2 error message consistent with r14647.Stefano Sabatini2008-08-08
| | | | Originally committed as revision 14664 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Change OSS long names.Benoit Fouet2008-08-08
| | | | Originally committed as revision 14663 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove useless 'channels' assignment.Benoit Fouet2008-08-07
| | | | Originally committed as revision 14656 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Distinguish the error reporting for the cases of wrong size and wrongStefano Sabatini2008-08-06
| | | | | | timebase in the video4linux2 v4l2_read_header() function. Originally committed as revision 14647 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Distinguish the error reporting for the cases of wrong size and wrongStefano Sabatini2008-08-06
| | | | | | timebase in the video4linux grab_read_header() function. Originally committed as revision 14646 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Fix two common typos: wont --> will not, lets --> let us.Diego Biurrun2008-07-24
| | | | Originally committed as revision 14372 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make v4l2_read_header() don't free a stream in case of failure whenStefano Sabatini2008-07-15
| | | | | | | | reading its header. The stream will be freed later in av_open_input_stream(). Fix a segmentation fault due to a double free on the same pointer. Originally committed as revision 14247 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make v4l_read_header() don't free a stream in case of failure whenStefano Sabatini2008-07-15
| | | | | | | | reading its header. The stream will be freed later in av_open_input_stream(). Fix a segmentation fault due to a double free on the same pointer. Originally committed as revision 14246 to svn://svn.ffmpeg.org/ffmpeg/trunk
* One-bit bitfields should probably be unsigned. Unfortunately, it is leftErik Hovland2008-07-08
| | | | | | | | | up to the compiler on how one bit fields are treated. gcc treats one-bit bitfields as signed and allows for the -funsigned-field parameter. Other compilers (like Sun C) treat one-bit bitfields as unsigned no matter what. Patch by Erik Hovland erik hovland org Originally committed as revision 14131 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add missing SMALL_IF_CONFIG_SMALL macros for beosaudio long_names.Stefano Sabatini2008-06-17
| | | | Originally committed as revision 13795 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make long_names in lavf/lavdev optional depending on CONFIG_SMALL.Stefano Sabatini2008-06-03
| | | | | | | patch by Stefano Sabatini, stefano.sabatini-lala poste.it along with some spelling/consistency fixes for the long names by me Originally committed as revision 13649 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace some occurrences of -1 with PIX_FMT_NONE.Carl Eugen Hoyos2008-05-11
| | | | | | Fixes icc warning #188: enumerated type mixed with another type Originally committed as revision 13130 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 to svn://svn.ffmpeg.org/ffmpeg/trunk
* #include required headers directly.Diego Biurrun2008-05-08
| | | | Originally committed as revision 13078 to svn://svn.ffmpeg.org/ffmpeg/trunk
* prettyprinting cosmeticsDiego Biurrun2008-05-08
| | | | Originally committed as revision 13077 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unused avdevice.h header file; add config.h which is used.Diego Biurrun2008-04-27
| | | | Originally committed as revision 13006 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typoRamiro Polla2008-04-14
| | | | Originally committed as revision 12823 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Add #if 0 code to test for yet unsupported compressionsRamiro Polla2008-04-14
| | | | | | from user-supplied verbose information. Originally committed as revision 12822 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Support biCompression I420Ramiro Polla2008-04-14
| | | | Originally committed as revision 12821 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Cosmetics: remove {}s over one-lined ifs.Ramiro Polla2008-04-14
| | | | Originally committed as revision 12820 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify more errors by using gotoRamiro Polla2008-04-14
| | | | Originally committed as revision 12819 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Simplify returning errors by using gotoRamiro Polla2008-04-14
| | | | Originally committed as revision 12818 to svn://svn.ffmpeg.org/ffmpeg/trunk
* non-recursive makefilesMåns Rullgård2008-04-07
| | | | Originally committed as revision 12760 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix building with C++ objects, variable names were inconsistent.François Revol2008-03-27
| | | | Originally committed as revision 12608 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove #ifdef HAVE_SYS_MMAN_H around sys/mman.h #include.Diego Biurrun2008-03-24
| | | | | | Without the #include compilation fails. Originally committed as revision 12568 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove unneeded sys/mman.h #include.Diego Biurrun2008-03-24
| | | | Originally committed as revision 12567 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Only #include sys/mman.h if configure set HAVE_SYS_MMAN_H.Diego Biurrun2008-03-20
| | | | Originally committed as revision 12521 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: #include config.h before all other FFmpeg headers.Diego Biurrun2008-03-15
| | | | Originally committed as revision 12450 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fixesDiego Biurrun2008-03-15
| | | | Originally committed as revision 12449 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Correctly handle case where buffer is 100% fullRamiro Polla2008-03-08
| | | | Originally committed as revision 12389 to svn://svn.ffmpeg.org/ffmpeg/trunk
* VFW capture supportRamiro Polla2008-03-08
| | | | Originally committed as revision 12384 to svn://svn.ffmpeg.org/ffmpeg/trunk
* cosmetics: Consistently move NAME and FFLIBS to the top of each Makefile.Diego Biurrun2008-03-08
| | | | Originally committed as revision 12364 to svn://svn.ffmpeg.org/ffmpeg/trunk
* simplify library version handlingMåns Rullgård2008-03-07
| | | | Originally committed as revision 12362 to svn://svn.ffmpeg.org/ffmpeg/trunk
* consolidate CFLAGS, LDFLAGS, EXTRALIBS assignmentMåns Rullgård2008-03-06
| | | | Originally committed as revision 12354 to svn://svn.ffmpeg.org/ffmpeg/trunk
* less preprocessor magic in version number macrosMåns Rullgård2008-02-26
| | | | Originally committed as revision 12246 to svn://svn.ffmpeg.org/ffmpeg/trunk