[FFmpeg-cvslog] split: set rej_perms = AV_PERM_WRITE on outputs.

Nicolas George git at videolan.org
Fri Aug 17 18:44:16 CEST 2012


ffmpeg | branch: master | Nicolas George <nicolas.george at normalesup.org> | Tue Aug 14 18:37:15 2012 +0200| [a34eb393fccd5775d51a9b6f53d22f18020d5af4] | committer: Nicolas George

split: set rej_perms = AV_PERM_WRITE on outputs.

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

 libavfilter/split.c |    1 +
 1 file changed, 1 insertion(+)

diff --git a/libavfilter/split.c b/libavfilter/split.c
index ac6939e..083e31b 100644
--- a/libavfilter/split.c
+++ b/libavfilter/split.c
@@ -52,6 +52,7 @@ static int split_init(AVFilterContext *ctx, const char *args)
         snprintf(name, sizeof(name), "output%d", i);
         pad.type = ctx->filter->inputs[0].type;
         pad.name = av_strdup(name);
+        pad.rej_perms = AV_PERM_WRITE;
 
         ff_insert_outpad(ctx, i, &pad);
     }



More information about the ffmpeg-cvslog mailing list