summaryrefslogtreecommitdiffstats
path: root/stream/tvi_def.h
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2014-04-13 18:00:51 +0200
committerwm4 <wm4@nowhere>2014-04-13 18:03:01 +0200
commit78128bddda4bcea1f256fc13cc33fa2652ed277c (patch)
tree35bf6596cb8e2d7927618845833c3ee36534f890 /stream/tvi_def.h
parent44f382cf98564c0fe08bdc78579c284362cd6f3c (diff)
downloadmpv-78128bddda4bcea1f256fc13cc33fa2652ed277c.tar.bz2
mpv-78128bddda4bcea1f256fc13cc33fa2652ed277c.tar.xz
Kill all tabs
I hate tabs. This replaces all tabs in all source files with spaces. The only exception is old-makefile. The replacement was made by running the GNU coreutils "expand" command on every file. Since the replacement was automatic, it's possible that some formatting was destroyed (but perhaps only if it was assuming that the end of a tab does not correspond to aligning the end to multiples of 8 spaces).
Diffstat (limited to 'stream/tvi_def.h')
-rw-r--r--stream/tvi_def.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/stream/tvi_def.h b/stream/tvi_def.h
index 41c1427e98..987141b462 100644
--- a/stream/tvi_def.h
+++ b/stream/tvi_def.h
@@ -70,7 +70,7 @@ static inline void fill_blank_frame(char* buffer,int len,int fmt){
buffer[i+1]=0;
buffer[i+2]=0;
buffer[i+3]=0;
- }
+ }
break;
case MP_FOURCC_YUY2:
for(i=0;i<len;i+=4){
@@ -78,13 +78,13 @@ static inline void fill_blank_frame(char* buffer,int len,int fmt){
buffer[i+1]=0xFF;
buffer[i+2]=0;
buffer[i+3]=0;
- }
+ }
break;
case MP_FOURCC_MJPEG:
/*
- This is compressed format. I don't know yet how to fill such frame with blue color.
- Keeping frame unchanged.
- */
+ This is compressed format. I don't know yet how to fill such frame with blue color.
+ Keeping frame unchanged.
+ */
break;
default:
memset(buffer,0xC0,len);