Commit 70775d80 authored by bcoudurier's avatar bcoudurier

indentation

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@11905 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 5ea44fb5
......@@ -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;
......
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