Re: [libav-devel] [PATCH 8/9] avconv: split creating and (re-)configuring complex filtergraphs

2015-07-22 Thread Anton Khirnov
Quoting James Almer (2015-07-21 07:16:33) On 16/07/15 3:56 PM, Anton Khirnov wrote: The current code is less than straightforward due to the fact that output streams can be created based on filtergraph definitions. This change should make the code simpler and more readable. It will also be

Re: [libav-devel] [PATCH 8/9] avconv: split creating and (re-)configuring complex filtergraphs

2015-07-20 Thread James Almer
On 16/07/15 3:56 PM, Anton Khirnov wrote: The current code is less than straightforward due to the fact that output streams can be created based on filtergraph definitions. This change should make the code simpler and more readable. It will also be useful in the future commits. This commit

[libav-devel] [PATCH 8/9] avconv: split creating and (re-)configuring complex filtergraphs

2015-07-16 Thread Anton Khirnov
The current code is less than straightforward due to the fact that output streams can be created based on filtergraph definitions. This change should make the code simpler and more readable. It will also be useful in the future commits. --- avconv.c| 5 - avconv.h| 2 ++

Re: [libav-devel] [PATCH 8/9] avconv: split creating and (re-)configuring complex filtergraphs

2015-07-16 Thread Luca Barbato
On 16/07/15 20:56, Anton Khirnov wrote: The current code is less than straightforward due to the fact that output streams can be created based on filtergraph definitions. This change should make the code simpler and more readable. It will also be useful in the future commits. --- avconv.c