Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Erwin <significant.bit@gmail.com>2016-01-28 08:30:50 +0300
committerMike Erwin <significant.bit@gmail.com>2016-01-28 08:30:50 +0300
commita1d7f67d81bdc7ece8a757ab79d0b64f4e612bfd (patch)
tree2b75c319b1db74507714bd8b778a29929ce76ac8 /source/blender/imbuf
parentba9468768ddcfd1e028893a1bc4f255bae7eac5a (diff)
cleanup: spelling / typos
no functional changes
Diffstat (limited to 'source/blender/imbuf')
-rw-r--r--source/blender/imbuf/intern/anim_movie.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/imbuf/intern/anim_movie.c b/source/blender/imbuf/intern/anim_movie.c
index e2d56d29726..d5ff427f204 100644
--- a/source/blender/imbuf/intern/anim_movie.c
+++ b/source/blender/imbuf/intern/anim_movie.c
@@ -127,9 +127,9 @@ static void free_anim_movie(struct anim *UNUSED(anim))
#if defined(_WIN32)
-# define PATHSEPERATOR '\\'
+# define PATHSEPARATOR '\\'
#else
-# define PATHSEPERATOR '/'
+# define PATHSEPARATOR '/'
#endif
static int an_stringdec(const char *string, char *head, char *tail, unsigned short *numlen)
@@ -142,7 +142,7 @@ static int an_stringdec(const char *string, char *head, char *tail, unsigned sho
nume = len;
for (i = len - 1; i >= 0; i--) {
- if (string[i] == PATHSEPERATOR) break;
+ if (string[i] == PATHSEPARATOR) break;
if (isdigit(string[i])) {
if (found) {
nums = i;
@@ -826,7 +826,7 @@ static int ffmpeg_decode_video_frame(struct anim *anim)
* which is necessary to decode the remaining data
* in the decoder engine after EOF. It also prevents a memory
* leak, since av_read_frame spills out a full size packet even
- * on EOF... (and: it's save to call on NULL packets) */
+ * on EOF... (and: it's safe to call on NULL packets) */
av_free_packet(&anim->next_packet);