libavformat/bethsoftvid.c
1e6c6759
 /*
  * Bethsoft VID format Demuxer
  * Copyright (c) 2007 Nicholas Tung
  *
  * 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
1e6c6759
  * @brief Bethesda Softworks VID (.vid) file demuxer
  * @author Nicholas Tung [ntung (at. ntung com] (2007-03)
bee6d2fd
  * @see http://wiki.multimedia.cx/index.php?title=Bethsoft_VID
  * @see http://www.svatopluk.com/andux/docs/dfvid.html
1e6c6759
  */
 
6a5d31ac
 #include "libavutil/intreadwrite.h"
1e6c6759
 #include "avformat.h"
c3f9ebf7
 #include "internal.h"
245976da
 #include "libavcodec/bethsoftvideo.h"
1e6c6759
 
 typedef struct BVID_DemuxContext
 {
     int nframes;
     /** delay value between frames, added to individual frame delay.
      * custom units, which will be added to other custom units (~=16ms according
      * to free, unofficial documentation) */
     int bethsoft_global_delay;
 
     /** video presentation time stamp.
      * delay = 16 milliseconds * (global_delay + per_frame_delay) */
90523428
     int video_pts;
1e6c6759
 
     int is_finished;
 
 } BVID_DemuxContext;
 
 static int vid_probe(AVProbeData *p)
 {
     // little endian VID tag, file starts with "VID\0"
87e87886
     if (AV_RL32(p->buf) != MKTAG('V', 'I', 'D', 0))
1e6c6759
         return 0;
 
     return AVPROBE_SCORE_MAX;
 }
 
 static int vid_read_header(AVFormatContext *s,
                             AVFormatParameters *ap)
 {
8bb57775
     BVID_DemuxContext *vid = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
1e6c6759
     AVStream *stream;
 
     /* load main header. Contents:
     *    bytes: 'V' 'I' 'D'
     *    int16s: always_512, nframes, width, height, delay, always_14
     */
45a8a02a
     avio_skip(pb, 5);
e63a3628
     vid->nframes = avio_rl16(pb);
1e6c6759
 
3b3bbdd3
     stream = avformat_new_stream(s, NULL);
d5c5c8b4
     if (!stream)
769e10f0
         return AVERROR(ENOMEM);
c3f9ebf7
     avpriv_set_pts_info(stream, 32, 1, 60);     // 16 ms increments, i.e. 60 fps
72415b2a
     stream->codec->codec_type = AVMEDIA_TYPE_VIDEO;
1e6c6759
     stream->codec->codec_id = CODEC_ID_BETHSOFTVID;
e63a3628
     stream->codec->width = avio_rl16(pb);
     stream->codec->height = avio_rl16(pb);
1e6c6759
     stream->codec->pix_fmt = PIX_FMT_PAL8;
e63a3628
     vid->bethsoft_global_delay = avio_rl16(pb);
     avio_rl16(pb);
1e6c6759
 
     // done with video codec, set up audio codec
3b3bbdd3
     stream = avformat_new_stream(s, NULL);
d5c5c8b4
     if (!stream)
769e10f0
         return AVERROR(ENOMEM);
72415b2a
     stream->codec->codec_type = AVMEDIA_TYPE_AUDIO;
1e6c6759
     stream->codec->codec_id = CODEC_ID_PCM_U8;
     stream->codec->channels = 1;
     stream->codec->sample_rate = 11025;
dd1c8f3e
     stream->codec->bits_per_coded_sample = 8;
     stream->codec->bit_rate = stream->codec->channels * stream->codec->sample_rate * stream->codec->bits_per_coded_sample;
1e6c6759
 
     return 0;
 }
 
 #define BUFFER_PADDING_SIZE 1000
471fe57e
 static int read_frame(BVID_DemuxContext *vid, AVIOContext *pb, AVPacket *pkt,
1e6c6759
                       uint8_t block_type, AVFormatContext *s, int npixels)
 {
     uint8_t * vidbuf_start = NULL;
     int vidbuf_nbytes = 0;
3e62d187
     int code;
1e6c6759
     int bytes_copied = 0;
     int position;
fae3a361
     unsigned int vidbuf_capacity;
1e6c6759
 
     vidbuf_start = av_malloc(vidbuf_capacity = BUFFER_PADDING_SIZE);
d5c5c8b4
     if(!vidbuf_start)
769e10f0
         return AVERROR(ENOMEM);
1e6c6759
 
     // save the file position for the packet, include block type
384c9c2f
     position = avio_tell(pb) - 1;
1e6c6759
 
     vidbuf_start[vidbuf_nbytes++] = block_type;
 
     // get the video delay (next int16), and set the presentation time
e63a3628
     vid->video_pts += vid->bethsoft_global_delay + avio_rl16(pb);
1e6c6759
 
     // set the y offset if it exists (decoder header data should be in data section)
d7cf4489
     if(block_type == VIDEO_YOFF_P_FRAME){
e63a3628
         if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], 2) != 2)
373209f8
             goto fail;
1e6c6759
         vidbuf_nbytes += 2;
     }
 
d5c5c8b4
     do{
1e6c6759
         vidbuf_start = av_fast_realloc(vidbuf_start, &vidbuf_capacity, vidbuf_nbytes + BUFFER_PADDING_SIZE);
d5c5c8b4
         if(!vidbuf_start)
769e10f0
             return AVERROR(ENOMEM);
1e6c6759
 
e63a3628
         code = avio_r8(pb);
3e62d187
         vidbuf_start[vidbuf_nbytes++] = code;
1e6c6759
 
3e62d187
         if(code >= 0x80){ // rle sequence
d7cf4489
             if(block_type == VIDEO_I_FRAME)
e63a3628
                 vidbuf_start[vidbuf_nbytes++] = avio_r8(pb);
3e62d187
         } else if(code){ // plain sequence
e63a3628
             if(avio_read(pb, &vidbuf_start[vidbuf_nbytes], code) != code)
373209f8
                 goto fail;
3e62d187
             vidbuf_nbytes += code;
1e6c6759
         }
3e62d187
         bytes_copied += code & 0x7F;
d5c5c8b4
         if(bytes_copied == npixels){ // sometimes no stop character is given, need to keep track of bytes copied
1e6c6759
             // may contain a 0 byte even if read all pixels
e63a3628
             if(avio_r8(pb))
f59d8ff8
                 avio_seek(pb, -1, SEEK_CUR);
1e6c6759
             break;
         }
d5c5c8b4
         if(bytes_copied > npixels)
373209f8
             goto fail;
3e62d187
     } while(code);
1e6c6759
 
     // copy data into packet
373209f8
     if(av_new_packet(pkt, vidbuf_nbytes) < 0)
         goto fail;
1e6c6759
     memcpy(pkt->data, vidbuf_start, vidbuf_nbytes);
     av_free(vidbuf_start);
 
     pkt->pos = position;
     pkt->stream_index = 0;  // use the video decoder, which was initialized as the first stream
     pkt->pts = vid->video_pts;
 
     vid->nframes--;  // used to check if all the frames were read
     return vidbuf_nbytes;
373209f8
 fail:
     av_free(vidbuf_start);
     return -1;
1e6c6759
 }
 
 static int vid_read_packet(AVFormatContext *s,
                            AVPacket *pkt)
 {
8bb57775
     BVID_DemuxContext *vid = s->priv_data;
471fe57e
     AVIOContext *pb = s->pb;
8bb57775
     unsigned char block_type;
1e6c6759
     int audio_length;
     int ret_value;
 
d5c5c8b4
     if(vid->is_finished || url_feof(pb))
6f3e0b21
         return AVERROR(EIO);
1e6c6759
 
e63a3628
     block_type = avio_r8(pb);
d5c5c8b4
     switch(block_type){
1e6c6759
         case PALETTE_BLOCK:
f59d8ff8
             avio_seek(pb, -1, SEEK_CUR);     // include block type
d7cf4489
             ret_value = av_get_packet(pb, pkt, 3 * 256 + 1);
             if(ret_value != 3 * 256 + 1){
d5c5c8b4
                 av_free_packet(pkt);
6f3e0b21
                 return AVERROR(EIO);
d5c5c8b4
             }
1e6c6759
             pkt->stream_index = 0;
             return ret_value;
 
         case FIRST_AUDIO_BLOCK:
e63a3628
             avio_rl16(pb);
1e6c6759
             // soundblaster DAC used for sample rate, as on specification page (link above)
e63a3628
             s->streams[1]->codec->sample_rate = 1000000 / (256 - avio_r8(pb));
dd1c8f3e
             s->streams[1]->codec->bit_rate = s->streams[1]->codec->channels * s->streams[1]->codec->sample_rate * s->streams[1]->codec->bits_per_coded_sample;
1e6c6759
         case AUDIO_BLOCK:
e63a3628
             audio_length = avio_rl16(pb);
1e6c6759
             ret_value = av_get_packet(pb, pkt, audio_length);
             pkt->stream_index = 1;
ccd425e7
             return ret_value != audio_length ? AVERROR(EIO) : ret_value;
1e6c6759
 
d7cf4489
         case VIDEO_P_FRAME:
         case VIDEO_YOFF_P_FRAME:
         case VIDEO_I_FRAME:
1e6c6759
             return read_frame(vid, pb, pkt, block_type, s,
                               s->streams[0]->codec->width * s->streams[0]->codec->height);
 
d7cf4489
         case EOF_BLOCK:
1e6c6759
             if(vid->nframes != 0)
                 av_log(s, AV_LOG_VERBOSE, "reached terminating character but not all frames read.\n");
             vid->is_finished = 1;
6f3e0b21
             return AVERROR(EIO);
1e6c6759
         default:
             av_log(s, AV_LOG_ERROR, "unknown block (character = %c, decimal = %d, hex = %x)!!!\n",
                    block_type, block_type, block_type); return -1;
     }
 }
 
66355be3
 AVInputFormat ff_bethsoftvid_demuxer = {
dfc2c4d9
     .name           = "bethsoftvid",
     .long_name      = NULL_IF_CONFIG_SMALL("Bethesda Softworks VID format"),
     .priv_data_size = sizeof(BVID_DemuxContext),
     .read_probe     = vid_probe,
     .read_header    = vid_read_header,
     .read_packet    = vid_read_packet,
1e6c6759
 };