diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2008-06-26 23:06:10 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2008-06-26 23:06:10 +0000 |
commit | 44369b45eb49fc64882208848df45925118f5278 (patch) | |
tree | 29f19349b7d1061bd342aecdccbecefb74fcac5f /libavformat/psxstr.c | |
parent | fd147f23a224227d5bcfae124f08c97c04cc277c (diff) | |
download | ffmpeg-44369b45eb49fc64882208848df45925118f5278.tar.gz |
indent
Originally committed as revision 14005 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/psxstr.c')
-rw-r--r-- | libavformat/psxstr.c | 16 |
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]); |