diff parser.c @ 6892:ef70c05f77e8 libavcodec

indent
author michael
date Mon, 26 May 2008 02:00:18 +0000
parents d7051562c2b3
children de032bcdeff9
line wrap: on
line diff
--- a/parser.c	Mon May 26 01:58:47 2008 +0000
+++ b/parser.c	Mon May 26 02:00:18 2008 +0000
@@ -215,10 +215,10 @@
 void av_parser_close(AVCodecParserContext *s)
 {
     if(s){
-    if (s->parser->parser_close)
-        s->parser->parser_close(s);
-    av_free(s->priv_data);
-    av_free(s);
+        if (s->parser->parser_close)
+            s->parser->parser_close(s);
+        av_free(s->priv_data);
+        av_free(s);
     }
 }