| Commit message (Expand) | Author | Age | Files | Lines |
* | Make parse_filter() parsing more robust. | Stefano Sabatini | 2009-12-11 | 1 | -2/+2 |
* | "[" is a terminating char for the filter name. This fixes the parsing of | Vitor Sessak | 2009-05-08 | 1 | -1/+1 |
* | Make graphparser.c use av_get_token(). | Stefano Sabatini | 2009-05-01 | 1 | -46/+4 |
* | Remove consume_whitespace() and replace it with direct calls to | Stefano Sabatini | 2009-04-21 | 1 | -11/+8 |
* | Rename avfilter_parse_graph() to avfilter_graph_parse(), for better | Stefano Sabatini | 2009-02-26 | 1 | -1/+1 |
* | Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for better | Stefano Sabatini | 2009-02-26 | 1 | -1/+1 |
* | Fix avfilter_parse_graph() invalid graph description detection. | Stefano Sabatini | 2009-02-14 | 1 | -1/+1 |
* | Print a warning and fail if the graph description cannot be | Stefano Sabatini | 2009-01-16 | 1 | -0/+7 |
* | Change thisIsAVar variable names to this_is_a_var style, more | Stefano Sabatini | 2008-12-27 | 1 | -36/+36 |
* | Fix typo: ommitted -> omitted. | Stefano Sabatini | 2008-12-26 | 1 | -2/+2 |
* | Choose better names for the variables in create_filter(). | Stefano Sabatini | 2008-12-26 | 1 | -14/+14 |
* | Split openLinks linked list into openInputs and openOutputs | Vitor Sessak | 2008-05-24 | 1 | -34/+21 |
* | One more memory leak | Vitor Sessak | 2008-05-24 | 1 | -0/+1 |
* | Cosmetical: move statement | Vitor Sessak | 2008-05-24 | 1 | -1/+2 |
* | Plug some memory leaks | Vitor Sessak | 2008-05-24 | 1 | -2/+12 |
* | Merge variable initialization and declaration | Vitor Sessak | 2008-05-24 | 1 | -2/+1 |
* | Cosmetics | Vitor Sessak | 2008-05-24 | 1 | -3/+2 |
* | Remove unnused var | Vitor Sessak | 2008-05-24 | 1 | -9/+3 |
* | Simplify | Vitor Sessak | 2008-05-24 | 1 | -9/+5 |
* | Use av_mallocz instead of av_malloc to simplify some code | Vitor Sessak | 2008-05-24 | 1 | -4/+2 |
* | Factor linked list insertion in its own function | Vitor Sessak | 2008-05-24 | 1 | -7/+11 |
* | Remove comment redundant with those in graphparser.h | Vitor Sessak | 2008-05-24 | 1 | -3/+0 |
* | These error messages should print the filter name, not the instance name | Vitor Sessak | 2008-05-24 | 1 | -2/+2 |
* | 10l: fix previous commit | Vitor Sessak | 2008-05-24 | 1 | -1/+2 |
* | Simplify | Vitor Sessak | 2008-05-24 | 1 | -5/+2 |
* | Remove senseless comments | Vitor Sessak | 2008-05-24 | 1 | -4/+0 |
* | Cosmetics: split setting a var and checking for error | Vitor Sessak | 2008-05-24 | 1 | -3/+8 |
* | Fix doxy comment | Vitor Sessak | 2008-05-24 | 1 | -2/+2 |
* | Make parse_link_name() return a pointer to the name read | Vitor Sessak | 2008-05-24 | 1 | -10/+9 |
* | Cosmetics: more function reordering | Vitor Sessak | 2008-05-24 | 1 | -23/+23 |
* | Make consume_whitespace() return a number of bytes to be skiped | Vitor Sessak | 2008-05-24 | 1 | -8/+8 |
* | Cosmetics: change function order | Vitor Sessak | 2008-05-24 | 1 | -35/+35 |
* | Simplify | Vitor Sessak | 2008-05-24 | 1 | -2/+1 |
* | Pass the inputs and outputs of avfilter_parse_graph() with a AVFilterInOut li... | Vitor Sessak | 2008-05-24 | 1 | -34/+3 |
* | Cosmetics: more indentation consistency | Vitor Sessak | 2008-05-24 | 1 | -6/+6 |
* | More cosmetics: make indentation more consistent | Vitor Sessak | 2008-05-24 | 1 | -4/+4 |
* | More cosmetics | Vitor Sessak | 2008-05-24 | 1 | -4/+4 |
* | Move code out of if | Vitor Sessak | 2008-05-24 | 1 | -4/+2 |
* | Cosmetics | Vitor Sessak | 2008-05-24 | 1 | -1/+0 |
* | Cosmetics | Vitor Sessak | 2008-05-24 | 1 | -11/+11 |
* | Factor common code out of if | Vitor Sessak | 2008-05-24 | 1 | -15/+14 |
* | Rename another var | Vitor Sessak | 2008-05-24 | 1 | -8/+8 |
* | Rename var | Vitor Sessak | 2008-05-24 | 1 | -6/+6 |
* | Move var declaration to where it is needed | Vitor Sessak | 2008-05-24 | 1 | -1/+1 |
* | Replace if(!a){B}else{C} by if(a){C}else{B} | Vitor Sessak | 2008-05-24 | 1 | -20/+20 |
* | Remove useless assignment | Vitor Sessak | 2008-05-24 | 1 | -1/+0 |
* | Simplify while(pad){pad--; etc} to while(pad--){etc} | Vitor Sessak | 2008-05-24 | 1 | -4/+2 |
* | Simplify extract_inout() as suggested by Michael | Vitor Sessak | 2008-05-24 | 1 | -16/+5 |
* | Change the parser logic following Michael's review | Vitor Sessak | 2008-05-24 | 1 | -115/+212 |
* | The name field of AVFilterInOut can be declared const | Vitor Sessak | 2008-05-24 | 1 | -1/+1 |