summaryrefslogtreecommitdiff
path: root/libavdevice
Commit message (Collapse)AuthorAge
...
* 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
* Clean up lib* version definitionsMåns Rullgård2008-02-19
| | | | | | Updating version numbers now requires changing only one place. Originally committed as revision 12154 to svn://svn.ffmpeg.org/ffmpeg/trunk
* typo fix: inited --> initializedDiego Biurrun2008-02-13
| | | | Originally committed as revision 11920 to svn://svn.ffmpeg.org/ffmpeg/trunk
* More verbose error log message.Benoit Fouet2008-01-18
| | | | Originally committed as revision 11556 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Clarify the error message when video width, height, or framerate are notMichel Bardiaux2008-01-17
| | | | | | | specified. Patch by Michel Bardiaux (mbardiaux AT mediaxim DOT be) Originally committed as revision 11551 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Link to libraries in dependency order.Víctor Paesa2008-01-12
| | | | | | Based on a patch by Gonzalo Garramuño, ggarra advancedsl com ar Originally committed as revision 11515 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Enabling higher frame rates for dc1394, patch by Alessandro Sappia a dot ↵Alessandro Sappia2008-01-11
| | | | | | sappia at ngi dot it Originally committed as revision 11502 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Adding support for libdc1394 v.2, patch by Alessandro Sappia a dot sappia at ↵Alessandro Sappia2008-01-11
| | | | | | ngi dot it Originally committed as revision 11501 to svn://svn.ffmpeg.org/ffmpeg/trunk
* * fixing a bug preventing default values to be set correctlyRoman Shaposhnik2008-01-08
| | | | Originally committed as revision 11461 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Make v4l.c's video_formats constant and static.Diego Pettenò2008-01-07
| | | | | | Patch by Diego 'Flameeyes' Pettenò flameeyes ¤ gmail ! com Originally committed as revision 11443 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Remove AIW support code, it is unfit for ffmpeg svn, doing usleep() andMichael Niedermayer2007-12-28
| | | | | | | colorspace convertion and deinterlacing in the demuxer. Whoever wants AIW support has to implement this cleanly! Originally committed as revision 11335 to svn://svn.ffmpeg.org/ffmpeg/trunk
* spellingVitor Sessak2007-12-01
| | | | Originally committed as revision 11122 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Link libavdevice against libavutil, libavcodec, and libavformatLuca Abeni2007-11-23
| | | | | | (fix compilation for non-ELF targets). Originally committed as revision 11085 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Fix the creation of alldevices.c (create it without any rename).Luca Abeni2007-11-23
| | | | | | This also requires some changes to configure Originally committed as revision 11080 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Introduce libavdeviceLuca Abeni2007-11-22
Originally committed as revision 11077 to svn://svn.ffmpeg.org/ffmpeg/trunk