You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
cosmetics: fix indentation of the new matroska_parse_block() function
Originally committed as revision 8179 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@@ -2397,8 +2397,7 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint64_t cluster_time,
|
||||
|
||||
/* first byte(s): tracknum */
|
||||
if ((n = matroska_ebmlnum_uint(data, size, &num)) < 0) {
|
||||
av_log(matroska->ctx, AV_LOG_ERROR,
|
||||
"EBML block data error\n");
|
||||
av_log(matroska->ctx, AV_LOG_ERROR, "EBML block data error\n");
|
||||
av_free(origdata);
|
||||
return res;
|
||||
}
|
||||
@@ -2487,8 +2486,7 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint64_t cluster_time,
|
||||
for (n = 1; res == 0 && n < laces - 1; n++) {
|
||||
int64_t snum;
|
||||
int r;
|
||||
r = matroska_ebmlnum_sint (data, size,
|
||||
&snum);
|
||||
r = matroska_ebmlnum_sint (data, size, &snum);
|
||||
if (r < 0) {
|
||||
av_log(matroska->ctx, AV_LOG_INFO,
|
||||
"EBML block data error\n");
|
||||
@@ -2542,8 +2540,7 @@ matroska_parse_block(MatroskaDemuxContext *matroska, uint64_t cluster_time,
|
||||
|
||||
if (n == 0)
|
||||
pkt->flags = is_keyframe;
|
||||
pkt->stream_index =
|
||||
matroska->tracks[track]->stream_index;
|
||||
pkt->stream_index = matroska->tracks[track]->stream_index;
|
||||
|
||||
pkt->pts = timecode;
|
||||
pkt->pos = pos;
|
||||
|
Reference in New Issue
Block a user