Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lavu,lavd: do not use av_pix_fmt_descriptors directly. | Anton Khirnov | 2012-10-12 | 1 | -1/+1 |
| | |||||
* | Replace PIX_FMT_* -> AV_PIX_FMT_*, PixelFormat -> AVPixelFormat | Anton Khirnov | 2012-10-08 | 6 | -62/+62 |
| | |||||
* | timefilter: De-doxygenize normal code comments and drop silly ones | Diego Biurrun | 2012-10-07 | 1 | -5/+2 |
| | |||||
* | Give all anonymously typedeffed structs in headers a name | Diego Biurrun | 2012-10-06 | 2 | -2/+2 |
| | | | | Anonymous structs cannot be forward declared and have no benefit. | ||||
* | Remove some silly disabled code. | Diego Biurrun | 2012-10-01 | 1 | -7/+0 |
| | |||||
* | avopt: Store defaults for AV_OPT_TYPE_INT in the i64 union member | Martin Storsjö | 2012-09-04 | 11 | -21/+21 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avopt: Store defaults for AV_OPT_TYPE_FLAGS in the i64 union member | Martin Storsjö | 2012-09-04 | 1 | -1/+1 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | avopt: Store defaults for AV_OPT_TYPE_CONST in the i64 union member | Martin Storsjö | 2012-09-04 | 5 | -15/+15 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Don't include common.h from avutil.h | Martin Storsjö | 2012-08-15 | 2 | -0/+2 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> | ||||
* | Replace all CODEC_ID_* with AV_CODEC_ID_* | Anton Khirnov | 2012-08-07 | 17 | -108/+108 |
| | |||||
* | Improve descriptiveness of a number of codec and container long names | Diego Biurrun | 2012-07-30 | 1 | -2/+2 |
| | |||||
* | Add missing libavutil/time.h includes. | Anton Khirnov | 2012-07-28 | 4 | -0/+4 |
| | |||||
* | x11grab: cosmetics: consistent naming for x11grab-related things | Diego Biurrun | 2012-07-28 | 4 | -16/+15 |
| | |||||
* | Clarify Doxygen comment for FF_API_* #defines. | Diego Biurrun | 2012-07-04 | 1 | -0/+6 |
| | |||||
* | Create version.h headers for libraries that lack them | Diego Biurrun | 2012-07-04 | 3 | -15/+46 |
| | |||||
* | Remove unnecessary inclusions of [sys/]time.h | Mans Rullgard | 2012-06-20 | 4 | -6/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Avoid C99 variable declarations within for statements. | Diego Biurrun | 2012-06-14 | 1 | -1/+2 |
| | | | | | We generally do not declare variables within for statements and there are compilers that choke on such constructs. | ||||
* | jack: update to new latency range API as the old one has been deprecated | Sean McGovern | 2012-06-13 | 1 | -0/+6 |
| | | | | | | Fixes Bugzilla #279. Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | build: cosmetics: Split HEADERS/OBJS/PROGS lists into one entry per line. | Diego Biurrun | 2012-05-07 | 1 | -1/+2 |
| | |||||
* | cosmetics: Consistently place static, inline and av_cold attributes/keywords. | Diego Biurrun | 2012-04-04 | 1 | -2/+2 |
| | |||||
* | Replace memset(0) by zero initializations. | Diego Biurrun | 2012-03-28 | 1 | -2/+1 |
| | | | | Also remove one pointless zero initialization in rangecoder.c. | ||||
* | x11grab: fix a memory leak exposed by valgrind | Antonio Ospite | 2012-03-16 | 1 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | | When using "-f x11grab -i :0.0" valgrind reports a definitely lost memory block with this message: ==31544== 5 bytes in 1 blocks are definitely lost in loss record 1 of 2 ==31544== at 0x4026E68: memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==31544== by 0x4026F17: posix_memalign (in /usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so) ==31544== by 0x60D399A: av_malloc (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1) ==31544== by 0x60D3A70: av_strdup (in /usr/lib/x86_64-linux-gnu/libavutil.so.51.22.1) ==31544== by 0x4A2BE58: ??? (in /usr/lib/x86_64-linux-gnu/libavdevice.so.53.2.0) ==31544== by 0x506D29E: avformat_open_input (in /usr/lib/x86_64-linux-gnu/libavformat.so.53.21.0) ==31544== by 0x400A80: main (in /home/ao2/WIP/am7xxx-play/tests/a.out) The 5 bytes lost are the ones from param = av_strdup(":0.0"), so let's free param in the exit path. Also check the av_strdup() return value. Note: calling av_free(param) even when av_strdup() fails and param is NULL is OK and keeps the code simpler without adding another label to skip av_free(). Signed-off-by: Ronald S. Bultje <rsbultje@gmail.com> | ||||
* | libcdio: add a forgotten AVClass to the private context. | Anton Khirnov | 2012-03-04 | 1 | -0/+1 |
| | |||||
* | doxygen: Remove documentation for non-existing parameters; misc small fixes. | Diego Biurrun | 2012-02-28 | 1 | -1/+0 |
| | |||||
* | 4xm, timefilter: K&R formatting cosmetics | Yordan Makariev | 2012-02-10 | 1 | -46/+48 |
| | | | | Signed-off-by: Diego Biurrun <diego@biurrun.de> | ||||
* | cosmetics: Remove extra newlines at EOF | Alex Converse | 2012-01-27 | 1 | -1/+0 |
| | |||||
* | lavf: remove AVFormatParameters from AVFormatContext.read_header signature | Anton Khirnov | 2012-01-27 | 13 | -23/+19 |
| | |||||
* | lavd: remove deprecated v4l grab device. | Anton Khirnov | 2012-01-24 | 4 | -374/+0 |
| | |||||
* | v4l2: use C99 struct initializer | Luca Barbato | 2012-01-10 | 1 | -33/+25 |
| | | | | Remove some unneeded memsets. | ||||
* | v4l2: poll the file descriptor | Luca Barbato | 2012-01-10 | 1 | -0/+15 |
| | | | | Instead of busy waiting use poll(); | ||||
* | v4l2: support compressed formats | Luca Barbato | 2012-01-10 | 1 | -3/+8 |
| | | | | Let pass the codec name to -pixel_format and introduce -input_format. | ||||
* | cosmetics: drop some pointless parentheses | Diego Biurrun | 2012-01-07 | 2 | -2/+2 |
| | |||||
* | v4l2: use V4L2_FMT_FLAG_EMULATED only if it is defined | Janne Grunau | 2012-01-04 | 1 | -0/+2 |
| | | | | V4L2_FMT_FLAG_EMULATED was added in 2.6.32. | ||||
* | v4l2: list available formats | Luca Barbato | 2012-01-04 | 1 | -7/+92 |
| | | | | Make use of the experimental framesize enumeration ioctl if available. | ||||
* | v4l2: set the proper codec_tag | Luca Barbato | 2012-01-04 | 1 | -0/+3 |
| | | | | Unbreak direct streamcopy. | ||||
* | v4l2: refactor device_open | Luca Barbato | 2012-01-04 | 1 | -36/+36 |
| | | | | Check capabilities directly in the function, further simplify the code. | ||||
* | v4l2: simplify away io_method | Luca Barbato | 2012-01-04 | 1 | -40/+5 |
| | | | | Only mmap is supported. | ||||
* | v4l2: cosmetics | Luca Barbato | 2012-01-04 | 1 | -45/+94 |
| | |||||
* | v4l2: uniform and format options | Luca Barbato | 2012-01-04 | 1 | -5/+5 |
| | |||||
* | v4l2: do not force interlaced mode | Luca Barbato | 2012-01-04 | 1 | -2/+8 |
| | | | | | Video4linux2 supports both interlaced and non-interlaced mode, do not ask for interlaced if not necessary. | ||||
* | v4l2: remove unneded linux specific asm/types.h include | Janne Grunau | 2011-12-27 | 1 | -1/+0 |
| | |||||
* | build: move inclusion of subdir.mak to main subdir loop | Mans Rullgard | 2011-12-13 | 1 | -2/+0 |
| | | | | Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | Add basic libavdevice documentation. | Anton Khirnov | 2011-12-12 | 1 | -0/+22 |
| | |||||
* | Fix a bunch of common typos. | Diego Biurrun | 2011-12-11 | 2 | -2/+2 |
| | |||||
* | cosmetics: drop some completely pointless parentheses | Diego Biurrun | 2011-12-07 | 1 | -2/+2 |
| | |||||
* | misc Doxygen markup improvements | Diego Biurrun | 2011-12-05 | 2 | -3/+3 |
| | |||||
* | lavf: make av_set_pts_info private. | Anton Khirnov | 2011-11-30 | 13 | -13/+25 |
| | | | | It's supposed to be called only from (de)muxers. | ||||
* | Make channel layout masks unsigned | Mans Rullgard | 2011-11-25 | 1 | -2/+2 |
| | | | | | | | | | | It makes more sense for a bit mask to use an unsigned type. The change should be source and binary compatible on all supported systems, hence micro version bump. Fixes a few invalid shifts. Signed-off-by: Mans Rullgard <mans@mansr.com> | ||||
* | pulse: compute frame_duration once and fix it | Luca Barbato | 2011-11-14 | 1 | -3/+4 |
| | | | | | | | | The frame duration was calculated without taking in account the bytes per sample. Thanks to Lorenzo Pistone <blaffablaffa@gmail.com> for pointing the issue and providing an initial fix. | ||||
* | Remove leftover includes of strings.h | Martin Storsjö | 2011-11-06 | 3 | -3/+0 |
| | | | | Signed-off-by: Martin Storsjö <martin@martin.st> |