[FFmpeg-cvslog] r14579 - trunk/libavformat/matroskadec.c

aurel subversion
Tue Aug 5 02:41:23 CEST 2008


Author: aurel
Date: Tue Aug  5 02:41:22 2008
New Revision: 14579

Log:
matroskadec: cosmetics

Modified:
   trunk/libavformat/matroskadec.c

Modified: trunk/libavformat/matroskadec.c
==============================================================================
--- trunk/libavformat/matroskadec.c	(original)
+++ trunk/libavformat/matroskadec.c	Tue Aug  5 02:41:22 2008
@@ -1280,9 +1280,7 @@ matroska_execute_seekhead(MatroskaDemuxC
 static int
 matroska_aac_profile (char *codec_id)
 {
-    static const char *aac_profiles[] = {
-        "MAIN", "LC", "SSR"
-    };
+    static const char *aac_profiles[] = { "MAIN", "LC", "SSR" };
     int profile;
 
     for (profile=0; profile<ARRAY_SIZE(aac_profiles); profile++)
@@ -1536,8 +1534,7 @@ matroska_read_header (AVFormatContext   
 
         if (codec_id == CODEC_ID_NONE)
             av_log(matroska->ctx, AV_LOG_INFO,
-                   "Unknown/unsupported CodecID %s.\n",
-                   track->codec_id);
+                   "Unknown/unsupported CodecID %s.\n", track->codec_id);
 
         av_set_pts_info(st, 64, matroska->time_scale*track->time_scale, 1000*1000*1000); /* 64 bit pts in ns */
 
@@ -1815,8 +1812,7 @@ matroska_parse_block(MatroskaDemuxContex
                 uint8_t *pkt_data = data;
 
                 if (encodings && encodings->scope & 1) {
-                    offset = matroska_decode_buffer(&pkt_data, &pkt_size,
-                                                    track);
+                    offset = matroska_decode_buffer(&pkt_data,&pkt_size, track);
                     if (offset < 0)
                         continue;
                 }




More information about the ffmpeg-cvslog mailing list