[FFmpeg-cvslog] lavfi/sendcmd: move buf init() variable to internal scope where it is used

Stefano Sabatini git at videolan.org
Tue Oct 23 22:14:00 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Tue Oct 23 21:42:14 2012 +0200| [bd6240e7e9f3d60b542fd517742fd546318f5917] | committer: Stefano Sabatini

lavfi/sendcmd: move buf init() variable to internal scope where it is used

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

 libavfilter/f_sendcmd.c |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/libavfilter/f_sendcmd.c b/libavfilter/f_sendcmd.c
index 9f17045..a60a0b1 100644
--- a/libavfilter/f_sendcmd.c
+++ b/libavfilter/f_sendcmd.c
@@ -374,7 +374,6 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
 {
     SendCmdContext *sendcmd = ctx->priv;
     int ret, i, j;
-    char *buf;
 
     sendcmd->class = &sendcmd_class;
     av_opt_set_defaults(sendcmd);
@@ -389,7 +388,7 @@ static av_cold int init(AVFilterContext *ctx, const char *args)
     }
 
     if (sendcmd->commands_filename) {
-        uint8_t *file_buf;
+        uint8_t *file_buf, *buf;
         size_t file_bufsize;
         ret = av_file_map(sendcmd->commands_filename,
                           &file_buf, &file_bufsize, 0, ctx);



More information about the ffmpeg-cvslog mailing list