Commit 47e08c58 authored by David Conrad's avatar David Conrad

Indentation

Originally committed as revision 10367 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 0580a122
...@@ -140,8 +140,8 @@ static void put_ebml_size(ByteIOContext *pb, uint64_t size, int bytes) ...@@ -140,8 +140,8 @@ static void put_ebml_size(ByteIOContext *pb, uint64_t size, int bytes)
if (bytes == 0) if (bytes == 0)
// don't care how many bytes are used, so use the min // don't care how many bytes are used, so use the min
bytes = needed_bytes; bytes = needed_bytes;
// the bytes needed to write the given size would exceed the bytes // the bytes needed to write the given size would exceed the bytes
// that we need to use, so write unknown size. This shouldn't happen. // that we need to use, so write unknown size. This shouldn't happen.
assert(bytes >= needed_bytes); assert(bytes >= needed_bytes);
size |= 1ULL << bytes*7; size |= 1ULL << bytes*7;
...@@ -587,9 +587,9 @@ static int mkv_write_tracks(AVFormatContext *s) ...@@ -587,9 +587,9 @@ static int mkv_write_tracks(AVFormatContext *s)
end_ebml_master(pb, subinfo); end_ebml_master(pb, subinfo);
break; break;
case CODEC_TYPE_SUBTITLE: case CODEC_TYPE_SUBTITLE:
put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_SUBTITLE); put_ebml_uint(pb, MATROSKA_ID_TRACKTYPE, MATROSKA_TRACK_TYPE_SUBTITLE);
break; break;
default: default:
av_log(s, AV_LOG_ERROR, "Only audio and video are supported for Matroska."); av_log(s, AV_LOG_ERROR, "Only audio and video are supported for Matroska.");
break; break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment