summaryrefslogtreecommitdiff
path: root/libavfilter/graphdump.c
Commit message (Collapse)AuthorAge
* avfilter: convert to new channel layout APIJames Almer2022-03-15
| | | | Signed-off-by: James Almer <jamrial@gmail.com>
* avfilter/graphdump: Use pointer to const for pointer to static stringsAndreas Rheinhardt2021-08-27
| | | | | Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter/graphdump: Don't return truncated stringAndreas Rheinhardt2021-08-27
| | | | | Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter/graphdump: Don't silently truncate channel layout stringAndreas Rheinhardt2021-08-27
| | | | | | | 64B are not enough any more. Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter/graphdump: Properly initialize AVBPrintAndreas Rheinhardt2021-08-27
| | | | | Reviewed-by: Nicolas George <george@nsup.org> Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
* avfilter/graphdump: fix use of uninitialized variablesZhao Zhili2019-11-21
| | | | | | In case of av_bprint_finalize failed. Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
* lavfi/graphdump: Replace the number by macro for bprint initJun Zhao2018-06-17
| | | | | | Replace the number by macro for bprint init. Signed-off-by: Jun Zhao <mypopydev@gmail.com>
* avfilter: remove usage of empty headerPaul B Mahol2017-06-26
| | | | Signed-off-by: Paul B Mahol <onemda@gmail.com>
* graphdump: include internal.h for AVFilterPadAndreas Cadhalpun2015-08-08
| | | | | Reviewed-by: Michael Niedermayer <michael@niedermayer.cc> Signed-off-by: Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
* avfilter/graphdump: Fix pointer to local outside scopeMichael Niedermayer2014-04-28
| | | | | Fixes CID1194435 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* avfilter/graphdump: fix use of deprecated symbolsMichael Niedermayer2013-08-25
| | | | Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
* Merge commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf'Michael Niedermayer2013-03-16
| | | | | | | | | | | | | | * commit '42c7c61ab25809620b8c8809b3da73e25f5bbaaf': avfiltergraph: replace AVFilterGraph.filter_count with nb_filters Conflicts: doc/APIchanges libavfilter/avfiltergraph.c libavfilter/avfiltergraph.h libavfilter/graphparser.c libavfilter/version.h Merged-by: Michael Niedermayer <michaelni@gmx.at>
* lavfi/graphdump: fix output for unknown layouts.Nicolas George2013-03-14
|
* Replace rest of libavutil/audioconvert.h with libavutil/channel_layout.hPaul B Mahol2012-11-13
| | | | | | Also remove it in once case when it is not needed. Signed-off-by: Paul B Mahol <onemda@gmail.com>
* lavfi: remove unnecessary inclusion of libavcodec/avcodec.h in avfilter.hStefano Sabatini2012-06-25
| | | | | | | | | | | | libavfilter API was designed in order to be clarly distinguished from the libavcodec API, including avcodec.h in avfilter.h is not going to help to stick to this principle. The inclusion of libavutil/audioconvert.h in many files was required because avcodec.h includes audioconvert.h. libavfilter/avcodec.h is where the lavc/lavfi interface should be entirely placed.
* lavfi: drop planar/packed negotiation supportStefano Sabatini2012-05-16
| | | | | | | | | The planar/packed switch and the packing_formats list is no longer required, since the planar/packed information is now stored in the sample format enum. This is technically a major API break, possibly it should be not too painful as we marked the audio filtering API as unstable.
* graphdump: use av_bprintf API.Nicolas George2012-03-21
|
* lavfi: add avfilter_graph_dump.Nicolas George2012-01-24