| Commit message (Expand) | Author | Age | Files | Lines |
* | Split openLinks linked list into openInputs and openOutputs | Vitor Sessak | 2008-05-24 | 2 | -41/+23 |
* | 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 | 2 | -38/+36 |
* | 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 | 2 | -37/+21 |
* | 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 |
* | A semi-colon is also a string end | Vitor Sessak | 2008-05-24 | 1 | -0/+1 |
* | 10l: Missed that in one of the last commits | Vitor Sessak | 2008-05-24 | 1 | -1/+1 |
* | Move code from handle_link() to the only place the function is called | Vitor Sessak | 2008-05-24 | 1 | -46/+32 |
* | Simplify | Vitor Sessak | 2008-05-24 | 2 | -6/+7 |
* | Use a user-provided context for av_log() | Vitor Sessak | 2008-05-24 | 1 | -43/+36 |
* | Improve error handling | Vitor Sessak | 2008-05-24 | 1 | -1/+3 |
* | Cosmetics | Vitor Sessak | 2008-05-24 | 1 | -1/+1 |
* | Better error handling | Vitor Sessak | 2008-05-24 | 1 | -0/+3 |
* | Simplify | Vitor Sessak | 2008-05-24 | 1 | -6/+2 |
* | Link filters in the same pass as the parser | Vitor Sessak | 2008-05-24 | 1 | -36/+53 |
* | Cosmetics: if(x != NULL) -> if(x) | Vitor Sessak | 2008-05-24 | 1 | -2/+2 |