summaryrefslogtreecommitdiff
path: root/libavformat/psxstr.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2008-06-26 23:06:10 +0000
committerMichael Niedermayer <michaelni@gmx.at>2008-06-26 23:06:10 +0000
commit44369b45eb49fc64882208848df45925118f5278 (patch)
tree29f19349b7d1061bd342aecdccbecefb74fcac5f /libavformat/psxstr.c
parentfd147f23a224227d5bcfae124f08c97c04cc277c (diff)
indent
Originally committed as revision 14005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/psxstr.c')
-rw-r--r--libavformat/psxstr.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/libavformat/psxstr.c b/libavformat/psxstr.c
index eede5c5d91..bad3d33519 100644
--- a/libavformat/psxstr.c
+++ b/libavformat/psxstr.c
@@ -220,14 +220,14 @@ static int str_read_packet(AVFormatContext *s,
av_set_pts_info(st, 64, 128, st->codec->sample_rate);
}
- pkt = ret_pkt;
- if (av_new_packet(pkt, 2304))
- return AVERROR(EIO);
- memcpy(pkt->data,sector+24,2304);
-
- pkt->stream_index =
- str->channels[channel].audio_stream_index;
- return 0;
+ pkt = ret_pkt;
+ if (av_new_packet(pkt, 2304))
+ return AVERROR(EIO);
+ memcpy(pkt->data,sector+24,2304);
+
+ pkt->stream_index =
+ str->channels[channel].audio_stream_index;
+ return 0;
break;
default:
av_log(s, AV_LOG_WARNING, "Unknown sector type %02X\n", sector[0x12]);