libavformat/a64.c
901694f1
 /*
  * a64 muxer
  * Copyright (c) 2009 Tobias Bindhammer
  *
  * 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
  */
 
 #include "libavcodec/avcodec.h"
 #include "libavcodec/bytestream.h"
 #include "avformat.h"
f70381ab
 #include "rawenc.h"
9e906bb1
 
b1365649
 static int a64_write_header(AVFormatContext *s)
901694f1
 {
9200514a
     AVCodecParameters *par = s->streams[0]->codecpar;
901694f1
     uint8_t header[5] = {
         0x00, //load
         0x40, //address
         0x00, //mode
         0x00, //charset_lifetime (multi only)
         0x00  //fps in 50/fps;
     };
3ef6c526
 
9200514a
     if (par->extradata_size < 4) {
3ef6c526
         av_log(s, AV_LOG_ERROR, "Missing extradata\n");
0528226a
         return AVERROR_INVALIDDATA;
3ef6c526
     }
 
9200514a
     switch (par->codec_id) {
36ef5369
     case AV_CODEC_ID_A64_MULTI:
901694f1
         header[2] = 0x00;
9200514a
         header[3] = AV_RB32(par->extradata+0);
901694f1
         header[4] = 2;
         break;
36ef5369
     case AV_CODEC_ID_A64_MULTI5:
901694f1
         header[2] = 0x01;
9200514a
         header[3] = AV_RB32(par->extradata+0);
901694f1
         header[4] = 3;
         break;
     default:
0528226a
         return AVERROR_INVALIDDATA;
901694f1
     }
77eb5504
     avio_write(s->pb, header, 2);
9e906bb1
     return 0;
 }
 
c6610a21
 AVOutputFormat ff_a64_muxer = {
20234a4b
     .name           = "a64",
     .long_name      = NULL_IF_CONFIG_SMALL("a64 - video for Commodore 64"),
     .extensions     = "a64, A64",
36ef5369
     .video_codec    = AV_CODEC_ID_A64_MULTI,
20234a4b
     .write_header   = a64_write_header,
f70381ab
     .write_packet   = ff_raw_write_packet,
901694f1
 };