[FFmpeg-cvslog] vsrc_color: set output pos values to -1

Stefano Sabatini git at videolan.org
Mon Sep 19 22:54:15 CEST 2011


ffmpeg | branch: master | Stefano Sabatini <stefano.sabatini-lala at poste.it> | Sat Jun 18 01:47:37 2011 +0200| [91aff2665dc5bcd74ab3a3a2ae47b653fecdf178] | committer: Anton Khirnov

vsrc_color: set output pos values to -1

-1 is more correct than 0, as the position in the file is undefined.

Signed-off-by: Anton Khirnov <anton at khirnov.net>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=91aff2665dc5bcd74ab3a3a2ae47b653fecdf178
---

 libavfilter/vsrc_color.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/libavfilter/vsrc_color.c b/libavfilter/vsrc_color.c
index fafa219..1248ffd 100644
--- a/libavfilter/vsrc_color.c
+++ b/libavfilter/vsrc_color.c
@@ -140,7 +140,7 @@ static int color_request_frame(AVFilterLink *link)
     AVFilterBufferRef *picref = avfilter_get_video_buffer(link, AV_PERM_WRITE, color->w, color->h);
     picref->video->pixel_aspect = (AVRational) {1, 1};
     picref->pts                 = av_rescale_q(color->pts++, color->time_base, AV_TIME_BASE_Q);
-    picref->pos                 = 0;
+    picref->pos                 = -1;
 
     avfilter_start_frame(link, avfilter_ref_buffer(picref, ~0));
     ff_draw_rectangle(picref->data, picref->linesize,



More information about the ffmpeg-cvslog mailing list