summaryrefslogtreecommitdiff
path: root/libavdevice/vfwcap.c
Commit message (Collapse)AuthorAge
* vfwcap: prefer "framerate_q" over "fps" in vfw_read_header()Stefano Sabatini2011-06-23
| | | | | | | The variable is used for containing the parsed value of framerate, using a lexically consistent name eases readability/understanding. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* lavf,lavc: free avoptions in a generic way.Anton Khirnov2011-06-05
| | | | | | It's simpler and less error-prone. Fixes some memleaks along the way.
* Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun2011-06-03
|
* vfwcap: add a framerate private option.Anton Khirnov2011-06-02
|
* vfwcap: add video_size private option.Anton Khirnov2011-05-27
|
* Replace FFmpeg with Libav in licence headersMans Rullgard2011-03-19
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* Prefix all _demuxer, _muxer, _protocol from libavformat and libavdevice.Diego Elio Pettenò2011-01-26
| | | | | This also lists the objects from those two libraries as internal (by adding the ff_ prefix) so that they can then be hidden via linker scripts.
* vfwcap: add option to print list of supported driversRamiro Polla2010-10-23
| | | | Originally committed as revision 25552 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: flip RGB rawvideo.Ramiro Polla2010-04-29
| | | | Originally committed as revision 22989 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all remaining occurrences of AVERROR_NOMEM withStefano Sabatini2010-04-03
| | | | | | | | | AVERROR(ENOMEM). AVERROR_NOMEM is deprecated and will be dropped at the next libavutil major bump. Originally committed as revision 22791 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Define AVMediaType enum, and use it instead of enum CodecType, whichStefano Sabatini2010-03-30
| | | | | | is deprecated and will be dropped at the next major bump. Originally committed as revision 22735 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Free remaining packets on vfw_read_close().Ramiro Polla2010-03-17
| | | | Originally committed as revision 22575 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Do not store a copy of AVFormatContext *s in vfw_ctx.Ramiro Polla2010-03-17
| | | | | | Save *s directly in SetWindowLongPtr instead. Originally committed as revision 22574 to svn://svn.ffmpeg.org/ffmpeg/trunk
* Replace all the occurrences of AVERROR_EIO with AVERROR(EIO), and markStefano Sabatini2010-03-13
| | | | | | AVERROR_EIO for deletion at the next major bump. Originally committed as revision 22513 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: Add support for UYVY pixel format.Ramiro Polla2010-03-10
| | | | Originally committed as revision 22424 to svn://svn.ffmpeg.org/ffmpeg/trunk
* vfwcap: support MJPG compressed streams.Nash Tsai2010-02-23
| | | | | | Patch by Nash Tsai <nash dot tsai at gmail dot com> Originally committed as revision 22004 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
* 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
* 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
* cosmetics: Remove pointless period after copyright statement non-sentences.Diego Biurrun2009-01-19
| | | | Originally committed as revision 16684 to svn://svn.ffmpeg.org/ffmpeg/trunk
* mingw: update w32api to 3.13Ramiro Polla2008-12-07
| | | | Originally committed as revision 16029 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
* sync to latest mingw api, remove unneeded struct definitionsBaptiste Coudurier2008-09-26
| | | | Originally committed as revision 15423 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
* 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
* Use full path for #includes from another directory.Diego Biurrun2008-05-09
| | | | Originally committed as revision 13098 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
* 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