You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-04 22:03:09 +02:00
avcodec/rv10: Make logmessage endian-independent
Also fix a potential effective-type violation. Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
This commit is contained in:
@ -394,7 +394,7 @@ static av_cold int rv10_decode_init(AVCodecContext *avctx)
|
|||||||
|
|
||||||
if (avctx->debug & FF_DEBUG_PICT_INFO) {
|
if (avctx->debug & FF_DEBUG_PICT_INFO) {
|
||||||
av_log(avctx, AV_LOG_DEBUG, "ver:%X ver0:%"PRIX32"\n", rv->sub_id,
|
av_log(avctx, AV_LOG_DEBUG, "ver:%X ver0:%"PRIX32"\n", rv->sub_id,
|
||||||
((uint32_t *) avctx->extradata)[0]);
|
AV_RL32A(avctx->extradata));
|
||||||
}
|
}
|
||||||
|
|
||||||
/* init static VLCs */
|
/* init static VLCs */
|
||||||
|
Reference in New Issue
Block a user