| 173 | } |
| 174 | |
| 175 | static int extract_packet_props(AVCodecInternal *avci, const AVPacket *pkt) |
| 176 | { |
| 177 | int ret = 0; |
| 178 | |
| 179 | av_packet_unref(avci->last_pkt_props); |
| 180 | if (pkt) { |
| 181 | ret = av_packet_copy_props(avci->last_pkt_props, pkt); |
| 182 | } |
| 183 | return ret; |
| 184 | } |
| 185 | |
| 186 | static int decode_bsfs_init(AVCodecContext *avctx) |
| 187 | { |
no test coverage detected