Browse Source

lavfi/src_buffer: fix indent.

tags/n0.11
Clément Bœsch 13 years ago
parent
commit
af58a77f0a
1 changed files with 4 additions and 5 deletions
  1. +4
    -5
      libavfilter/src_buffer.c

+ 4
- 5
libavfilter/src_buffer.c View File

@@ -471,11 +471,10 @@ static int request_frame(AVFilterLink *link)

switch (link->type) {
case AVMEDIA_TYPE_VIDEO:
/* TODO reindent */
avfilter_start_frame(link, avfilter_ref_buffer(buf, ~0));
avfilter_draw_slice(link, 0, link->h, 1);
avfilter_end_frame(link);
avfilter_unref_buffer(buf);
avfilter_start_frame(link, avfilter_ref_buffer(buf, ~0));
avfilter_draw_slice(link, 0, link->h, 1);
avfilter_end_frame(link);
avfilter_unref_buffer(buf);
break;
case AVMEDIA_TYPE_AUDIO:
avfilter_filter_samples(link, avfilter_ref_buffer(buf, ~0));


Loading…
Cancel
Save