c++ - Questions about the h.264 JM ldecod -
now i'm doing h.264 video decoding jm's ldecod. use ldecod examine syntax of video clip format h.264, and disable function of yuv frame store while doing video decoding.
i have traced source code of ldecod, cannot find related code disable function of store yuv frame.
could give me ideas?
thanks lot !!
i found solution after several experiments. if you'd disable function of output pictures while doing h.264 decoding, should trace following functions , step step:
exit_picture() -> store_picture_in_dpb() -> output_one_frame_from_dbp -> write_stored_frame()
then can close function of write_stored_frame disable frame output.