summaryrefslogtreecommitdiff
path: root/libavformat/a64.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2012-08-05 11:11:04 +0200
committerAnton Khirnov <anton@khirnov.net>2012-08-07 16:00:24 +0200
commit36ef5369ee9b336febc2c270f8718cec4476cb85 (patch)
treed186adbb488e7f002aa894743b1ce0e8925520e6 /libavformat/a64.c
parent104e10fb426f903ba9157fdbfe30292d0e4c3d72 (diff)
Replace all CODEC_ID_* with AV_CODEC_ID_*
Diffstat (limited to 'libavformat/a64.c')
-rw-r--r--libavformat/a64.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/libavformat/a64.c b/libavformat/a64.c
index 8748b3e8ab..56b9a446db 100644
--- a/libavformat/a64.c
+++ b/libavformat/a64.c
@@ -43,12 +43,12 @@ static int a64_write_header(struct AVFormatContext *s)
};
c->interleaved = 0;
switch (avctx->codec->id) {
- case CODEC_ID_A64_MULTI:
+ case AV_CODEC_ID_A64_MULTI:
header[2] = 0x00;
header[3] = AV_RB32(avctx->extradata+0);
header[4] = 2;
break;
- case CODEC_ID_A64_MULTI5:
+ case AV_CODEC_ID_A64_MULTI5:
header[2] = 0x01;
header[3] = AV_RB32(avctx->extradata+0);
header[4] = 3;
@@ -76,8 +76,8 @@ static int a64_write_packet(struct AVFormatContext *s, AVPacket *pkt)
/* fetch values from extradata */
switch (avctx->codec->id) {
- case CODEC_ID_A64_MULTI:
- case CODEC_ID_A64_MULTI5:
+ case AV_CODEC_ID_A64_MULTI:
+ case AV_CODEC_ID_A64_MULTI5:
if(c->interleaved) {
/* Write interleaved, means we insert chunks of the future charset before each current frame.
* Reason: if we load 1 charset + corresponding frames in one block on c64, we need to store
@@ -168,7 +168,7 @@ AVOutputFormat ff_a64_muxer = {
.long_name = NULL_IF_CONFIG_SMALL("a64 - video for Commodore 64"),
.extensions = "a64, A64",
.priv_data_size = sizeof (A64Context),
- .video_codec = CODEC_ID_A64_MULTI,
+ .video_codec = AV_CODEC_ID_A64_MULTI,
.write_header = a64_write_header,
.write_packet = a64_write_packet,
.write_trailer = a64_write_trailer,