diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-08-16 12:07:45 +0200 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-08-16 12:07:49 +0200 |
commit | 6a4e55a246369c007240fdd7732c2743ee740723 (patch) | |
tree | 4ccade3d813b2863f12bd4f5b2be96bf84c24416 /libavformat/electronicarts.c | |
parent | a87cf3689ef2a1a53a022d664f3687d506ab08b1 (diff) | |
parent | 288f2ffb57ae9e9eee2748aca26da3aeb3ca6f6c (diff) | |
download | ffmpeg-6a4e55a246369c007240fdd7732c2743ee740723.tar.gz |
Merge commit '288f2ffb57ae9e9eee2748aca26da3aeb3ca6f6c'
* commit '288f2ffb57ae9e9eee2748aca26da3aeb3ca6f6c':
electronicarts: Remove bogus function documentation
Merged-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/electronicarts.c')
-rw-r--r-- | libavformat/electronicarts.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libavformat/electronicarts.c b/libavformat/electronicarts.c index 40640d1248..67e9351ae6 100644 --- a/libavformat/electronicarts.c +++ b/libavformat/electronicarts.c @@ -96,10 +96,6 @@ static uint32_t read_arbitary(AVIOContext *pb) return word; } -/* - * Process PT/GSTR sound header - * return 1 if success, 0 if invalid format, otherwise AVERROR_xxx - */ static int process_audio_header_elements(AVFormatContext *s) { EaDemuxContext *ea = s->priv_data; @@ -255,10 +251,6 @@ static int process_audio_header_elements(AVFormatContext *s) return 1; } -/* - * Process EACS sound header - * return 1 if success, 0 if invalid format, otherwise AVERROR_xxx - */ static int process_audio_header_eacs(AVFormatContext *s) { EaDemuxContext *ea = s->priv_data; @@ -298,10 +290,6 @@ static int process_audio_header_eacs(AVFormatContext *s) return 1; } -/* - * Process SEAD sound header - * return 1 if success, 0 if invalid format, otherwise AVERROR_xxx - */ static int process_audio_header_sead(AVFormatContext *s) { EaDemuxContext *ea = s->priv_data; |