libavformat/bfi.c
b64c096b
 /*
  * Brute Force & Ignorance (BFI) demuxer
  * Copyright (c) 2008 Sisir Koppaka
  *
  * 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
b64c096b
  * @brief Brute Force & Ignorance (.bfi) file demuxer
  * @author Sisir Koppaka ( sisir.koppaka at gmail dot com )
bee6d2fd
  * @see http://wiki.multimedia.cx/index.php?title=BFI
b64c096b
  */
 
ff50d27a
 #include "libavutil/channel_layout.h"
6a5d31ac
 #include "libavutil/intreadwrite.h"
b64c096b
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
b64c096b
 
 typedef struct BFIContext {
     int nframes;
     int audio_frame;
     int video_frame;
     int video_size;
     int avflag;
 } BFIContext;
 
 static int bfi_probe(AVProbeData * p)
 {
     /* Check file header */
     if (AV_RL32(p->buf) == MKTAG('B', 'F', '&', 'I'))
         return AVPROBE_SCORE_MAX;
     else
         return 0;
 }
 
6e9651d1
 static int bfi_read_header(AVFormatContext * s)
b64c096b
 {
     BFIContext *bfi = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
b64c096b
     AVStream *vstream;
     AVStream *astream;
     int fps, chunk_header;
 
     /* Initialize the video codec... */
3b3bbdd3
     vstream = avformat_new_stream(s, NULL);
b64c096b
     if (!vstream)
         return AVERROR(ENOMEM);
 
     /* Initialize the audio codec... */
3b3bbdd3
     astream = avformat_new_stream(s, NULL);
b64c096b
     if (!astream)
         return AVERROR(ENOMEM);
 
     /* Set the total number of frames. */
45a8a02a
     avio_skip(pb, 8);
e63a3628
     chunk_header           = avio_rl32(pb);
     bfi->nframes           = avio_rl32(pb);
     avio_rl32(pb);
     avio_rl32(pb);
     avio_rl32(pb);
     fps                    = avio_rl32(pb);
45a8a02a
     avio_skip(pb, 12);
e63a3628
     vstream->codec->width  = avio_rl32(pb);
     vstream->codec->height = avio_rl32(pb);
b64c096b
 
     /*Load the palette to extradata */
45a8a02a
     avio_skip(pb, 8);
b64c096b
     vstream->codec->extradata      = av_malloc(768);
51f1bf33
     if (!vstream->codec->extradata)
         return AVERROR(ENOMEM);
b64c096b
     vstream->codec->extradata_size = 768;
e63a3628
     avio_read(pb, vstream->codec->extradata,
b64c096b
                vstream->codec->extradata_size);
 
e63a3628
     astream->codec->sample_rate = avio_rl32(pb);
b64c096b
 
     /* Set up the video codec... */
c3f9ebf7
     avpriv_set_pts_info(vstream, 32, 1, fps);
72415b2a
     vstream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
36ef5369
     vstream->codec->codec_id   = AV_CODEC_ID_BFI;
716d413c
     vstream->codec->pix_fmt    = AV_PIX_FMT_PAL8;
cb8163d0
     vstream->nb_frames         =
     vstream->duration          = bfi->nframes;
b64c096b
 
     /* Set up the audio codec now... */
72415b2a
     astream->codec->codec_type      = AVMEDIA_TYPE_AUDIO;
36ef5369
     astream->codec->codec_id        = AV_CODEC_ID_PCM_U8;
b64c096b
     astream->codec->channels        = 1;
ff50d27a
     astream->codec->channel_layout  = AV_CH_LAYOUT_MONO;
dd1c8f3e
     astream->codec->bits_per_coded_sample = 8;
b64c096b
     astream->codec->bit_rate        =
dd1c8f3e
         astream->codec->sample_rate * astream->codec->bits_per_coded_sample;
f59d8ff8
     avio_seek(pb, chunk_header - 3, SEEK_SET);
c3f9ebf7
     avpriv_set_pts_info(astream, 64, 1, astream->codec->sample_rate);
b64c096b
     return 0;
 }
 
 
 static int bfi_read_packet(AVFormatContext * s, AVPacket * pkt)
 {
     BFIContext *bfi = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
b64c096b
     int ret, audio_offset, video_offset, chunk_size, audio_size = 0;
     if (bfi->nframes == 0 || url_feof(pb)) {
425d0888
         return AVERROR_EOF;
b64c096b
     }
 
     /* If all previous chunks were completely read, then find a new one... */
     if (!bfi->avflag) {
         uint32_t state = 0;
         while(state != MKTAG('S','A','V','I')){
             if (url_feof(pb))
                 return AVERROR(EIO);
e63a3628
             state = 256*state + avio_r8(pb);
b64c096b
         }
         /* Now that the chunk's location is confirmed, we proceed... */
e63a3628
         chunk_size      = avio_rl32(pb);
         avio_rl32(pb);
         audio_offset    = avio_rl32(pb);
         avio_rl32(pb);
         video_offset    = avio_rl32(pb);
b64c096b
         audio_size      = video_offset - audio_offset;
         bfi->video_size = chunk_size - video_offset;
640a2427
         if (audio_size < 0 || bfi->video_size < 0) {
             av_log(s, AV_LOG_ERROR, "Invalid audio/video offsets or chunk size\n");
             return AVERROR_INVALIDDATA;
         }
b64c096b
 
         //Tossing an audio packet at the audio decoder.
         ret = av_get_packet(pb, pkt, audio_size);
         if (ret < 0)
             return ret;
 
         pkt->pts          = bfi->audio_frame;
         bfi->audio_frame += ret;
9fc7184d
     } else if (bfi->video_size > 0) {
b64c096b
 
         //Tossing a video packet at the video decoder.
         ret = av_get_packet(pb, pkt, bfi->video_size);
         if (ret < 0)
             return ret;
 
         pkt->pts          = bfi->video_frame;
         bfi->video_frame += ret / bfi->video_size;
 
         /* One less frame to read. A cursory decrement. */
         bfi->nframes--;
9fc7184d
     } else {
         /* Empty video packet */
         ret = AVERROR(EAGAIN);
b64c096b
     }
 
     bfi->avflag       = !bfi->avflag;
     pkt->stream_index = bfi->avflag;
     return ret;
 }
 
66355be3
 AVInputFormat ff_bfi_demuxer = {
dfc2c4d9
     .name           = "bfi",
     .long_name      = NULL_IF_CONFIG_SMALL("Brute Force & Ignorance"),
     .priv_data_size = sizeof(BFIContext),
     .read_probe     = bfi_probe,
     .read_header    = bfi_read_header,
     .read_packet    = bfi_read_packet,
b64c096b
 };