[FFmpeg-cvslog] lavf/img2dec: rename find_image_range() "max_start" parameter to " start_index"

Stefano Sabatini git at videolan.org
Sun Aug 5 00:40:10 CEST 2012


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Aug  4 17:04:04 2012 +0200| [e408e329d22b17ee1ec3378b846b1be8d4d12cb0] | committer: Stefano Sabatini

lavf/img2dec: rename find_image_range() "max_start" parameter to "start_index"

The new name seems more consistent with the assumed logic.

"start_index" represents the minimum accepted value as first index, and
not the maximum value as implicitely assumed by the previous name.

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

 libavformat/img2dec.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libavformat/img2dec.c b/libavformat/img2dec.c
index 24006a8..402caa8 100644
--- a/libavformat/img2dec.c
+++ b/libavformat/img2dec.c
@@ -110,13 +110,13 @@ static int is_glob(const char *path)
 
 /* return -1 if no image found */
 static int find_image_range(int *pfirst_index, int *plast_index,
-                            const char *path, int max_start)
+                            const char *path, int start_index)
 {
     char buf[1024];
     int range, last_index, range1, first_index;
 
     /* find the first image */
-    for (first_index = max_start; first_index < max_start + 5; first_index++) {
+    for (first_index = start_index; first_index < start_index + 5; first_index++) {
         if (av_get_frame_filename(buf, sizeof(buf), path, first_index) < 0){
             *pfirst_index =
             *plast_index = 1;



More information about the ffmpeg-cvslog mailing list