Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
ffmpeg
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ffmpeg
Commits
607694c7
Commit
607694c7
authored
May 22, 2009
by
Diego Biurrun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cosmetics: Fix some typos.
Originally committed as revision 18894 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
ba7a7039
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
msrledec.c
libavcodec/msrledec.c
+4
-4
msrledec.h
libavcodec/msrledec.h
+2
-2
No files found.
libavcodec/msrledec.c
View file @
607694c7
/*
/*
* Micr
soft RLE D
ecoder
* Micr
osoft RLE d
ecoder
* Copyright (C) 2008 Konstantin Shishkov
* Copyright (C) 2008 Konstantin Shishkov
*
*
* This file is part of FFmpeg.
* This file is part of FFmpeg.
...
@@ -21,7 +21,7 @@
...
@@ -21,7 +21,7 @@
/**
/**
* @file libavcodec/msrledec.c
* @file libavcodec/msrledec.c
* MS RLE
D
ecoder based on decoder by Mike Melanson and my own for TSCC
* MS RLE
d
ecoder based on decoder by Mike Melanson and my own for TSCC
* For more information about the MS RLE format, visit:
* For more information about the MS RLE format, visit:
* http://www.multimedia.cx/msrle.txt
* http://www.multimedia.cx/msrle.txt
*/
*/
...
@@ -195,7 +195,7 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic, int de
...
@@ -195,7 +195,7 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic, int de
}
}
}
}
pos
+=
p2
;
pos
+=
p2
;
}
else
{
//
R
un of pixels
}
else
{
//
r
un of pixels
uint8_t
pix
[
3
];
//original pixel
uint8_t
pix
[
3
];
//original pixel
switch
(
depth
){
switch
(
depth
){
case
8
:
pix
[
0
]
=
*
src
++
;
case
8
:
pix
[
0
]
=
*
src
++
;
...
@@ -233,7 +233,7 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic, int de
...
@@ -233,7 +233,7 @@ static int msrle_decode_8_16_24_32(AVCodecContext *avctx, AVPicture *pic, int de
}
}
}
}
av_log
(
avctx
,
AV_LOG_WARNING
,
"MS RLE warning: no
E
nd-of-picture code
\n
"
);
av_log
(
avctx
,
AV_LOG_WARNING
,
"MS RLE warning: no
e
nd-of-picture code
\n
"
);
return
0
;
return
0
;
}
}
...
...
libavcodec/msrledec.h
View file @
607694c7
/*
/*
* Micr
soft RLE D
ecoder
* Micr
osoft RLE d
ecoder
* Copyright (C) 2008 Konstantin Shishkov
* Copyright (C) 2008 Konstantin Shishkov
*
*
* This file is part of FFmpeg.
* This file is part of FFmpeg.
...
@@ -25,7 +25,7 @@
...
@@ -25,7 +25,7 @@
#include "avcodec.h"
#include "avcodec.h"
/**
/**
*
decode stream in MS RLE format into frame
*
Decodes stream in MS RLE format into frame.
*
*
* @param avctx codec context
* @param avctx codec context
* @param pic destination frame
* @param pic destination frame
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment