Browse Source

Reindent after r16368.

Originally committed as revision 16369 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/v0.5
Ronald S. Bultje 17 years ago
parent
commit
ade8fb4d75
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      libavformat/rdt.c
  2. +1
    -1
      libavformat/rm.h

+ 2
- 1
libavformat/rdt.c View File

@@ -316,7 +316,8 @@ rdt_parse_packet (PayloadContext *rdt, AVStream *st,
}
} else {
rdt->audio_pkt_cnt =
ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb, st, rdt->rmst[0], pkt);
ff_rm_retrieve_cache (rdt->rmctx, rdt->rmctx->pb,
st, rdt->rmst[0], pkt);
if (rdt->audio_pkt_cnt == 0 &&
st->codec->codec_id == CODEC_ID_AAC)
av_freep(&rdt->rmctx->pb);


+ 1
- 1
libavformat/rm.h View File

@@ -87,6 +87,6 @@ int ff_rm_parse_packet (AVFormatContext *s, ByteIOContext *pb,
* function, or 0 if all samples have been retrieved.
*/
int ff_rm_retrieve_cache (AVFormatContext *s, ByteIOContext *pb,
AVStream *st, RMStream *rst, AVPacket *pkt);
AVStream *st, RMStream *rst, AVPacket *pkt);

#endif /* AVFORMAT_RM_H */

Loading…
Cancel
Save