summaryrefslogtreecommitdiff
path: root/libavformat/matroskadec.c
diff options
context:
space:
mode:
authorAurelien Jacobs <aurel@gnuage.org>2008-08-05 00:41:22 +0000
committerAurelien Jacobs <aurel@gnuage.org>2008-08-05 00:41:22 +0000
commit8f35a2c0222a02144cfa7dc2b08be5765c205fb6 (patch)
tree41d4d0560bccb8950b096cf8f1c7e2b0d94d2043 /libavformat/matroskadec.c
parentc171af9bd743a3048d676e65ed6c2d38fa31909a (diff)
matroskadec: cosmetics
Originally committed as revision 14579 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/matroskadec.c')
-rw-r--r--libavformat/matroskadec.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/libavformat/matroskadec.c b/libavformat/matroskadec.c
index 347bebe304..50a9784601 100644
--- a/libavformat/matroskadec.c
+++ b/libavformat/matroskadec.c
@@ -1280,9 +1280,7 @@ matroska_execute_seekhead(MatroskaDemuxContext *matroska)
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 *s,
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(MatroskaDemuxContext *matroska, uint8_t *data, int size,
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;
}