Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Unified Diff: source/patched-ffmpeg-mt/tools/graph2dot.c

Issue 4533003: patched ffmpeg nov 2 (Closed) Base URL: svn://chrome-svn/chrome/trunk/deps/third_party/ffmpeg/
Patch Set: '' Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: source/patched-ffmpeg-mt/tools/graph2dot.c
===================================================================
--- source/patched-ffmpeg-mt/tools/graph2dot.c (revision 65184)
+++ source/patched-ffmpeg-mt/tools/graph2dot.c (working copy)
@@ -67,8 +67,9 @@
dst_filter_ctx->filter->name);
fprintf(outfile, "\"%s\" -> \"%s\"", filter_ctx_label, dst_filter_ctx_label);
- fprintf(outfile, " [ label= \"fmt:%s w:%d h:%d\"];\n",
- av_pix_fmt_descriptors[link->format].name, link->w, link->h);
+ fprintf(outfile, " [ label= \"fmt:%s w:%d h:%d tb:%d/%d\" ];\n",
+ av_pix_fmt_descriptors[link->format].name, link->w, link->h,
+ link->time_base.num, link->time_base.den);
}
}
}
@@ -151,9 +152,7 @@
return 1;
}
- if (avfilter_graph_check_validity(graph, NULL) ||
- avfilter_graph_config_formats(graph, NULL) ||
- avfilter_graph_config_links (graph, NULL))
+ if (avfilter_graph_config(graph, NULL) < 0)
return 1;
print_digraph(outfile, graph);

Powered by Google App Engine
This is Rietveld 408576698