[FFmpeg-cvslog] avfilter/vf_paletteuse: indent fix after 7ccc5848

Clément Bœsch git at videolan.org
Thu Mar 5 16:07:00 CET 2015


ffmpeg | branch: master | Clément Bœsch <clement at stupeflix.com> | Thu Mar  5 16:04:20 2015 +0100| [1cded1f8d7d25ff4340d670262cdeb3167a69ae8] | committer: Clément Bœsch

avfilter/vf_paletteuse: indent fix after 7ccc5848

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

 libavfilter/vf_paletteuse.c |   16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/libavfilter/vf_paletteuse.c b/libavfilter/vf_paletteuse.c
index 75e3118..8835d8b 100644
--- a/libavfilter/vf_paletteuse.c
+++ b/libavfilter/vf_paletteuse.c
@@ -317,10 +317,10 @@ end:
  * recomputing them (they are generally computed by the caller for other uses).
  */
 static av_always_inline int color_get(struct cache_node *cache, uint32_t color,
-                                          uint8_t r, uint8_t g, uint8_t b,
-                                          const struct color_node *map,
-                                          const uint32_t *palette,
-                                          const enum color_search_method search_method)
+                                      uint8_t r, uint8_t g, uint8_t b,
+                                      const struct color_node *map,
+                                      const uint32_t *palette,
+                                      const enum color_search_method search_method)
 {
     int i;
     const uint8_t rgb[] = {r, g, b};
@@ -347,10 +347,10 @@ static av_always_inline int color_get(struct cache_node *cache, uint32_t color,
 }
 
 static av_always_inline int get_dst_color_err(struct cache_node *cache,
-                                                  uint32_t c, const struct color_node *map,
-                                                  const uint32_t *palette,
-                                                  int *er, int *eg, int *eb,
-                                                  const enum color_search_method search_method)
+                                              uint32_t c, const struct color_node *map,
+                                              const uint32_t *palette,
+                                              int *er, int *eg, int *eb,
+                                              const enum color_search_method search_method)
 {
     const uint8_t r = c >> 16 & 0xff;
     const uint8_t g = c >>  8 & 0xff;



More information about the ffmpeg-cvslog mailing list