summaryrefslogtreecommitdiffstats
path: root/libavdevice
Commit message (Collapse)AuthorAgeFilesLines
* Fix 'heigth' vs. 'height' typos.Diego Biurrun2011-10-051-7/+7
|
* Use explicit struct initializers for AVOutputFormat/AVInputFormat declarations.Diego Biurrun2011-09-249-96/+83
|
* alsa: add missing headerAnton Khirnov2011-09-211-0/+1
| | | | Fixes compile with next lavc major.
* lavd: add libcdio-paranoia input device for audio CD grabbingAnton Khirnov2011-09-174-1/+189
|
* lavf,lavd: remove all usage of AVFormatParameters from demuxers.Anton Khirnov2011-08-1511-122/+0
| | | | | | AVFormatParameters are converted into corresponding private options in av_open_input_file/stream() compat wrappers, so accessing them from demuxers is redundant.
* jack: add 'channels' private option.Anton Khirnov2011-08-151-6/+18
| | | | Get rid of AVFormatParameters usage.
* x11grab: add show_region AVOption.Yu-Jie Lin2011-07-311-0/+87
| | | | | | | Draw the current grabbing region for indication. Signed-off-by: Yu-Jie Lin <livibetter@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* x11grab: add follow_mouse AVOption.Yu-Jie Lin2011-07-311-3/+59
| | | | | | | | | -follow_mouse centered|PIXELS move grabbing region to where mouse pointer at the center; or only move when pointer reaches within PIXELS to the edge. Signed-off-by: Yu-Jie Lin <livibetter@gmail.com> Signed-off-by: Anton Khirnov <anton@khirnov.net>
* doxygen: use Doxygen markup for authors and web links where appropriateDiego Biurrun2011-07-151-1/+1
|
* alsa: limit buffer_size to 32768 frames.Justin Ruggles2011-07-092-0/+3
| | | | | | In testing, the file output plugin gave a max buffer size of about 20 million frames, which is way more than what is really needed and causes a memory allocation error on my system.
* alsa: fallback to buffer_size/4 for period_size.Justin Ruggles2011-07-091-0/+2
| | | | | buffer_size/4 is the value used by aplay. This fixes output to null devices, e.g. writing ALSA output to a file.
* x11grab: replace undocumented nomouse hackery with a private option.Anton Khirnov2011-07-081-3/+4
|
* libavdevice: Remove disabled code.Diego Biurrun2011-07-072-22/+0
|
* Add some missing mathematics.h #includes for av_rescale().Diego Biurrun2011-07-051-0/+1
|
* build: include sub-makefiles using full path instead of symlinksMans Rullgard2011-06-281-1/+1
| | | | Signed-off-by: Mans Rullgard <mans@mansr.com>
* build: Remove redundant config.mak includes from subdirectory Makefiles.Diego Biurrun2011-06-251-2/+0
| | | | | Calling Make from subdirectories is not supported and config.mak has multiple inclusion guards anyway, so the top-level include is enough.
* lavdev: improve feedback in case of invalid frame rate/sizeStefano Sabatini2011-06-234-7/+7
| | | | | | | | | | Show the invalid string in the error message. While at it also prefer "Could not" over "Couldn't", plain forms are preferred over contractions (simplify readability, especially for non English-savvy people). Signed-off-by: Anton Khirnov <anton@khirnov.net>
* vfwcap: prefer "framerate_q" over "fps" in vfw_read_header()Stefano Sabatini2011-06-231-4/+4
| | | | | | | 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>
* v4l2: prefer "framerate_q" over "fps" in v4l2_set_parameters()Stefano Sabatini2011-06-231-11/+11
| | | | | | | 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>
* fbdev: prefer "framerate_q" over "fps" in device contextStefano Sabatini2011-06-231-7/+7
| | | | | | | 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>
* bktr: prefer "framerate" over "fps" for grab_read_header()Stefano Sabatini2011-06-231-6/+6
| | | | | | | The variable is used for containing the parsed value of s1->framerate, using a lexically consistent name ease readability/understanding. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* ALSA: implement channel layout for playback.Nicolas George2011-06-233-1/+169
| | | | | | | | | | Currently quad, 5.0, 5.1 and 7.1 are implemented. Implementing support for other formats/layouts and capture should be straightforward. 5.0 and 7.1 support by Carl Eugen Hoyos. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* alsa: support unsigned variants of already supported signed formats.Carl Eugen Hoyos2011-06-231-0/+7
|
* alsa: add support for more formats.Carl Eugen Hoyos2011-06-231-0/+10
| | | | | | Specifically, f32, f64, s32, s24, a-law and mu-law. Signed-off-by: Anton Khirnov <anton@khirnov.net>
* x11grab: remove a memory allocation and the associated memcpy.Sven C. Dack2011-06-121-7/+3
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* oss,sndio: simplify by using FFMIN.Reimar Döffinger2011-06-092-6/+2
| | | | Signed-off-by: Anton Khirnov <anton@khirnov.net>
* v4l2: do not force NTSC as standardLuca Barbato2011-06-051-1/+1
| | | | Setting a standard is meaningful only for analog capture devices.
* lavf,lavc: free avoptions in a generic way.Anton Khirnov2011-06-056-15/+0
| | | | | | It's simpler and less error-prone. Fixes some memleaks along the way.
* x11grab: add framerate private option.Anton Khirnov2011-06-041-10/+14
|
* fbdev,v4l2: remove some forgotten uses of AVFormatParameters.time_base.Anton Khirnov2011-06-042-3/+3
|
* bktr: don't error when AVFormatParameters.time_base isn't set.Anton Khirnov2011-06-041-5/+0
| | | | There's a private option for it now.
* Replace avcodec_get_pix_fmt_name() by av_get_pix_fmt_name().Stefano Sabatini2011-06-031-1/+1
| | | | | This fixes warnings about avcodec_get_pix_fmt_name() being deprecated. Signed-off-by: Diego Biurrun <diego@biurrun.de>
* bktr: get default framerate from video standard.Anton Khirnov2011-06-031-11/+23
|
* Replace custom DEBUG preprocessor trickery by the standard one.Diego Biurrun2011-06-032-6/+1
|
* Replace #ifdef + av_log() combinations by av_dlog().Diego Biurrun2011-06-031-6/+2
|
* v4l2: remove one forgotten use of AVFormatParameters.pix_fmt.Anton Khirnov2011-06-021-1/+1
|
* vfwcap: add a framerate private option.Anton Khirnov2011-06-021-6/+10
|
* v4l2: add a framerate private option.Anton Khirnov2011-06-021-12/+20
|
* libdc1394: add a framerate private option.Anton Khirnov2011-06-021-9/+18
|
* fbdev: add a framerate private option.Anton Khirnov2011-06-021-12/+36
|
* bktr: add a framerate private option.Anton Khirnov2011-06-021-11/+13
|
* v4l2: don't leak video standard string on error.Anton Khirnov2011-05-291-1/+1
|
* v4l2: add a pixel_format private option.Anton Khirnov2011-05-271-3/+15
|
* libdc1394: add a pixel_format private option.Anton Khirnov2011-05-271-1/+13
|
* x11grab: add video_size private option.Anton Khirnov2011-05-271-9/+39
|
* x11grab: factorize returning error codes.Anton Khirnov2011-05-271-9/+19
|
* vfwcap: add video_size private option.Anton Khirnov2011-05-271-8/+38
|
* v4l2: add video_size private option.Anton Khirnov2011-05-271-2/+16
|
* v4l2: factorize returning error codes.Anton Khirnov2011-05-271-11/+17
| | | | This will be useful in the following commit.
* libdc1394: add video_size private option.Anton Khirnov2011-05-271-2/+18
|
OpenPOWER on IntegriCloud