]> git.sesse.net Git - ffmpeg/blobdiff - libavcodec/asv1.c
VP3: Do not ignore error from read_huffman_tree().
[ffmpeg] / libavcodec / asv1.c
index 7e8699bcc75c5c9c0ece67a07c1b66e6fb39218e..7626873133178dea26e1ad738178646bcc9f6a2e 100644 (file)
@@ -20,7 +20,7 @@
  */
 
 /**
- * @file asv1.c
+ * @file libavcodec/asv1.c
  * ASUS V1/V2 codec.
  */
 
@@ -584,7 +584,7 @@ static av_cold int encode_init(AVCodecContext *avctx){
     avctx->extradata= av_mallocz(8);
     avctx->extradata_size=8;
     ((uint32_t*)avctx->extradata)[0]= le2me_32(a->inv_qscale);
-    ((uint32_t*)avctx->extradata)[1]= le2me_32(ff_get_fourcc("ASUS"));
+    ((uint32_t*)avctx->extradata)[1]= le2me_32(AV_RL32("ASUS"));
 
     for(i=0; i<64; i++){
         int q= 32*scale*ff_mpeg1_default_intra_matrix[i];