summaryrefslogtreecommitdiff
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-02-11 14:10:52 +0000
committerBaptiste Coudurier <baptiste.coudurier@gmail.com>2008-02-11 14:10:52 +0000
commit56ea717b46c0ecc65b2e3dac10532e2578fc3408 (patch)
treebf80cf84e73c596b8cc5bcb0ac41cf5ef647299c /libavformat/mov.c
parent4f0e712ecbeb699af5677912b143f74b5fbbd116 (diff)
indentation
Originally committed as revision 11905 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index d0a315757d..e3749ef573 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -1539,13 +1539,13 @@ static int mov_read_packet(AVFormatContext *s, AVPacket *pkt)
sc->ffindex, sample->pos);
return -1;
}
- av_get_packet(s->pb, pkt, sample->size);
+ av_get_packet(s->pb, pkt, sample->size);
#ifdef CONFIG_DV_DEMUXER
- if (mov->dv_demux && sc->dv_audio_container) {
- dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
- av_free(pkt->data);
- dv_get_packet(mov->dv_demux, pkt);
- }
+ if (mov->dv_demux && sc->dv_audio_container) {
+ dv_produce_packet(mov->dv_demux, pkt, pkt->data, pkt->size);
+ av_free(pkt->data);
+ dv_get_packet(mov->dv_demux, pkt);
+ }
#endif
pkt->stream_index = sc->ffindex;
pkt->dts = sample->timestamp;