libavformat/bink.c
2e375df5
 /*
  * Bink demuxer
  * Copyright (c) 2008-2010 Peter Ross (pross@xvid.org)
  * Copyright (c) 2009 Daniel Verkamp (daniel@drv.nu)
  *
  * This file is part of FFmpeg.
  *
  * FFmpeg is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
  * License as published by the Free Software Foundation; either
  * version 2.1 of the License, or (at your option) any later version.
  *
  * FFmpeg is distributed in the hope that it will be useful,
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  * Lesser General Public License for more details.
  *
  * You should have received a copy of the GNU Lesser General Public
  * License along with FFmpeg; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  */
 
 /**
ba87f080
  * @file
2e375df5
  * Bink demuxer
  *
  * Technical details here:
  *  http://wiki.multimedia.cx/index.php?title=Bink_Container
  */
 
 #include "libavutil/intreadwrite.h"
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
2e375df5
 
 enum BinkAudFlags {
     BINK_AUD_16BITS = 0x4000, ///< prefer 16-bit output
     BINK_AUD_STEREO = 0x2000,
     BINK_AUD_USEDCT = 0x1000,
 };
 
 #define BINK_EXTRADATA_SIZE     1
 #define BINK_MAX_AUDIO_TRACKS   256
 #define BINK_MAX_WIDTH          7680
 #define BINK_MAX_HEIGHT         4800
 
 typedef struct {
     uint32_t file_size;
 
     uint32_t num_audio_tracks;
     int current_track;      ///< audio track to return in next packet
     int64_t video_pts;
     int64_t audio_pts[BINK_MAX_AUDIO_TRACKS];
 
     uint32_t remain_packet_size;
 } BinkDemuxContext;
 
 static int probe(AVProbeData *p)
 {
     const uint8_t *b = p->buf;
 
     if ( b[0] == 'B' && b[1] == 'I' && b[2] == 'K' &&
         (b[3] == 'b' || b[3] == 'f' || b[3] == 'g' || b[3] == 'h' || b[3] == 'i') &&
         AV_RL32(b+8) > 0 &&  // num_frames
         AV_RL32(b+20) > 0 && AV_RL32(b+20) <= BINK_MAX_WIDTH &&
         AV_RL32(b+24) > 0 && AV_RL32(b+24) <= BINK_MAX_HEIGHT &&
         AV_RL32(b+28) > 0 && AV_RL32(b+32) > 0)  // fps num,den
         return AVPROBE_SCORE_MAX;
     return 0;
 }
 
 static int read_header(AVFormatContext *s, AVFormatParameters *ap)
 {
     BinkDemuxContext *bink = s->priv_data;
ae628ec1
     AVIOContext *pb = s->pb;
2e375df5
     uint32_t fps_num, fps_den;
     AVStream *vst, *ast;
     unsigned int i;
7e276c85
     uint32_t pos, next_pos;
2e375df5
     uint16_t flags;
     int keyframe;
 
3b3bbdd3
     vst = avformat_new_stream(s, NULL);
2e375df5
     if (!vst)
         return AVERROR(ENOMEM);
 
b7effd4e
     vst->codec->codec_tag = avio_rl32(pb);
2e375df5
 
b7effd4e
     bink->file_size = avio_rl32(pb) + 8;
     vst->duration   = avio_rl32(pb);
2e375df5
 
02cd6f54
     if (vst->duration > 1000000) {
2e375df5
         av_log(s, AV_LOG_ERROR, "invalid header: more than 1000000 frames\n");
         return AVERROR(EIO);
     }
 
b7effd4e
     if (avio_rl32(pb) > bink->file_size) {
2e375df5
         av_log(s, AV_LOG_ERROR,
                "invalid header: largest frame size greater than file size\n");
         return AVERROR(EIO);
     }
 
45a8a02a
     avio_skip(pb, 4);
2e375df5
 
b7effd4e
     vst->codec->width  = avio_rl32(pb);
     vst->codec->height = avio_rl32(pb);
2e375df5
 
b7effd4e
     fps_num = avio_rl32(pb);
     fps_den = avio_rl32(pb);
2e375df5
     if (fps_num == 0 || fps_den == 0) {
         av_log(s, AV_LOG_ERROR, "invalid header: invalid fps (%d/%d)\n", fps_num, fps_den);
         return AVERROR(EIO);
     }
c3f9ebf7
     avpriv_set_pts_info(vst, 64, fps_den, fps_num);
2e375df5
 
72415b2a
     vst->codec->codec_type = AVMEDIA_TYPE_VIDEO;
971c55f1
     vst->codec->codec_id   = CODEC_ID_BINKVIDEO;
a45972a8
     vst->codec->extradata  = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE);
     vst->codec->extradata_size = 4;
b7effd4e
     avio_read(pb, vst->codec->extradata, 4);
a45972a8
 
b7effd4e
     bink->num_audio_tracks = avio_rl32(pb);
2e375df5
 
     if (bink->num_audio_tracks > BINK_MAX_AUDIO_TRACKS) {
         av_log(s, AV_LOG_ERROR,
                "invalid header: more than "AV_STRINGIFY(BINK_MAX_AUDIO_TRACKS)" audio tracks (%d)\n",
                bink->num_audio_tracks);
         return AVERROR(EIO);
     }
 
     if (bink->num_audio_tracks) {
45a8a02a
         avio_skip(pb, 4 * bink->num_audio_tracks);
2e375df5
 
         for (i = 0; i < bink->num_audio_tracks; i++) {
84ad31ff
             ast = avformat_new_stream(s, NULL);
2e375df5
             if (!ast)
                 return AVERROR(ENOMEM);
72415b2a
             ast->codec->codec_type  = AVMEDIA_TYPE_AUDIO;
df64da3b
             ast->codec->codec_tag   = 0;
b7effd4e
             ast->codec->sample_rate = avio_rl16(pb);
c3f9ebf7
             avpriv_set_pts_info(ast, 64, 1, ast->codec->sample_rate);
b7effd4e
             flags = avio_rl16(pb);
2e375df5
             ast->codec->codec_id = flags & BINK_AUD_USEDCT ?
                                    CODEC_ID_BINKAUDIO_DCT : CODEC_ID_BINKAUDIO_RDFT;
             ast->codec->channels = flags & BINK_AUD_STEREO ? 2 : 1;
df64da3b
             ast->codec->extradata = av_mallocz(4 + FF_INPUT_BUFFER_PADDING_SIZE);
             if (!ast->codec->extradata)
                 return AVERROR(ENOMEM);
             ast->codec->extradata_size = 4;
             AV_WL32(ast->codec->extradata, vst->codec->codec_tag);
2e375df5
         }
 
588a3ffd
         for (i = 0; i < bink->num_audio_tracks; i++)
             s->streams[i + 1]->id = avio_rl32(pb);
2e375df5
     }
 
     /* frame index table */
b7effd4e
     next_pos = avio_rl32(pb);
02cd6f54
     for (i = 0; i < vst->duration; i++) {
7e276c85
         pos = next_pos;
02cd6f54
         if (i == vst->duration - 1) {
7e276c85
             next_pos = bink->file_size;
2e375df5
             keyframe = 0;
         } else {
b7effd4e
             next_pos = avio_rl32(pb);
2e375df5
             keyframe = pos & 1;
         }
7e276c85
         pos &= ~1;
         next_pos &= ~1;
 
         if (next_pos <= pos) {
2e375df5
             av_log(s, AV_LOG_ERROR, "invalid frame index table\n");
             return AVERROR(EIO);
         }
7e276c85
         av_add_index_entry(vst, pos, i, next_pos - pos, 0,
2e375df5
                            keyframe ? AVINDEX_KEYFRAME : 0);
     }
 
45a8a02a
     avio_skip(pb, 4);
2e375df5
 
     bink->current_track = -1;
     return 0;
 }
 
 static int read_packet(AVFormatContext *s, AVPacket *pkt)
 {
     BinkDemuxContext *bink = s->priv_data;
ae628ec1
     AVIOContext *pb = s->pb;
2e375df5
     int ret;
 
     if (bink->current_track < 0) {
         int index_entry;
         AVStream *st = s->streams[0]; // stream 0 is video stream with index
 
02cd6f54
         if (bink->video_pts >= st->duration)
2e375df5
             return AVERROR(EIO);
 
         index_entry = av_index_search_timestamp(st, bink->video_pts,
                                                 AVSEEK_FLAG_ANY);
         if (index_entry < 0) {
             av_log(s, AV_LOG_ERROR,
                    "could not find index entry for frame %"PRId64"\n",
                    bink->video_pts);
             return AVERROR(EIO);
         }
 
         bink->remain_packet_size = st->index_entries[index_entry].size;
         bink->current_track = 0;
     }
 
8cdfa474
     while (bink->current_track < bink->num_audio_tracks) {
b7effd4e
         uint32_t audio_size = avio_rl32(pb);
2e375df5
         if (audio_size > bink->remain_packet_size - 4) {
             av_log(s, AV_LOG_ERROR,
                    "frame %"PRId64": audio size in header (%u) > size of packet left (%u)\n",
                    bink->video_pts, audio_size, bink->remain_packet_size);
             return AVERROR(EIO);
         }
         bink->remain_packet_size -= 4 + audio_size;
         bink->current_track++;
4ffa6e78
         if (audio_size >= 4) {
2e375df5
             /* get one audio packet per track */
70b462cc
             if ((ret = av_get_packet(pb, pkt, audio_size)) < 0)
                 return ret;
2e375df5
             pkt->stream_index = bink->current_track;
b62c65f2
             pkt->pts = bink->audio_pts[bink->current_track - 1];
a2799801
 
             /* Each audio packet reports the number of decompressed samples
                (in bytes). We use this value to calcuate the audio PTS */
70b462cc
             if (pkt->size >= 4)
                 bink->audio_pts[bink->current_track -1] +=
                     AV_RL32(pkt->data) / (2 * s->streams[bink->current_track]->codec->channels);
2e375df5
             return 0;
4ffa6e78
         } else {
45a8a02a
             avio_skip(pb, audio_size);
2e375df5
         }
     }
 
     /* get video packet */
70b462cc
     if ((ret = av_get_packet(pb, pkt, bink->remain_packet_size)) < 0)
         return ret;
2e375df5
     pkt->stream_index = 0;
     pkt->pts = bink->video_pts++;
cc947f04
     pkt->flags |= AV_PKT_FLAG_KEY;
2e375df5
 
     /* -1 instructs the next call to read_packet() to read the next frame */
     bink->current_track = -1;
 
     return 0;
 }
 
dd80be5b
 static int read_seek(AVFormatContext *s, int stream_index, int64_t timestamp, int flags)
 {
     BinkDemuxContext *bink = s->priv_data;
     AVStream *vst = s->streams[0];
 
8978feda
     if (!s->pb->seekable)
a2799801
         return -1;
 
dd80be5b
     /* seek to the first frame */
598cc84f
     if (avio_seek(s->pb, vst->index_entries[0].pos, SEEK_SET) < 0)
         return -1;
 
dd80be5b
     bink->video_pts = 0;
     memset(bink->audio_pts, 0, sizeof(bink->audio_pts));
     bink->current_track = -1;
     return 0;
 }
 
c6610a21
 AVInputFormat ff_bink_demuxer = {
dfc2c4d9
     .name           = "bink",
     .long_name      = NULL_IF_CONFIG_SMALL("Bink"),
     .priv_data_size = sizeof(BinkDemuxContext),
     .read_probe     = probe,
     .read_header    = read_header,
     .read_packet    = read_packet,
     .read_seek      = read_seek,
2e375df5
 };