Stefano Sabatini
|
86a47378d5
Rename avfilter_parse_graph() to avfilter_graph_parse(), for better
|
15 years ago |
Stefano Sabatini
|
d7dbe55823
Rename avfilter_destroy_graph() to avfilter_graph_destroy(), for better
|
15 years ago |
Stefano Sabatini
|
fd51ff1643
Fix avfilter_parse_graph() invalid graph description detection.
|
15 years ago |
Stefano Sabatini
|
784712343c
Print a warning and fail if the graph description cannot be
|
16 years ago |
Stefano Sabatini
|
7f9b3266c9
Change thisIsAVar variable names to this_is_a_var style, more
|
16 years ago |
Stefano Sabatini
|
e916c2ac6a
Fix typo: ommitted -> omitted.
|
16 years ago |
Stefano Sabatini
|
e4a5f397fd
Choose better names for the variables in create_filter().
|
16 years ago |
Vitor Sessak
|
e2b5fdaf11
Split openLinks linked list into openInputs and openOutputs
|
16 years ago |
Vitor Sessak
|
64fbf5e263
One more memory leak
|
16 years ago |
Vitor Sessak
|
4d11beb293
Cosmetical: move statement
|
16 years ago |
Vitor Sessak
|
64b164f44a
Plug some memory leaks
|
16 years ago |
Vitor Sessak
|
90ed076ce3
Merge variable initialization and declaration
|
16 years ago |
Vitor Sessak
|
c185fc5d72
Cosmetics
|
16 years ago |
Vitor Sessak
|
5b31015a7f
Remove unnused var
|
16 years ago |
Vitor Sessak
|
c880791fc1
Simplify
|
16 years ago |
Vitor Sessak
|
c956dd431f
Use av_mallocz instead of av_malloc to simplify some code
|
16 years ago |
Vitor Sessak
|
e97908ee70
Factor linked list insertion in its own function
|
16 years ago |
Vitor Sessak
|
c658f47eff
Remove comment redundant with those in graphparser.h
|
16 years ago |
Vitor Sessak
|
089d371450
These error messages should print the filter name, not the instance name
|
16 years ago |
Vitor Sessak
|
12849837d4
10l: fix previous commit
|
16 years ago |
Vitor Sessak
|
ba3fed2fc2
Simplify
|
16 years ago |
Vitor Sessak
|
98fb286b60
Remove senseless comments
|
16 years ago |
Vitor Sessak
|
5e60018545
Cosmetics: split setting a var and checking for error
|
16 years ago |
Vitor Sessak
|
69fa7e80c2
Fix doxy comment
|
16 years ago |
Vitor Sessak
|
bd80b349b3
Make parse_link_name() return a pointer to the name read
|
16 years ago |
Vitor Sessak
|
f5cbde2ee1
Cosmetics: more function reordering
|
16 years ago |
Vitor Sessak
|
d424e138d1
Make consume_whitespace() return a number of bytes to be skiped
|
16 years ago |
Vitor Sessak
|
8e74c889bc
Cosmetics: change function order
|
16 years ago |
Vitor Sessak
|
74c2f1fbcb
Simplify
|
16 years ago |
Vitor Sessak
|
6a0c770b21
Pass the inputs and outputs of avfilter_parse_graph() with a AVFilterInOut linked list
|
16 years ago |
Vitor Sessak
|
d835680e3c
Cosmetics: more indentation consistency
|
16 years ago |
Vitor Sessak
|
487c0e6700
More cosmetics: make indentation more consistent
|
16 years ago |
Vitor Sessak
|
d9d086d901
More cosmetics
|
16 years ago |
Vitor Sessak
|
eee68d96d4
Move code out of if
|
16 years ago |
Vitor Sessak
|
67ba10fe56
Cosmetics
|
16 years ago |
Vitor Sessak
|
f6557d5e33
Cosmetics
|
16 years ago |
Vitor Sessak
|
443c10ef2b
Factor common code out of if
|
16 years ago |
Vitor Sessak
|
7baa62108a
Rename another var
|
16 years ago |
Vitor Sessak
|
b2ac16dab9
Rename var
|
16 years ago |
Vitor Sessak
|
eece0cb089
Move var declaration to where it is needed
|
16 years ago |
Vitor Sessak
|
0de3407b8f
Replace if(!a){B}else{C} by if(a){C}else{B}
|
16 years ago |
Vitor Sessak
|
4d08be028d
Remove useless assignment
|
16 years ago |
Vitor Sessak
|
4fd9d074d8
Simplify while(pad){pad--; etc} to while(pad--){etc}
|
16 years ago |
Vitor Sessak
|
fec2e51385
Simplify extract_inout() as suggested by Michael
|
16 years ago |
Vitor Sessak
|
c9987633b1
Change the parser logic following Michael's review
|
16 years ago |
Vitor Sessak
|
498f030583
The name field of AVFilterInOut can be declared const
|
16 years ago |
Vitor Sessak
|
dbec351d9f
A semi-colon is also a string end
|
16 years ago |
Vitor Sessak
|
dd8e311e70
10l: Missed that in one of the last commits
|
16 years ago |
Vitor Sessak
|
cf4f7d38d0
Move code from handle_link() to the only place the function is called
|
16 years ago |
Vitor Sessak
|
5cb9c725f2
Simplify
|
16 years ago |