summaryrefslogtreecommitdiff
path: root/libavdevice/lavfi.c
Commit message (Collapse)AuthorAge
* lavd/lavfi: add dumpgraph option.Nicolas George2012-01-24
|
* lavd/lavfi: fix compiler warning for uninitialized variablesJean First2011-12-31
| | | | | Signed-off-by: Jean First <jeanfirst@gmail.com> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* lavd/lavfi: fix two memleaks.Nicolas George2011-12-22
| | | | | Signed-off-by: Nicolas George <nicolas.george@normalesup.org> Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
* lavd/lavfi: reindent block in lavfi_read_headerStefano Sabatini2011-12-20
|
* lavd/lavfi: add check in case pix_fmts cannot be allocated in ↵Stefano Sabatini2011-12-20
| | | | lavfi_read_header()
* lavd/lavfi: fix incomplete commentStefano Sabatini2011-12-18
|
* lavd/lavfi: fix typo in error messageStefano Sabatini2011-12-18
|
* lavd/lavfi: remove a duplicated line.Nicolas George2011-12-15
|
* lavf: rename remaining av_set_pts_info() to avpriv_set_pts_info().Clément Bœsch2011-12-03
|
* Replace remaining av_new_stream() with avformat_new_stream().Clément Bœsch2011-11-05
|
* AVOptions: rename remaining FF_OPT_TYPE_* to AV_OPT_TYPE_*.Clément Bœsch2011-10-17
|
* lavd/lavfi: compute and use the used samples buffer size for the output ↵Stefano Sabatini2011-10-16
| | | | | | | audio packet size Do not assume the used size is the same of the allocated size, as it was wrongly assumed. Fix audio playback when the two values differ.
* lavdev/lavfi: reindent after the last commitStefano Sabatini2011-09-16
|
* lavdev/lavfi: add audio supportStefano Sabatini2011-09-16
|
* lavfi: rename vsink_buffer.c to sink_buffer.c, and vsink_buffer.h to ↵Stefano Sabatini2011-09-06
| | | | | | | | buffersink.h This is done in order to clarify the non-video-specific nature of the buffersink code, as the result of the video/audio API unification of the previous commit, and for improving overall consistency.
* lavfi: unify asink_buffer and vsink_buffer APIStefano Sabatini2011-09-06
| | | | | | | | | The new API is more generic (no distinction between audio/video for pulling frames), and avoids code duplication. A backward compatibility layer is kept for avoiding tools ABI breaks (only for the video binary interface, audio interface was never used in the tools).
* lavdev/lavfi: add debug traces in lavfi_read_packet()Stefano Sabatini2011-08-31
|
* lavdev/lavfi: set sample aspect ratio in the output stream/codec contextStefano Sabatini2011-08-21
|
* lavdev/lavfi: specify pos in the output packetsStefano Sabatini2011-08-20
|
* lavdev/lavfi: initialize variable, fix warningStefano Sabatini2011-08-20
|
* lavdev/lavfi: correctly set the inout pad index when linking a filter to the ↵Stefano Sabatini2011-08-14
| | | | | | | | output sink In lavfi_read_header(), use the pad index designated in the inout for linking an output to a sink, rather than always 0. Fix link creation for filters with more than one output (e.g. the split filter).
* lavdev: add libavfilter virtual input deviceStefano Sabatini2011-08-11
This input device is to be considered still experimental, only video output is supported.